diff --git a/eng/mgmt/mgmtmetadata/eventhub_resource-manager.txt b/eng/mgmt/mgmtmetadata/eventhub_resource-manager.txt index 43a46e1fe8bd..9ee2ee2f859b 100644 --- a/eng/mgmt/mgmtmetadata/eventhub_resource-manager.txt +++ b/eng/mgmt/mgmtmetadata/eventhub_resource-manager.txt @@ -3,12 +3,13 @@ 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/main/specification/eventhub/resource-manager/readme.md --csharp --version=v2 --reflect-api-versions --csharp-sdks-folder=D:\autorest2021\azure-sdk-for-net\sdk -2021-09-27 02:59:58 UTC +cmd.exe /c autorest.cmd https://github.com/Azure/azure-rest-api-specs/blob/main/specification/eventhub/resource-manager/readme.md --csharp --version=v2 --reflect-api-versions --csharp-sdks-folder=C:\SwaggerNetSdk\3\azure-sdk-for-net\sdk +Autorest CSharp Version: 2.3.82 +2021-11-12 17:03:39 UTC Azure-rest-api-specs repository information GitHub fork: Azure Branch: main -Commit: 699c3a00cf4fbfcd0a91beb99c93c77195eff804 +Commit: 9e8a591da83285d863866ecd2f6fe87a72758a7d AutoRest information Requested version: v2 -Bootstrapper version: autorest@1.9.1 +Bootstrapper version: autorest@3.4.2 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 f71252e19982..05205bdb03c3 100644 --- a/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/DisasterRecoveryConfigsOperations.cs +++ b/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/DisasterRecoveryConfigsOperations.cs @@ -916,7 +916,7 @@ internal DisasterRecoveryConfigsOperations(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 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 5506aee05c6f..7511c04b787e 100644 --- a/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/EventHubManagementClient.cs +++ b/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/EventHubManagementClient.cs @@ -118,6 +118,11 @@ public partial class EventHubManagementClient : ServiceClient public virtual IConsumerGroupsOperations ConsumerGroups { get; private set; } + /// + /// Gets the ISchemaRegistryOperations. + /// + public virtual ISchemaRegistryOperations SchemaRegistry { get; private set; } + /// /// Initializes a new instance of the EventHubManagementClient class. /// @@ -368,8 +373,9 @@ private void Initialize() EventHubs = new EventHubsOperations(this); DisasterRecoveryConfigs = new DisasterRecoveryConfigsOperations(this); ConsumerGroups = new ConsumerGroupsOperations(this); + SchemaRegistry = new SchemaRegistryOperations(this); BaseUri = new System.Uri("https://management.azure.com"); - ApiVersion = "2021-06-01-preview"; + ApiVersion = "2021-11-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 28ef5f2178fa..86f07dd1a129 100644 --- a/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/EventHubsOperations.cs +++ b/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/EventHubsOperations.cs @@ -2268,7 +2268,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, KeyType keyType, string key = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> RegenerateKeysWithHttpMessagesAsync(string resourceGroupName, string namespaceName, string eventHubName, string authorizationRuleName, string keyType, string key = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { @@ -2334,8 +2334,12 @@ internal EventHubsOperations(EventHubManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } + if (keyType == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "keyType"); + } RegenerateAccessKeyParameters parameters = new RegenerateAccessKeyParameters(); - if (key != null) + if (keyType != null || key != null) { parameters.KeyType = keyType; parameters.Key = key; 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 a86a2b63f0bb..8a5220042011 100644 --- a/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/EventHubsOperationsExtensions.cs +++ b/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/EventHubsOperationsExtensions.cs @@ -511,7 +511,7 @@ public static AccessKeys ListKeys(this IEventHubsOperations operations, string r /// Optional, if the key value provided, is set for KeyType or autogenerated /// Key value set for keyType /// - public static AccessKeys RegenerateKeys(this IEventHubsOperations operations, string resourceGroupName, string namespaceName, string eventHubName, string authorizationRuleName, KeyType keyType, string key = default(string)) + public static AccessKeys RegenerateKeys(this IEventHubsOperations operations, string resourceGroupName, string namespaceName, string eventHubName, string authorizationRuleName, string keyType, string key = default(string)) { return operations.RegenerateKeysAsync(resourceGroupName, namespaceName, eventHubName, authorizationRuleName, keyType, key).GetAwaiter().GetResult(); } @@ -545,7 +545,7 @@ public static AccessKeys ListKeys(this IEventHubsOperations operations, string r /// /// The cancellation token. /// - public static async Task RegenerateKeysAsync(this IEventHubsOperations operations, string resourceGroupName, string namespaceName, string eventHubName, string authorizationRuleName, KeyType keyType, string key = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task RegenerateKeysAsync(this IEventHubsOperations operations, string resourceGroupName, string namespaceName, string eventHubName, string authorizationRuleName, string keyType, string key = default(string), CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.RegenerateKeysWithHttpMessagesAsync(resourceGroupName, namespaceName, eventHubName, authorizationRuleName, keyType, key, null, cancellationToken).ConfigureAwait(false)) { 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 5591666cdbbb..737b5a0a5f36 100644 --- a/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/IEventHubManagementClient.cs +++ b/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/IEventHubManagementClient.cs @@ -115,5 +115,10 @@ public partial interface IEventHubManagementClient : System.IDisposable /// IConsumerGroupsOperations ConsumerGroups { get; } + /// + /// Gets the ISchemaRegistryOperations. + /// + ISchemaRegistryOperations SchemaRegistry { get; } + } } 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 27cb6f3ba3b0..4c809aff7520 100644 --- a/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/IEventHubsOperations.cs +++ b/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/IEventHubsOperations.cs @@ -336,7 +336,7 @@ public partial interface IEventHubsOperations /// /// Thrown when a required parameter is null /// - Task> RegenerateKeysWithHttpMessagesAsync(string resourceGroupName, string namespaceName, string eventHubName, string authorizationRuleName, KeyType keyType, string key = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> RegenerateKeysWithHttpMessagesAsync(string resourceGroupName, string namespaceName, string eventHubName, string authorizationRuleName, string keyType, string key = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Gets all the Event Hubs in a Namespace. /// 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 07c10387cb01..e5cd2d2d445a 100644 --- a/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/INamespacesOperations.cs +++ b/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/INamespacesOperations.cs @@ -225,6 +225,31 @@ public partial interface INamespacesOperations /// Task> GetNetworkRuleSetWithHttpMessagesAsync(string resourceGroupName, string namespaceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// + /// Gets NetworkRuleSet 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> ListNetworkRuleSetWithHttpMessagesAsync(string resourceGroupName, string namespaceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Gets a list of authorization rules for a Namespace. /// /// @@ -398,7 +423,7 @@ public partial interface INamespacesOperations /// /// Thrown when a required parameter is null /// - Task> RegenerateKeysWithHttpMessagesAsync(string resourceGroupName, string namespaceName, string authorizationRuleName, KeyType keyType, string key = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> RegenerateKeysWithHttpMessagesAsync(string resourceGroupName, string namespaceName, string authorizationRuleName, string keyType, string key = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Check the give Namespace name availability. /// diff --git a/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/ISchemaRegistryOperations.cs b/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/ISchemaRegistryOperations.cs new file mode 100644 index 000000000000..2c0b4884bfd3 --- /dev/null +++ b/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/ISchemaRegistryOperations.cs @@ -0,0 +1,159 @@ +// +// 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; + + /// + /// SchemaRegistryOperations operations. + /// + public partial interface ISchemaRegistryOperations + { + /// + /// Gets all the Schema Groups in a Namespace. + /// + /// + /// Name of the resource group within the azure subscription. + /// + /// + /// 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 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>> ListByNamespaceWithHttpMessagesAsync(string resourceGroupName, string namespaceName, int? skip = default(int?), int? top = default(int?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Name of the resource group within the azure subscription. + /// + /// + /// The Namespace name + /// + /// + /// The Schema Group name + /// + /// + /// Parameters supplied to create an Event Hub 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> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string namespaceName, string schemaGroupName, SchemaGroup parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Name of the resource group within the azure subscription. + /// + /// + /// The Namespace name + /// + /// + /// The Schema Group 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 DeleteWithHttpMessagesAsync(string resourceGroupName, string namespaceName, string schemaGroupName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Name of the resource group within the azure subscription. + /// + /// + /// The Namespace name + /// + /// + /// The Schema Group 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> GetWithHttpMessagesAsync(string resourceGroupName, string namespaceName, string schemaGroupName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Gets all the Schema Groups in 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>> ListByNamespaceNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + } +} 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 d5ebd3bf64e6..69435f47a373 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 @@ -20,7 +20,7 @@ namespace Microsoft.Azure.Management.EventHub.Models /// operation /// [Rest.Serialization.JsonTransformation] - public partial class ArmDisasterRecovery : Resource + public partial class ArmDisasterRecovery : ProxyResource { /// /// Initializes a new instance of the ArmDisasterRecovery class. @@ -33,9 +33,14 @@ public ArmDisasterRecovery() /// /// Initializes a new instance of the ArmDisasterRecovery class. /// - /// Resource ID. - /// Resource name. - /// Resource type. + /// Fully qualified resource ID for the resource. Ex - + /// /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName} + /// The name of the resource + /// The type of the resource. E.g. + /// "Microsoft.EventHub/Namespaces" or + /// "Microsoft.EventHub/Namespaces/EventHubs" + /// The geo-location where the resource + /// lives /// Provisioning state of the /// Alias(Disaster Recovery configuration) - possible values 'Accepted' /// or 'Succeeded' or 'Failed'. Possible values include: 'Accepted', @@ -52,8 +57,8 @@ public ArmDisasterRecovery() /// pending to be replicated. /// The system meta data relating to this /// resource. - public ArmDisasterRecovery(string id = default(string), string name = default(string), string type = default(string), ProvisioningStateDR? provisioningState = default(ProvisioningStateDR?), string partnerNamespace = default(string), string alternateName = default(string), RoleDisasterRecovery? role = default(RoleDisasterRecovery?), long? pendingReplicationOperationsCount = default(long?), SystemData systemData = default(SystemData)) - : base(id, name, type) + public ArmDisasterRecovery(string id = default(string), string name = default(string), string type = default(string), string location = default(string), ProvisioningStateDR? provisioningState = default(ProvisioningStateDR?), string partnerNamespace = default(string), string alternateName = default(string), RoleDisasterRecovery? role = default(RoleDisasterRecovery?), long? pendingReplicationOperationsCount = default(long?), SystemData systemData = default(SystemData)) + : base(id, name, type, location) { ProvisioningState = provisioningState; PartnerNamespace = partnerNamespace; 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 9ad82a3c1f7c..77de2cf4bbce 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 @@ -21,7 +21,7 @@ namespace Microsoft.Azure.Management.EventHub.Models /// Single item in a List or Get AuthorizationRule operation /// [Rest.Serialization.JsonTransformation] - public partial class AuthorizationRule : Resource + public partial class AuthorizationRule : ProxyResource { /// /// Initializes a new instance of the AuthorizationRule class. @@ -35,13 +35,18 @@ public AuthorizationRule() /// Initializes a new instance of the AuthorizationRule class. /// /// The rights associated with the rule. - /// Resource ID. - /// Resource name. - /// Resource type. + /// Fully qualified resource ID for the resource. Ex - + /// /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName} + /// The name of the resource + /// The type of the resource. E.g. + /// "Microsoft.EventHub/Namespaces" or + /// "Microsoft.EventHub/Namespaces/EventHubs" + /// The geo-location where the resource + /// lives /// The system meta data relating to this /// resource. - public AuthorizationRule(IList rights, string id = default(string), string name = default(string), string type = default(string), SystemData systemData = default(SystemData)) - : base(id, name, type) + public AuthorizationRule(IList rights, string id = default(string), string name = default(string), string type = default(string), string location = default(string), SystemData systemData = default(SystemData)) + : base(id, name, type, location) { Rights = rights; SystemData = systemData; 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 index 4550addcdac0..c5fab4ea0efd 100644 --- a/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/Models/Cluster.cs +++ b/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/Models/Cluster.cs @@ -34,9 +34,12 @@ public Cluster() /// /// Initializes a new instance of the Cluster class. /// - /// Resource ID. - /// Resource name. - /// Resource type. + /// Fully qualified resource ID for the resource. Ex - + /// /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName} + /// The name of the resource + /// The type of the resource. E.g. + /// "Microsoft.Compute/virtualMachines" or + /// "Microsoft.Storage/storageAccounts" /// Resource location. /// Resource tags. /// Properties of the cluster SKU. 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 27682f5a7276..aa79bc8fb060 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 @@ -19,7 +19,7 @@ namespace Microsoft.Azure.Management.EventHub.Models /// Single item in List or Get Consumer group operation /// [Rest.Serialization.JsonTransformation] - public partial class ConsumerGroup : Resource + public partial class ConsumerGroup : ProxyResource { /// /// Initializes a new instance of the ConsumerGroup class. @@ -32,9 +32,14 @@ public ConsumerGroup() /// /// Initializes a new instance of the ConsumerGroup class. /// - /// Resource ID. - /// Resource name. - /// Resource type. + /// Fully qualified resource ID for the resource. Ex - + /// /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName} + /// The name of the resource + /// The type of the resource. E.g. + /// "Microsoft.EventHub/Namespaces" or + /// "Microsoft.EventHub/Namespaces/EventHubs" + /// The geo-location where the resource + /// lives /// Exact time the message was created. /// The exact time the message was /// updated. @@ -45,8 +50,8 @@ public ConsumerGroup() /// stored. /// The system meta data relating to this /// resource. - public ConsumerGroup(string id = default(string), string name = default(string), string type = default(string), System.DateTime? createdAt = default(System.DateTime?), System.DateTime? updatedAt = default(System.DateTime?), string userMetadata = default(string), SystemData systemData = default(SystemData)) - : base(id, name, type) + public ConsumerGroup(string id = default(string), string name = default(string), string type = default(string), string location = default(string), System.DateTime? createdAt = default(System.DateTime?), System.DateTime? updatedAt = default(System.DateTime?), string userMetadata = default(string), SystemData systemData = default(SystemData)) + : base(id, name, type, location) { CreatedAt = createdAt; UpdatedAt = updatedAt; diff --git a/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/Models/Destination.cs b/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/Models/Destination.cs index 2a9909de284e..526e63f7c8b7 100644 --- a/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/Models/Destination.cs +++ b/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/Models/Destination.cs @@ -41,12 +41,21 @@ public Destination() /// {Namespace}/{EventHub}/{PartitionId}/{Year}/{Month}/{Day}/{Hour}/{Minute}/{Second}. /// Here all the parameters (Namespace,EventHub .. etc) are mandatory /// irrespective of order - public Destination(string name = default(string), string storageAccountResourceId = default(string), string blobContainer = default(string), string archiveNameFormat = default(string)) + /// Subscription Id of Azure Data + /// Lake Store + /// The Azure Data Lake Store name + /// for the captured events + /// The destination folder path for + /// the captured events + public Destination(string name = default(string), string storageAccountResourceId = default(string), string blobContainer = default(string), string archiveNameFormat = default(string), System.Guid? dataLakeSubscriptionId = default(System.Guid?), string dataLakeAccountName = default(string), string dataLakeFolderPath = default(string)) { Name = name; StorageAccountResourceId = storageAccountResourceId; BlobContainer = blobContainer; ArchiveNameFormat = archiveNameFormat; + DataLakeSubscriptionId = dataLakeSubscriptionId; + DataLakeAccountName = dataLakeAccountName; + DataLakeFolderPath = dataLakeFolderPath; CustomInit(); } @@ -83,5 +92,23 @@ public Destination() [JsonProperty(PropertyName = "properties.archiveNameFormat")] public string ArchiveNameFormat { get; set; } + /// + /// Gets or sets subscription Id of Azure Data Lake Store + /// + [JsonProperty(PropertyName = "properties.dataLakeSubscriptionId")] + public System.Guid? DataLakeSubscriptionId { get; set; } + + /// + /// Gets or sets the Azure Data Lake Store name for the captured events + /// + [JsonProperty(PropertyName = "properties.dataLakeAccountName")] + public string DataLakeAccountName { get; set; } + + /// + /// Gets or sets the destination folder path for the captured events + /// + [JsonProperty(PropertyName = "properties.dataLakeFolderPath")] + public string DataLakeFolderPath { get; set; } + } } 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 353f4c1a1ba6..6bb6b3f0887a 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,9 +34,12 @@ public EHNamespace() /// /// Initializes a new instance of the EHNamespace class. /// - /// Resource ID. - /// Resource name. - /// Resource type. + /// Fully qualified resource ID for the resource. Ex - + /// /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName} + /// The name of the resource + /// The type of the resource. E.g. + /// "Microsoft.Compute/virtualMachines" or + /// "Microsoft.Storage/storageAccounts" /// Resource location. /// Resource tags. /// Properties of sku resource @@ -70,7 +73,9 @@ public EHNamespace() /// connections. /// This property disables SAS /// authentication for the Event Hubs 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), Identity identity = default(Identity), SystemData systemData = default(SystemData), string provisioningState = default(string), string status = 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), IList privateEndpointConnections = default(IList), bool? disableLocalAuth = default(bool?)) + /// Alternate name specified when alias and + /// namespace names are same. + 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), SystemData systemData = default(SystemData), string provisioningState = default(string), string status = 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), IList privateEndpointConnections = default(IList), bool? disableLocalAuth = default(bool?), string alternateName = default(string)) : base(id, name, type, location, tags) { Sku = sku; @@ -90,6 +95,7 @@ public EHNamespace() Encryption = encryption; PrivateEndpointConnections = privateEndpointConnections; DisableLocalAuth = disableLocalAuth; + AlternateName = alternateName; CustomInit(); } @@ -206,6 +212,13 @@ public EHNamespace() [JsonProperty(PropertyName = "properties.disableLocalAuth")] public bool? DisableLocalAuth { get; set; } + /// + /// Gets or sets alternate name specified when alias and namespace + /// names are same. + /// + [JsonProperty(PropertyName = "properties.alternateName")] + public string AlternateName { get; set; } + /// /// Validate the object. /// diff --git a/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/Models/ErrorAdditionalInfo.cs b/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/Models/ErrorAdditionalInfo.cs new file mode 100644 index 000000000000..fe8145fccaed --- /dev/null +++ b/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/Models/ErrorAdditionalInfo.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.Linq; + + /// + /// The resource management error additional info. + /// + public partial class ErrorAdditionalInfo + { + /// + /// Initializes a new instance of the ErrorAdditionalInfo class. + /// + public ErrorAdditionalInfo() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the ErrorAdditionalInfo class. + /// + /// The additional info type. + /// The additional info. + public ErrorAdditionalInfo(string type = default(string), object info = default(object)) + { + Type = type; + Info = info; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets the additional info type. + /// + [JsonProperty(PropertyName = "type")] + public string Type { get; private set; } + + /// + /// Gets the additional info. + /// + [JsonProperty(PropertyName = "info")] + public object Info { get; private set; } + + } +} diff --git a/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/Models/ErrorDetail.cs b/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/Models/ErrorDetail.cs new file mode 100644 index 000000000000..2cc3a3f406e8 --- /dev/null +++ b/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/Models/ErrorDetail.cs @@ -0,0 +1,85 @@ +// +// 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 error detail. + /// + public partial class ErrorDetail + { + /// + /// Initializes a new instance of the ErrorDetail class. + /// + public ErrorDetail() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the ErrorDetail class. + /// + /// The error code. + /// The error message. + /// The error target. + /// The error details. + /// The error additional info. + public ErrorDetail(string code = default(string), string message = default(string), string target = default(string), IList details = default(IList), IList additionalInfo = default(IList)) + { + Code = code; + Message = message; + Target = target; + Details = details; + AdditionalInfo = additionalInfo; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets the error code. + /// + [JsonProperty(PropertyName = "code")] + public string Code { get; private set; } + + /// + /// Gets the error message. + /// + [JsonProperty(PropertyName = "message")] + public string Message { get; private set; } + + /// + /// Gets the error target. + /// + [JsonProperty(PropertyName = "target")] + public string Target { get; private set; } + + /// + /// Gets the error details. + /// + [JsonProperty(PropertyName = "details")] + public IList Details { get; private set; } + + /// + /// Gets the error additional info. + /// + [JsonProperty(PropertyName = "additionalInfo")] + public IList AdditionalInfo { get; private 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 fd260a990820..ee914a7638a8 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 @@ -30,13 +30,10 @@ public ErrorResponse() /// /// Initializes a new instance of the ErrorResponse class. /// - /// Error code. - /// Error message indicating why the operation - /// failed. - public ErrorResponse(string code = default(string), string message = default(string)) + /// The error object. + public ErrorResponse(ErrorDetail error = default(ErrorDetail)) { - Code = code; - Message = message; + Error = error; CustomInit(); } @@ -46,16 +43,10 @@ public ErrorResponse() partial void CustomInit(); /// - /// Gets or sets error code. + /// Gets or sets the error object. /// - [JsonProperty(PropertyName = "code")] - public string Code { get; set; } - - /// - /// Gets or sets error message indicating why the operation failed. - /// - [JsonProperty(PropertyName = "message")] - public string Message { get; set; } + [JsonProperty(PropertyName = "error")] + public ErrorDetail Error { get; set; } } } 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 c96c5ab1c1f8..a1ee2e7397a3 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 @@ -21,7 +21,7 @@ namespace Microsoft.Azure.Management.EventHub.Models /// Single item in List or Get Event Hub operation /// [Rest.Serialization.JsonTransformation] - public partial class Eventhub : Resource + public partial class Eventhub : ProxyResource { /// /// Initializes a new instance of the Eventhub class. @@ -34,9 +34,14 @@ public Eventhub() /// /// Initializes a new instance of the Eventhub class. /// - /// Resource ID. - /// Resource name. - /// Resource type. + /// Fully qualified resource ID for the resource. Ex - + /// /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName} + /// The name of the resource + /// The type of the resource. E.g. + /// "Microsoft.EventHub/Namespaces" or + /// "Microsoft.EventHub/Namespaces/EventHubs" + /// The geo-location where the resource + /// lives /// Current number of shards on the Event /// Hub. /// Exact time the Event Hub was @@ -55,8 +60,8 @@ public Eventhub() /// description /// The system meta data relating to this /// resource. - public Eventhub(string id = default(string), string name = default(string), string type = default(string), IList partitionIds = default(IList), System.DateTime? createdAt = default(System.DateTime?), System.DateTime? updatedAt = default(System.DateTime?), long? messageRetentionInDays = default(long?), long? partitionCount = default(long?), EntityStatus? status = default(EntityStatus?), CaptureDescription captureDescription = default(CaptureDescription), SystemData systemData = default(SystemData)) - : base(id, name, type) + public Eventhub(string id = default(string), string name = default(string), string type = default(string), string location = default(string), IList partitionIds = default(IList), System.DateTime? createdAt = default(System.DateTime?), System.DateTime? updatedAt = default(System.DateTime?), long? messageRetentionInDays = default(long?), long? partitionCount = default(long?), EntityStatus? status = default(EntityStatus?), CaptureDescription captureDescription = default(CaptureDescription), SystemData systemData = default(SystemData)) + : base(id, name, type, location) { PartitionIds = partitionIds; CreatedAt = createdAt; diff --git a/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/Models/KeyType.cs b/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/Models/KeyType.cs index c066dab5c1f1..c9875bcf84c4 100644 --- a/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/Models/KeyType.cs +++ b/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/Models/KeyType.cs @@ -10,51 +10,13 @@ namespace Microsoft.Azure.Management.EventHub.Models { - using Newtonsoft.Json; - using Newtonsoft.Json.Converters; - using System.Runtime; - using System.Runtime.Serialization; /// /// Defines values for KeyType. /// - [JsonConverter(typeof(StringEnumConverter))] - public enum KeyType + public static class KeyType { - [EnumMember(Value = "PrimaryKey")] - PrimaryKey, - [EnumMember(Value = "SecondaryKey")] - SecondaryKey - } - internal static class KeyTypeEnumExtension - { - internal static string ToSerializedValue(this KeyType? value) - { - return value == null ? null : ((KeyType)value).ToSerializedValue(); - } - - internal static string ToSerializedValue(this KeyType value) - { - switch( value ) - { - case KeyType.PrimaryKey: - return "PrimaryKey"; - case KeyType.SecondaryKey: - return "SecondaryKey"; - } - return null; - } - - internal static KeyType? ParseKeyType(this string value) - { - switch( value ) - { - case "PrimaryKey": - return KeyType.PrimaryKey; - case "SecondaryKey": - return KeyType.SecondaryKey; - } - return null; - } + public const string PrimaryKey = "PrimaryKey"; + public const string SecondaryKey = "SecondaryKey"; } } 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 7b56228b1086..46f9ef3262fc 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 @@ -21,7 +21,7 @@ namespace Microsoft.Azure.Management.EventHub.Models /// Description of topic resource. /// [Rest.Serialization.JsonTransformation] - public partial class NetworkRuleSet : Resource + public partial class NetworkRuleSet : ProxyResource { /// /// Initializes a new instance of the NetworkRuleSet class. @@ -34,9 +34,14 @@ public NetworkRuleSet() /// /// Initializes a new instance of the NetworkRuleSet class. /// - /// Resource ID. - /// Resource name. - /// Resource type. + /// Fully qualified resource ID for the resource. Ex - + /// /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName} + /// The name of the resource + /// The type of the resource. E.g. + /// "Microsoft.EventHub/Namespaces" or + /// "Microsoft.EventHub/Namespaces/EventHubs" + /// The geo-location where the resource + /// lives /// Value that indicates /// whether Trusted Service Access is Enabled or not. /// Default Action for Network Rule Set. @@ -48,8 +53,8 @@ public NetworkRuleSet() /// values include: 'Enabled', 'Disabled' /// The system meta data relating to this /// resource. - public NetworkRuleSet(string id = default(string), string name = default(string), string type = default(string), bool? trustedServiceAccessEnabled = default(bool?), string defaultAction = default(string), IList virtualNetworkRules = default(IList), IList ipRules = default(IList), string publicNetworkAccess = default(string), SystemData systemData = default(SystemData)) - : base(id, name, type) + public NetworkRuleSet(string id = default(string), string name = default(string), string type = default(string), string location = default(string), bool? trustedServiceAccessEnabled = default(bool?), string defaultAction = default(string), IList virtualNetworkRules = default(IList), IList ipRules = default(IList), string publicNetworkAccess = default(string), SystemData systemData = default(SystemData)) + : base(id, name, type, location) { TrustedServiceAccessEnabled = trustedServiceAccessEnabled; DefaultAction = defaultAction; diff --git a/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/Models/NetworkRuleSetListResult.cs b/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/Models/NetworkRuleSetListResult.cs new file mode 100644 index 000000000000..d49a0f49dd68 --- /dev/null +++ b/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/Models/NetworkRuleSetListResult.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; + + /// + /// The response of the List NetworkRuleSet operation + /// + public partial class NetworkRuleSetListResult + { + /// + /// Initializes a new instance of the NetworkRuleSetListResult class. + /// + public NetworkRuleSetListResult() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the NetworkRuleSetListResult class. + /// + /// Result of the List NetworkRuleSet + /// operation + /// Link to the next set of results. Not empty + /// if Value contains incomplete list of NetworkRuleSet. + public NetworkRuleSetListResult(IList value = default(IList), string nextLink = default(string)) + { + Value = value; + NextLink = nextLink; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets result of the List NetworkRuleSet operation + /// + [JsonProperty(PropertyName = "value")] + public IList Value { get; set; } + + /// + /// Gets or sets link to the next set of results. Not empty if Value + /// contains incomplete list of NetworkRuleSet. + /// + [JsonProperty(PropertyName = "nextLink")] + public string NextLink { get; set; } + + } +} diff --git a/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/Models/Operation.cs b/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/Models/Operation.cs index 929b601d5f95..d9a76175bc6f 100644 --- a/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/Models/Operation.cs +++ b/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/Models/Operation.cs @@ -31,12 +31,18 @@ public Operation() /// /// Operation name: /// {provider}/{resource}/{operation} - /// The object that represents the - /// operation. - public Operation(string name = default(string), OperationDisplay display = default(OperationDisplay)) + /// Indicates whether the operation is a + /// data action + /// Display of the operation + /// Origin of the operation + /// Properties of the operation + public Operation(string name = default(string), bool? isDataAction = default(bool?), OperationDisplay display = default(OperationDisplay), string origin = default(string), object properties = default(object)) { Name = name; + IsDataAction = isDataAction; Display = display; + Origin = origin; + Properties = properties; CustomInit(); } @@ -52,10 +58,28 @@ public Operation() public string Name { get; private set; } /// - /// Gets or sets the object that represents the operation. + /// Gets or sets indicates whether the operation is a data action + /// + [JsonProperty(PropertyName = "isDataAction")] + public bool? IsDataAction { get; set; } + + /// + /// Gets or sets display of the operation /// [JsonProperty(PropertyName = "display")] public OperationDisplay Display { get; set; } + /// + /// Gets or sets origin of the operation + /// + [JsonProperty(PropertyName = "origin")] + public string Origin { get; set; } + + /// + /// Gets or sets properties of the operation + /// + [JsonProperty(PropertyName = "properties")] + public object Properties { get; set; } + } } diff --git a/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/Models/OperationDisplay.cs b/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/Models/OperationDisplay.cs index a5e7718820e1..6c8f98d191f9 100644 --- a/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/Models/OperationDisplay.cs +++ b/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/Models/OperationDisplay.cs @@ -14,7 +14,7 @@ namespace Microsoft.Azure.Management.EventHub.Models using System.Linq; /// - /// The object that represents the operation. + /// Operation display payload /// public partial class OperationDisplay { @@ -29,16 +29,18 @@ public OperationDisplay() /// /// Initializes a new instance of the OperationDisplay class. /// - /// Service provider: Microsoft.EventHub - /// Resource on which the operation is - /// performed: Invoice, etc. - /// Operation type: Read, write, delete, - /// etc. - public OperationDisplay(string provider = default(string), string resource = default(string), string operation = default(string)) + /// Resource provider of the operation + /// Resource of the operation + /// Localized friendly name for the + /// operation + /// Localized friendly description for the + /// operation + public OperationDisplay(string provider = default(string), string resource = default(string), string operation = default(string), string description = default(string)) { Provider = provider; Resource = resource; Operation = operation; + Description = description; CustomInit(); } @@ -48,22 +50,28 @@ public OperationDisplay() partial void CustomInit(); /// - /// Gets service provider: Microsoft.EventHub + /// Gets resource provider of the operation /// [JsonProperty(PropertyName = "provider")] public string Provider { get; private set; } /// - /// Gets resource on which the operation is performed: Invoice, etc. + /// Gets resource of the operation /// [JsonProperty(PropertyName = "resource")] public string Resource { get; private set; } /// - /// Gets operation type: Read, write, delete, etc. + /// Gets localized friendly name for the operation /// [JsonProperty(PropertyName = "operation")] public string Operation { get; private set; } + /// + /// Gets localized friendly description for the operation + /// + [JsonProperty(PropertyName = "description")] + public string Description { get; private set; } + } } diff --git a/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/Models/PrivateEndpointConnection.cs b/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/Models/PrivateEndpointConnection.cs index 17cd64ee4210..046421f1ad93 100644 --- a/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/Models/PrivateEndpointConnection.cs +++ b/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/Models/PrivateEndpointConnection.cs @@ -19,7 +19,7 @@ namespace Microsoft.Azure.Management.EventHub.Models /// Properties of the PrivateEndpointConnection. /// [Rest.Serialization.JsonTransformation] - public partial class PrivateEndpointConnection : Resource + public partial class PrivateEndpointConnection : ProxyResource { /// /// Initializes a new instance of the PrivateEndpointConnection class. @@ -32,9 +32,14 @@ public PrivateEndpointConnection() /// /// Initializes a new instance of the PrivateEndpointConnection class. /// - /// Resource ID. - /// Resource name. - /// Resource type. + /// Fully qualified resource ID for the resource. Ex - + /// /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName} + /// The name of the resource + /// The type of the resource. E.g. + /// "Microsoft.EventHub/Namespaces" or + /// "Microsoft.EventHub/Namespaces/EventHubs" + /// The geo-location where the resource + /// lives /// The Private Endpoint resource for /// this Connection. /// Details about the @@ -44,8 +49,8 @@ public PrivateEndpointConnection() /// 'Updating', 'Deleting', 'Succeeded', 'Canceled', 'Failed' /// The system meta data relating to this /// resource. - public PrivateEndpointConnection(string id = default(string), string name = default(string), string type = default(string), PrivateEndpoint privateEndpoint = default(PrivateEndpoint), ConnectionState privateLinkServiceConnectionState = default(ConnectionState), string provisioningState = default(string), SystemData systemData = default(SystemData)) - : base(id, name, type) + public PrivateEndpointConnection(string id = default(string), string name = default(string), string type = default(string), string location = default(string), PrivateEndpoint privateEndpoint = default(PrivateEndpoint), ConnectionState privateLinkServiceConnectionState = default(ConnectionState), string provisioningState = default(string), SystemData systemData = default(SystemData)) + : base(id, name, type, location) { PrivateEndpoint = privateEndpoint; PrivateLinkServiceConnectionState = privateLinkServiceConnectionState; diff --git a/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/Models/ProxyResource.cs b/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/Models/ProxyResource.cs new file mode 100644 index 000000000000..c540b05921f6 --- /dev/null +++ b/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/Models/ProxyResource.cs @@ -0,0 +1,87 @@ +// +// 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.Azure; + using Newtonsoft.Json; + using System.Linq; + + /// + /// Resource + /// + /// + /// Common fields that are returned in the response for all Azure Resource + /// Manager resources + /// + public partial class ProxyResource : IResource + { + /// + /// Initializes a new instance of the ProxyResource class. + /// + public ProxyResource() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the ProxyResource class. + /// + /// Fully qualified resource ID for the resource. Ex - + /// /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName} + /// The name of the resource + /// The type of the resource. E.g. + /// "Microsoft.EventHub/Namespaces" or + /// "Microsoft.EventHub/Namespaces/EventHubs" + /// The geo-location where the resource + /// lives + public ProxyResource(string id = default(string), string name = default(string), string type = default(string), string location = default(string)) + { + Id = id; + Name = name; + Type = type; + Location = location; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets fully qualified resource ID for the resource. Ex - + /// /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName} + /// + [JsonProperty(PropertyName = "id")] + public string Id { get; private set; } + + /// + /// Gets the name of the resource + /// + [JsonProperty(PropertyName = "name")] + public string Name { get; private set; } + + /// + /// Gets the type of the resource. E.g. "Microsoft.EventHub/Namespaces" + /// or "Microsoft.EventHub/Namespaces/EventHubs" + /// + [JsonProperty(PropertyName = "type")] + public string Type { get; private set; } + + /// + /// Gets the geo-location where the resource lives + /// + [JsonProperty(PropertyName = "location")] + public string Location { get; private set; } + + } +} diff --git a/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/Models/RegenerateAccessKeyParameters.cs b/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/Models/RegenerateAccessKeyParameters.cs index df57c44ca3d7..4064289f11a3 100644 --- a/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/Models/RegenerateAccessKeyParameters.cs +++ b/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/Models/RegenerateAccessKeyParameters.cs @@ -10,6 +10,7 @@ namespace Microsoft.Azure.Management.EventHub.Models { + using Microsoft.Rest; using Newtonsoft.Json; using System.Linq; @@ -36,7 +37,7 @@ public RegenerateAccessKeyParameters() /// include: 'PrimaryKey', 'SecondaryKey' /// Optional, if the key value provided, is set for /// KeyType or autogenerated Key value set for keyType - public RegenerateAccessKeyParameters(KeyType keyType, string key = default(string)) + public RegenerateAccessKeyParameters(string keyType, string key = default(string)) { KeyType = keyType; Key = key; @@ -53,7 +54,7 @@ public RegenerateAccessKeyParameters() /// 'PrimaryKey', 'SecondaryKey' /// [JsonProperty(PropertyName = "keyType")] - public KeyType KeyType { get; set; } + public string KeyType { get; set; } /// /// Gets or sets optional, if the key value provided, is set for @@ -65,11 +66,15 @@ public RegenerateAccessKeyParameters() /// /// Validate the object. /// - /// + /// /// Thrown if validation fails /// public virtual void Validate() { + if (KeyType == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "KeyType"); + } } } } 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 59cc585e0f35..9abe376af777 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,8 +16,12 @@ namespace Microsoft.Azure.Management.EventHub.Models using System.Linq; /// - /// The resource definition. + /// Resource /// + /// + /// Common fields that are returned in the response for all Azure Resource + /// Manager resources + /// public partial class Resource : IResource { /// @@ -31,9 +35,12 @@ public Resource() /// /// Initializes a new instance of the Resource class. /// - /// Resource ID. - /// Resource name. - /// Resource type. + /// Fully qualified resource ID for the resource. Ex - + /// /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName} + /// The name of the resource + /// The type of the resource. E.g. + /// "Microsoft.Compute/virtualMachines" or + /// "Microsoft.Storage/storageAccounts" public Resource(string id = default(string), string name = default(string), string type = default(string)) { Id = id; @@ -48,19 +55,22 @@ public Resource() partial void CustomInit(); /// - /// Gets resource ID. + /// Gets fully qualified resource ID for the resource. Ex - + /// /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName} /// [JsonProperty(PropertyName = "id")] public string Id { get; private set; } /// - /// Gets resource name. + /// Gets the name of the resource /// [JsonProperty(PropertyName = "name")] public string Name { get; private set; } /// - /// Gets resource type. + /// Gets the type of the resource. E.g. + /// "Microsoft.Compute/virtualMachines" or + /// "Microsoft.Storage/storageAccounts" /// [JsonProperty(PropertyName = "type")] public string Type { get; private set; } diff --git a/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/Models/SchemaCompatibility.cs b/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/Models/SchemaCompatibility.cs new file mode 100644 index 000000000000..62f51dfe15cd --- /dev/null +++ b/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/Models/SchemaCompatibility.cs @@ -0,0 +1,23 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.EventHub.Models +{ + + /// + /// Defines values for SchemaCompatibility. + /// + public static class SchemaCompatibility + { + public const string None = "None"; + public const string Backward = "Backward"; + public const string Forward = "Forward"; + } +} diff --git a/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/Models/SchemaGroup.cs b/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/Models/SchemaGroup.cs new file mode 100644 index 000000000000..caaf91f6c174 --- /dev/null +++ b/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/Models/SchemaGroup.cs @@ -0,0 +1,119 @@ +// +// 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 item in List or Get Schema Group operation + /// + [Rest.Serialization.JsonTransformation] + public partial class SchemaGroup : ProxyResource + { + /// + /// Initializes a new instance of the SchemaGroup class. + /// + public SchemaGroup() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the SchemaGroup class. + /// + /// Fully qualified resource ID for the resource. Ex - + /// /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName} + /// The name of the resource + /// The type of the resource. E.g. + /// "Microsoft.EventHub/Namespaces" or + /// "Microsoft.EventHub/Namespaces/EventHubs" + /// The geo-location where the resource + /// lives + /// Exact time the Schema Group was + /// updated + /// Exact time the Schema Group was + /// created. + /// The ETag value. + /// dictionary object for SchemaGroup + /// group properties + /// Possible values include: 'None', + /// 'Backward', 'Forward' + /// Possible values include: 'Unknown', + /// 'Avro' + /// The system meta data relating to this + /// resource. + public SchemaGroup(string id = default(string), string name = default(string), string type = default(string), string location = default(string), System.DateTime? updatedAtUtc = default(System.DateTime?), System.DateTime? createdAtUtc = default(System.DateTime?), System.Guid? eTag = default(System.Guid?), IDictionary groupProperties = default(IDictionary), string schemaCompatibility = default(string), string schemaType = default(string), SystemData systemData = default(SystemData)) + : base(id, name, type, location) + { + UpdatedAtUtc = updatedAtUtc; + CreatedAtUtc = createdAtUtc; + ETag = eTag; + GroupProperties = groupProperties; + SchemaCompatibility = schemaCompatibility; + SchemaType = schemaType; + SystemData = systemData; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets exact time the Schema Group was updated + /// + [JsonProperty(PropertyName = "properties.updatedAtUtc")] + public System.DateTime? UpdatedAtUtc { get; private set; } + + /// + /// Gets exact time the Schema Group was created. + /// + [JsonProperty(PropertyName = "properties.createdAtUtc")] + public System.DateTime? CreatedAtUtc { get; private set; } + + /// + /// Gets the ETag value. + /// + [JsonProperty(PropertyName = "properties.eTag")] + public System.Guid? ETag { get; private set; } + + /// + /// Gets or sets dictionary object for SchemaGroup group properties + /// + [JsonProperty(PropertyName = "properties.groupProperties")] + public IDictionary GroupProperties { get; set; } + + /// + /// Gets or sets possible values include: 'None', 'Backward', 'Forward' + /// + [JsonProperty(PropertyName = "properties.schemaCompatibility")] + public string SchemaCompatibility { get; set; } + + /// + /// Gets or sets possible values include: 'Unknown', 'Avro' + /// + [JsonProperty(PropertyName = "properties.schemaType")] + public string SchemaType { get; set; } + + /// + /// Gets the system meta data relating to this resource. + /// + [JsonProperty(PropertyName = "systemData")] + public SystemData SystemData { get; private set; } + + } +} diff --git a/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/Models/SchemaType.cs b/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/Models/SchemaType.cs new file mode 100644 index 000000000000..b43b4da4830c --- /dev/null +++ b/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/Models/SchemaType.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 SchemaType. + /// + public static class SchemaType + { + public const string Unknown = "Unknown"; + public const string Avro = "Avro"; + } +} 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 0f2de89f8c94..e8365d2b4fe3 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 @@ -31,9 +31,12 @@ public TrackedResource() /// /// Initializes a new instance of the TrackedResource class. /// - /// Resource ID. - /// Resource name. - /// Resource type. + /// Fully qualified resource ID for the resource. Ex - + /// /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName} + /// The name of the resource + /// The type of the resource. E.g. + /// "Microsoft.Compute/virtualMachines" or + /// "Microsoft.Storage/storageAccounts" /// 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)) 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 c32698137968..35e536e18282 100644 --- a/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/NamespacesOperations.cs +++ b/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/NamespacesOperations.cs @@ -1365,6 +1365,219 @@ internal NamespacesOperations(EventHubManagementClient client) return _result; } + /// + /// Gets NetworkRuleSet 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> ListNetworkRuleSetWithHttpMessagesAsync(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.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + // 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("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "ListNetworkRuleSet", 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").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) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new 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 a list of authorization rules for a Namespace. /// @@ -2534,7 +2747,7 @@ internal NamespacesOperations(EventHubManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> RegenerateKeysWithHttpMessagesAsync(string resourceGroupName, string namespaceName, string authorizationRuleName, KeyType keyType, string key = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> RegenerateKeysWithHttpMessagesAsync(string resourceGroupName, string namespaceName, string authorizationRuleName, string keyType, string key = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { @@ -2585,8 +2798,12 @@ internal NamespacesOperations(EventHubManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } + if (keyType == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "keyType"); + } RegenerateAccessKeyParameters parameters = new RegenerateAccessKeyParameters(); - if (key != null) + if (keyType != null || key != null) { parameters.KeyType = keyType; parameters.Key = key; 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 b7f848c62125..1fcf95bccb55 100644 --- a/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/NamespacesOperationsExtensions.cs +++ b/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/NamespacesOperationsExtensions.cs @@ -348,6 +348,46 @@ public static NetworkRuleSet GetNetworkRuleSet(this INamespacesOperations operat } } + /// + /// 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 NetworkRuleSetListResult ListNetworkRuleSet(this INamespacesOperations operations, string resourceGroupName, string namespaceName) + { + return operations.ListNetworkRuleSetAsync(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 + /// + /// + /// The cancellation token. + /// + public static async Task ListNetworkRuleSetAsync(this INamespacesOperations operations, string resourceGroupName, string namespaceName, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListNetworkRuleSetWithHttpMessagesAsync(resourceGroupName, namespaceName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + /// /// Gets a list of authorization rules for a Namespace. /// @@ -599,7 +639,7 @@ public static AccessKeys ListKeys(this INamespacesOperations operations, string /// Optional, if the key value provided, is set for KeyType or autogenerated /// Key value set for keyType /// - public static AccessKeys RegenerateKeys(this INamespacesOperations operations, string resourceGroupName, string namespaceName, string authorizationRuleName, KeyType keyType, string key = default(string)) + public static AccessKeys RegenerateKeys(this INamespacesOperations operations, string resourceGroupName, string namespaceName, string authorizationRuleName, string keyType, string key = default(string)) { return operations.RegenerateKeysAsync(resourceGroupName, namespaceName, authorizationRuleName, keyType, key).GetAwaiter().GetResult(); } @@ -631,7 +671,7 @@ public static AccessKeys ListKeys(this INamespacesOperations operations, string /// /// The cancellation token. /// - public static async Task RegenerateKeysAsync(this INamespacesOperations operations, string resourceGroupName, string namespaceName, string authorizationRuleName, KeyType keyType, string key = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task RegenerateKeysAsync(this INamespacesOperations operations, string resourceGroupName, string namespaceName, string authorizationRuleName, string keyType, string key = default(string), CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.RegenerateKeysWithHttpMessagesAsync(resourceGroupName, namespaceName, authorizationRuleName, keyType, key, null, cancellationToken).ConfigureAwait(false)) { diff --git a/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/SchemaRegistryOperations.cs b/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/SchemaRegistryOperations.cs new file mode 100644 index 000000000000..bcbaec1acf2d --- /dev/null +++ b/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/SchemaRegistryOperations.cs @@ -0,0 +1,1154 @@ +// +// 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; + + /// + /// SchemaRegistryOperations operations. + /// + internal partial class SchemaRegistryOperations : IServiceOperations, ISchemaRegistryOperations + { + /// + /// Initializes a new instance of the SchemaRegistryOperations class. + /// + /// + /// Reference to the service client. + /// + /// + /// Thrown when a required parameter is null + /// + internal SchemaRegistryOperations(EventHubManagementClient client) + { + if (client == null) + { + throw new System.ArgumentNullException("client"); + } + Client = client; + } + + /// + /// Gets a reference to the EventHubManagementClient + /// + public EventHubManagementClient Client { get; private set; } + + /// + /// Gets all the Schema Groups in a Namespace. + /// + /// + /// Name of the resource group within the azure subscription. + /// + /// + /// 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. + /// + /// + /// 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>> ListByNamespaceWithHttpMessagesAsync(string resourceGroupName, string namespaceName, int? skip = default(int?), int? top = default(int?), 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) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + if (skip > 1000) + { + throw new ValidationException(ValidationRules.InclusiveMaximum, "skip", 1000); + } + if (skip < 0) + { + throw new ValidationException(ValidationRules.InclusiveMinimum, "skip", 0); + } + if (top > 1000) + { + throw new ValidationException(ValidationRules.InclusiveMaximum, "top", 1000); + } + if (top < 1) + { + throw new ValidationException(ValidationRules.InclusiveMinimum, "top", 1); + } + // 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("skip", skip); + tracingParameters.Add("top", top); + tracingParameters.Add("cancellationToken", cancellationToken); + 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}/schemagroups").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) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); + } + if (skip != 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('"')))); + } + 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; + } + + /// + /// Name of the resource group within the azure subscription. + /// + /// + /// The Namespace name + /// + /// + /// The Schema Group name + /// + /// + /// Parameters supplied to create an Event Hub 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> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string namespaceName, string schemaGroupName, SchemaGroup 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 (schemaGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "schemaGroupName"); + } + if (schemaGroupName != null) + { + if (schemaGroupName.Length > 256) + { + throw new ValidationException(ValidationRules.MaxLength, "schemaGroupName", 256); + } + if (schemaGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "schemaGroupName", 1); + } + } + 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"); + } + // 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("schemaGroupName", schemaGroupName); + tracingParameters.Add("parameters", parameters); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "CreateOrUpdate", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.EventHub/namespaces/{namespaceName}/schemagroups/{schemaGroupName}").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{namespaceName}", System.Uri.EscapeDataString(namespaceName)); + _url = _url.Replace("{schemaGroupName}", System.Uri.EscapeDataString(schemaGroupName)); + _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 (_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; + } + + /// + /// Name of the resource group within the azure subscription. + /// + /// + /// The Namespace name + /// + /// + /// The Schema Group 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 DeleteWithHttpMessagesAsync(string resourceGroupName, string namespaceName, string schemaGroupName, 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 (schemaGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "schemaGroupName"); + } + if (schemaGroupName != null) + { + if (schemaGroupName.Length > 256) + { + throw new ValidationException(ValidationRules.MaxLength, "schemaGroupName", 256); + } + if (schemaGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "schemaGroupName", 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"); + } + // 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("schemaGroupName", schemaGroupName); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "Delete", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.EventHub/namespaces/{namespaceName}/schemagroups/{schemaGroupName}").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{namespaceName}", System.Uri.EscapeDataString(namespaceName)); + _url = _url.Replace("{schemaGroupName}", System.Uri.EscapeDataString(schemaGroupName)); + _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 (_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; + } + + /// + /// Name of the resource group within the azure subscription. + /// + /// + /// The Namespace name + /// + /// + /// The Schema Group 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, string schemaGroupName, 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 (schemaGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "schemaGroupName"); + } + if (schemaGroupName != null) + { + if (schemaGroupName.Length > 256) + { + throw new ValidationException(ValidationRules.MaxLength, "schemaGroupName", 256); + } + if (schemaGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "schemaGroupName", 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"); + } + // 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("schemaGroupName", schemaGroupName); + 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}/schemagroups/{schemaGroupName}").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{namespaceName}", System.Uri.EscapeDataString(namespaceName)); + _url = _url.Replace("{schemaGroupName}", System.Uri.EscapeDataString(schemaGroupName)); + _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 (_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 all the Schema Groups in a Namespace. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task>> ListByNamespaceNextWithHttpMessagesAsync(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, "ListByNamespaceNext", 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/SchemaRegistryOperationsExtensions.cs b/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/SchemaRegistryOperationsExtensions.cs new file mode 100644 index 000000000000..c49fc609f212 --- /dev/null +++ b/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/SchemaRegistryOperationsExtensions.cs @@ -0,0 +1,242 @@ +// +// 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 SchemaRegistryOperations. + /// + public static partial class SchemaRegistryOperationsExtensions + { + /// + /// Gets all the Schema Groups in a Namespace. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the resource group within the azure subscription. + /// + /// + /// 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. + /// + public static IPage ListByNamespace(this ISchemaRegistryOperations operations, string resourceGroupName, string namespaceName, int? skip = default(int?), int? top = default(int?)) + { + return operations.ListByNamespaceAsync(resourceGroupName, namespaceName, skip, top).GetAwaiter().GetResult(); + } + + /// + /// Gets all the Schema Groups in a Namespace. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the resource group within the azure subscription. + /// + /// + /// 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 cancellation token. + /// + public static async Task> ListByNamespaceAsync(this ISchemaRegistryOperations operations, string resourceGroupName, string namespaceName, int? skip = default(int?), int? top = default(int?), CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListByNamespaceWithHttpMessagesAsync(resourceGroupName, namespaceName, skip, top, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// The operations group for this extension method. + /// + /// + /// Name of the resource group within the azure subscription. + /// + /// + /// The Namespace name + /// + /// + /// The Schema Group name + /// + /// + /// Parameters supplied to create an Event Hub resource. + /// + public static SchemaGroup CreateOrUpdate(this ISchemaRegistryOperations operations, string resourceGroupName, string namespaceName, string schemaGroupName, SchemaGroup parameters) + { + return operations.CreateOrUpdateAsync(resourceGroupName, namespaceName, schemaGroupName, parameters).GetAwaiter().GetResult(); + } + + /// + /// The operations group for this extension method. + /// + /// + /// Name of the resource group within the azure subscription. + /// + /// + /// The Namespace name + /// + /// + /// The Schema Group name + /// + /// + /// Parameters supplied to create an Event Hub resource. + /// + /// + /// The cancellation token. + /// + public static async Task CreateOrUpdateAsync(this ISchemaRegistryOperations operations, string resourceGroupName, string namespaceName, string schemaGroupName, SchemaGroup parameters, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.CreateOrUpdateWithHttpMessagesAsync(resourceGroupName, namespaceName, schemaGroupName, parameters, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// The operations group for this extension method. + /// + /// + /// Name of the resource group within the azure subscription. + /// + /// + /// The Namespace name + /// + /// + /// The Schema Group name + /// + public static void Delete(this ISchemaRegistryOperations operations, string resourceGroupName, string namespaceName, string schemaGroupName) + { + operations.DeleteAsync(resourceGroupName, namespaceName, schemaGroupName).GetAwaiter().GetResult(); + } + + /// + /// The operations group for this extension method. + /// + /// + /// Name of the resource group within the azure subscription. + /// + /// + /// The Namespace name + /// + /// + /// The Schema Group name + /// + /// + /// The cancellation token. + /// + public static async Task DeleteAsync(this ISchemaRegistryOperations operations, string resourceGroupName, string namespaceName, string schemaGroupName, CancellationToken cancellationToken = default(CancellationToken)) + { + (await operations.DeleteWithHttpMessagesAsync(resourceGroupName, namespaceName, schemaGroupName, null, cancellationToken).ConfigureAwait(false)).Dispose(); + } + + /// + /// The operations group for this extension method. + /// + /// + /// Name of the resource group within the azure subscription. + /// + /// + /// The Namespace name + /// + /// + /// The Schema Group name + /// + public static SchemaGroup Get(this ISchemaRegistryOperations operations, string resourceGroupName, string namespaceName, string schemaGroupName) + { + return operations.GetAsync(resourceGroupName, namespaceName, schemaGroupName).GetAwaiter().GetResult(); + } + + /// + /// The operations group for this extension method. + /// + /// + /// Name of the resource group within the azure subscription. + /// + /// + /// The Namespace name + /// + /// + /// The Schema Group name + /// + /// + /// The cancellation token. + /// + public static async Task GetAsync(this ISchemaRegistryOperations operations, string resourceGroupName, string namespaceName, string schemaGroupName, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.GetWithHttpMessagesAsync(resourceGroupName, namespaceName, schemaGroupName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Gets all the Schema Groups in a Namespace. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + public static IPage ListByNamespaceNext(this ISchemaRegistryOperations operations, string nextPageLink) + { + return operations.ListByNamespaceNextAsync(nextPageLink).GetAwaiter().GetResult(); + } + + /// + /// Gets all the Schema Groups in 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> ListByNamespaceNextAsync(this ISchemaRegistryOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) + { + 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/SdkInfo_EventHubManagementClient.cs b/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/SdkInfo_EventHubManagementClient.cs index 986a40307deb..e54aebc00da2 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,25 +19,26 @@ public static IEnumerable> ApiInfo_EventHubManagem { return new Tuple[] { - new Tuple("EventHub", "Clusters", "2021-06-01-preview"), - new Tuple("EventHub", "Configuration", "2021-06-01-preview"), - new Tuple("EventHub", "ConsumerGroups", "2021-06-01-preview"), - new Tuple("EventHub", "DisasterRecoveryConfigs", "2021-06-01-preview"), - new Tuple("EventHub", "EventHubs", "2021-06-01-preview"), - new Tuple("EventHub", "Namespaces", "2021-06-01-preview"), - new Tuple("EventHub", "Operations", "2021-06-01-preview"), - new Tuple("EventHub", "PrivateEndpointConnections", "2021-06-01-preview"), - new Tuple("EventHub", "PrivateLinkResources", "2021-06-01-preview"), + new Tuple("EventHub", "Clusters", "2021-11-01"), + new Tuple("EventHub", "Configuration", "2021-11-01"), + new Tuple("EventHub", "ConsumerGroups", "2021-11-01"), + new Tuple("EventHub", "DisasterRecoveryConfigs", "2021-11-01"), + new Tuple("EventHub", "EventHubs", "2021-11-01"), + new Tuple("EventHub", "Namespaces", "2021-11-01"), + new Tuple("EventHub", "Operations", "2021-11-01"), + new Tuple("EventHub", "PrivateEndpointConnections", "2021-11-01"), + new Tuple("EventHub", "PrivateLinkResources", "2021-11-01"), + new Tuple("EventHub", "SchemaRegistry", "2021-11-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/main/specification/eventhub/resource-manager/readme.md --csharp --version=v2 --reflect-api-versions --csharp-sdks-folder=D:\\autorest2021\\azure-sdk-for-net\\sdk"; + public static readonly String AutoRestBootStrapperVersion = "autorest@3.4.2"; + public static readonly String AutoRestCmdExecuted = "cmd.exe /c autorest.cmd https://github.com/Azure/azure-rest-api-specs/blob/main/specification/eventhub/resource-manager/readme.md --csharp --version=v2 --reflect-api-versions --csharp-sdks-folder=C:\\SwaggerNetSdk\\3\\azure-sdk-for-net\\sdk"; public static readonly String GithubForkName = "Azure"; public static readonly String GithubBranchName = "main"; - public static readonly String GithubCommidId = "699c3a00cf4fbfcd0a91beb99c93c77195eff804"; + public static readonly String GithubCommidId = "9e8a591da83285d863866ecd2f6fe87a72758a7d"; 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 bd06223247e8..c1735366f307 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 @@ -9,12 +9,12 @@ 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. Development of this library has shifted focus to the Azure Unified SDK. The future development will be focused on "Azure.ResourceManager.EventHubs" (https://www.nuget.org/packages/Azure.ResourceManager.EventHubs/). Please see the package changelog for more information. - 3.0.0 + 4.0.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 9945b9610df9..96926a58fa7b 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("3.0.0.0")] +[assembly: AssemblyFileVersion("4.0.0.0")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("Microsoft")] 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 457b19185d7e..2a68367422ff 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,52 +1,51 @@ { "Entries": [ { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-5305/providers/Microsoft.EventHub/namespaces/sdk-NS-7492?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNTMwNS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTc0OTI/YXBpLXZlcnNpb249MjAyMS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/Default-EventHub-3186?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlZ3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMzE4Nj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d2c740a0-e9c2-44ef-bf0c-f60f76e216c8" + "3497b36d-4f51-4468-8776-aaa776b82a30" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 03:09:49 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-5305/providers/Microsoft.EventHub/namespaces/sdk-NS-7492/operationresults/sdk-NS-7492?api-version=2021-06-01-preview" - ], - "x-ms-request-id": [ - "1c09f34a-7792-4ca5-aad8-ae61fbb25fbb_M9SN1_M9SN1" + "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1ERUZBVUxUOjJERVZFTlRIVUI6MkQzMTg2LVNPVVRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJzb3V0aGNlbnRyYWx1cyJ9?api-version=2015-11-01" ], - "Server-SB": [ - "Service-Bus-Resource-Provider/SN1" - ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" + "Retry-After": [ + "15" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" + "14997" + ], + "x-ms-request-id": [ + "db1a9df3-f7f8-4614-8654-d01974361302" ], "x-ms-correlation-request-id": [ - "abe84f50-6f00-48c5-aba0-f174da41e730" + "db1a9df3-f7f8-4614-8654-d01974361302" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T045254Z:abe84f50-6f00-48c5-aba0-f174da41e730" + "SOUTHINDIA:20211115T030949Z:db1a9df3-f7f8-4614-8654-d01974361302" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -54,14 +53,11 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:52:54 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", @@ -74,15 +70,15 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "07d00dfd-a7bd-4c6f-ae3a-6bc192c02fc7" + "6adc47a5-b3df-4f1b-856b-e8eabf7c9530" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", + "OSVersion/Microsoft.Windows.10.0.22000.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -90,6 +86,9 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 03:09:50 GMT" + ], "Pragma": [ "no-cache" ], @@ -97,13 +96,13 @@ "11999" ], "x-ms-request-id": [ - "0e822fec-8e8b-47d3-a671-ba355b15901f" + "a7504420-4db7-4cba-a802-17933aca18eb" ], "x-ms-correlation-request-id": [ - "0e822fec-8e8b-47d3-a671-ba355b15901f" + "a7504420-4db7-4cba-a802-17933aca18eb" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T045255Z:0e822fec-8e8b-47d3-a671-ba355b15901f" + "SOUTHINDIA:20211115T030950Z:a7504420-4db7-4cba-a802-17933aca18eb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -111,38 +110,35 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:52:54 GMT" + "Content-Length": [ + "4451" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" - ], - "Content-Length": [ - "4274" ] }, - "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 \"Jio India West\",\r\n \"West US 3\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"UAE Central\",\r\n \"Norway West\",\r\n \"Sweden Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01-preview\",\r\n \"2021-01-01-preview\",\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 \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"UAE Central\",\r\n \"Norway West\",\r\n \"Sweden 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 \"2021-06-01-preview\",\r\n \"2021-01-01-preview\",\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 },\r\n {\r\n \"resourceType\": \"namespaces/networkrulesets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-06-01-preview\",\r\n \"2021-01-01-preview\",\r\n \"2018-01-01-preview\",\r\n \"2017-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/privateEndpointConnections\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-06-01-preview\",\r\n \"2021-01-01-preview\",\r\n \"2018-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/eventhubs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-06-01-preview\",\r\n \"2021-01-01-preview\",\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 },\r\n {\r\n \"resourceType\": \"namespaces/eventhubs/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-06-01-preview\",\r\n \"2021-01-01-preview\",\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 },\r\n {\r\n \"resourceType\": \"namespaces/eventhubs/consumergroups\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-06-01-preview\",\r\n \"2021-01-01-preview\",\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 },\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 \"2021-06-01-preview\",\r\n \"2021-01-01-preview\",\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 },\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 \"2021-06-01-preview\",\r\n \"2021-01-01-preview\",\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 },\r\n {\r\n \"resourceType\": \"namespaces/disasterrecoveryconfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-06-01-preview\",\r\n \"2021-01-01-preview\",\r\n \"2018-01-01-preview\",\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 \"2021-06-01-preview\",\r\n \"2021-01-01-preview\",\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 },\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}", + "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 \"Jio India West\",\r\n \"West US 3\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"UAE Central\",\r\n \"Norway West\",\r\n \"Sweden Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-11-01\",\r\n \"2021-06-01-preview\",\r\n \"2021-01-01-preview\",\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 \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"UAE Central\",\r\n \"Norway West\",\r\n \"Sweden Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-11-01\",\r\n \"2021-06-01-preview\",\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 \"2021-11-01\",\r\n \"2021-06-01-preview\",\r\n \"2021-01-01-preview\",\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 },\r\n {\r\n \"resourceType\": \"namespaces/networkrulesets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-11-01\",\r\n \"2021-06-01-preview\",\r\n \"2021-01-01-preview\",\r\n \"2018-01-01-preview\",\r\n \"2017-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/privateEndpointConnections\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-11-01\",\r\n \"2021-06-01-preview\",\r\n \"2021-01-01-preview\",\r\n \"2018-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/eventhubs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-11-01\",\r\n \"2021-06-01-preview\",\r\n \"2021-01-01-preview\",\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 },\r\n {\r\n \"resourceType\": \"namespaces/eventhubs/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-11-01\",\r\n \"2021-06-01-preview\",\r\n \"2021-01-01-preview\",\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 },\r\n {\r\n \"resourceType\": \"namespaces/eventhubs/consumergroups\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-11-01\",\r\n \"2021-06-01-preview\",\r\n \"2021-01-01-preview\",\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 },\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 \"2021-11-01\",\r\n \"2021-06-01-preview\",\r\n \"2021-01-01-preview\",\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 },\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 \"2021-11-01\",\r\n \"2021-06-01-preview\",\r\n \"2021-01-01-preview\",\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 },\r\n {\r\n \"resourceType\": \"namespaces/disasterrecoveryconfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-11-01\",\r\n \"2021-06-01-preview\",\r\n \"2021-01-01-preview\",\r\n \"2018-01-01-preview\",\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 \"2021-11-01\",\r\n \"2021-06-01-preview\",\r\n \"2021-01-01-preview\",\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 },\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/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/Default-EventHub-4006?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlZ3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNDAwNj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/Default-EventHub-2958?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlZ3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMjk1OD9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"Australia East\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "714cc0b3-a3c8-4a25-956a-00ddab07bfee" + "0afa8c45-7281-4ea1-b487-e7a98b7203fb" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", + "OSVersion/Microsoft.Windows.10.0.22000.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ], "Content-Type": [ @@ -156,6 +152,9 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 03:09:51 GMT" + ], "Pragma": [ "no-cache" ], @@ -163,13 +162,13 @@ "1199" ], "x-ms-request-id": [ - "95dde494-f241-4f6d-b00a-06a8c72523ff" + "bef1df02-8d67-4b4d-8cae-667190810af9" ], "x-ms-correlation-request-id": [ - "95dde494-f241-4f6d-b00a-06a8c72523ff" + "bef1df02-8d67-4b4d-8cae-667190810af9" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T045257Z:95dde494-f241-4f6d-b00a-06a8c72523ff" + "SOUTHINDIA:20211115T030952Z:bef1df02-8d67-4b4d-8cae-667190810af9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -177,9 +176,6 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:52:57 GMT" - ], "Content-Length": [ "202" ], @@ -190,26 +186,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-4006\",\r\n \"name\": \"Default-EventHub-4006\",\r\n \"location\": \"australiaeast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-2958\",\r\n \"name\": \"Default-EventHub-2958\",\r\n \"location\": \"australiaeast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-4006/providers/Microsoft.EventHub/namespaces/sdk-NS-3271?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNDAwNi9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTMyNzE/YXBpLXZlcnNpb249MjAyMS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-2958/providers/Microsoft.EventHub/namespaces/sdk-NS-5628?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMjk1OC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTU2Mjg/YXBpLXZlcnNpb249MjAyMS0xMS0wMQ==", "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": [ - "2be17861-56cc-453a-ac3a-23577836a42b" + "2002270e-d367-4742-a6ea-9194b9c42982" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -222,27 +218,30 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 03:09:57 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "d267b915-94b2-47a7-9991-6e4c3ab57939_M11SN1_M11SN1" + "70d8c9fc-4f92-4039-9575-cf230022873b_M0SN1_M0SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "49" + "47" ], "x-ms-correlation-request-id": [ - "041c0a71-5335-43b2-81c1-3bffd1fa9dbe" + "90681a82-adc5-4727-9e74-84303396bd06" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T045306Z:041c0a71-5335-43b2-81c1-3bffd1fa9dbe" + "SOUTHINDIA:20211115T030957Z:90681a82-adc5-4727-9e74-84303396bd06" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -250,11 +249,8 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:53:05 GMT" - ], "Content-Length": [ - "734" + "736" ], "Content-Type": [ "application/json; charset=utf-8" @@ -263,47 +259,50 @@ "-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-4006/providers/Microsoft.EventHub/namespaces/sdk-NS-3271\",\r\n \"name\": \"sdk-NS-3271\",\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 \"disableLocalAuth\": false,\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-3271\",\r\n \"createdAt\": \"2021-09-24T04:53:04.29Z\",\r\n \"updatedAt\": \"2021-09-24T04:53:04.29Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-3271.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-2958/providers/Microsoft.EventHub/namespaces/sdk-NS-5628\",\r\n \"name\": \"sdk-NS-5628\",\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 \"disableLocalAuth\": false,\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-5628\",\r\n \"createdAt\": \"2021-11-15T03:09:56.233Z\",\r\n \"updatedAt\": \"2021-11-15T03:09:56.233Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-5628.servicebus.windows.net:443/\",\r\n \"status\": \"Activating\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-4006/providers/Microsoft.EventHub/namespaces/sdk-NS-3271?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNDAwNi9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTMyNzE/YXBpLXZlcnNpb249MjAyMS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-2958/providers/Microsoft.EventHub/namespaces/sdk-NS-5628?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMjk1OC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTU2Mjg/YXBpLXZlcnNpb249MjAyMS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 03:10:28 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "61b24a72-42f5-4620-b282-11338a18c080_M4SN1_M4SN1" + "6a7f8a42-6a28-4dce-b534-55e40331105d_M9SN1_M9SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11954" ], "x-ms-correlation-request-id": [ - "66f9dc25-a2fa-487a-b6d7-d9c1b4cfa7b0" + "bdc31fb1-937f-4648-bdf9-9b612969586d" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T045336Z:66f9dc25-a2fa-487a-b6d7-d9c1b4cfa7b0" + "SOUTHINDIA:20211115T031028Z:bdc31fb1-937f-4648-bdf9-9b612969586d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -311,11 +310,8 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:53:35 GMT" - ], "Content-Length": [ - "734" + "736" ], "Content-Type": [ "application/json; charset=utf-8" @@ -324,47 +320,50 @@ "-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-4006/providers/Microsoft.EventHub/namespaces/sdk-NS-3271\",\r\n \"name\": \"sdk-NS-3271\",\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 \"disableLocalAuth\": false,\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-3271\",\r\n \"createdAt\": \"2021-09-24T04:53:04.29Z\",\r\n \"updatedAt\": \"2021-09-24T04:53:04.29Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-3271.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-2958/providers/Microsoft.EventHub/namespaces/sdk-NS-5628\",\r\n \"name\": \"sdk-NS-5628\",\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 \"disableLocalAuth\": false,\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-5628\",\r\n \"createdAt\": \"2021-11-15T03:09:56.233Z\",\r\n \"updatedAt\": \"2021-11-15T03:09:56.233Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-5628.servicebus.windows.net:443/\",\r\n \"status\": \"Activating\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-4006/providers/Microsoft.EventHub/namespaces/sdk-NS-3271?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNDAwNi9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTMyNzE/YXBpLXZlcnNpb249MjAyMS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-2958/providers/Microsoft.EventHub/namespaces/sdk-NS-5628?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMjk1OC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTU2Mjg/YXBpLXZlcnNpb249MjAyMS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 03:10:57 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "1ec3b503-6555-4e9f-a57c-74429680b35f_M4SN1_M4SN1" + "a10faf69-7645-4795-ad7d-ee8c1a1d04df_M9SN1_M9SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11953" ], "x-ms-correlation-request-id": [ - "cf3dc383-4796-429c-bacf-3df945594685" + "5563b1e4-b695-4749-9800-eb431a8954c1" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T045406Z:cf3dc383-4796-429c-bacf-3df945594685" + "SOUTHINDIA:20211115T031058Z:5563b1e4-b695-4749-9800-eb431a8954c1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -372,11 +371,8 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:54:05 GMT" - ], "Content-Length": [ - "732" + "733" ], "Content-Type": [ "application/json; charset=utf-8" @@ -385,26 +381,26 @@ "-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-4006/providers/Microsoft.EventHub/namespaces/sdk-NS-3271\",\r\n \"name\": \"sdk-NS-3271\",\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 \"disableLocalAuth\": false,\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-3271\",\r\n \"createdAt\": \"2021-09-24T04:53:04.29Z\",\r\n \"updatedAt\": \"2021-09-24T04:53:52.43Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-3271.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-2958/providers/Microsoft.EventHub/namespaces/sdk-NS-5628\",\r\n \"name\": \"sdk-NS-5628\",\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 \"disableLocalAuth\": false,\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-5628\",\r\n \"createdAt\": \"2021-11-15T03:09:56.233Z\",\r\n \"updatedAt\": \"2021-11-15T03:10:50.35Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-5628.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-4006/providers/Microsoft.EventHub/namespaces/sdk-NS-3271/eventhubs/sdk-EventHub-6588?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNDAwNi9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTMyNzEvZXZlbnRodWJzL3Nkay1FdmVudEh1Yi02NTg4P2FwaS12ZXJzaW9uPTIwMjEtMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-2958/providers/Microsoft.EventHub/namespaces/sdk-NS-5628/eventhubs/sdk-EventHub-2510?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMjk1OC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTU2MjgvZXZlbnRodWJzL3Nkay1FdmVudEh1Yi0yNTEwP2FwaS12ZXJzaW9uPTIwMjEtMTEtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"messageRetentionInDays\": 5\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "f841cdfa-8aa3-484c-8c02-e8c5c5ec9d66" + "3586207c-415f-481a-b54b-71b37bd386fb" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -417,27 +413,30 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 03:11:05 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "73aee7c4-9128-43cb-94f8-f13e758ccc04_M4SN1_M4SN1" + "603909ca-472f-4e21-926b-113560eea30d_M9SN1_M9SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1196" ], "x-ms-correlation-request-id": [ - "e0b68fc3-f481-4971-84cb-a904ee0107ab" + "fd7dff95-41e2-41b7-af11-28d187e51969" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T045413Z:e0b68fc3-f481-4971-84cb-a904ee0107ab" + "SOUTHINDIA:20211115T031106Z:fd7dff95-41e2-41b7-af11-28d187e51969" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -445,11 +444,8 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:54:13 GMT" - ], "Content-Length": [ - "471" + "470" ], "Content-Type": [ "application/json; charset=utf-8" @@ -458,53 +454,56 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-4006/providers/Microsoft.EventHub/namespaces/sdk-NS-3271/eventhubs/sdk-EventHub-6588\",\r\n \"name\": \"sdk-EventHub-6588\",\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\": \"2021-09-24T04:54:13.153Z\",\r\n \"updatedAt\": \"2021-09-24T04:54:13.373Z\",\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-2958/providers/Microsoft.EventHub/namespaces/sdk-NS-5628/eventhubs/sdk-EventHub-2510\",\r\n \"name\": \"sdk-EventHub-2510\",\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\": \"2021-11-15T03:11:05.92Z\",\r\n \"updatedAt\": \"2021-11-15T03:11:06.243Z\",\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/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-4006/providers/Microsoft.EventHub/namespaces/sdk-NS-3271/eventhubs/sdk-EventHub-6588?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNDAwNi9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTMyNzEvZXZlbnRodWJzL3Nkay1FdmVudEh1Yi02NTg4P2FwaS12ZXJzaW9uPTIwMjEtMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-2958/providers/Microsoft.EventHub/namespaces/sdk-NS-5628/eventhubs/sdk-EventHub-2510?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMjk1OC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTU2MjgvZXZlbnRodWJzL3Nkay1FdmVudEh1Yi0yNTEwP2FwaS12ZXJzaW9uPTIwMjEtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0f8607fe-6aa5-4e0a-9a91-190a9969a666" + "bdaad562-aafd-4879-b83c-4f629159cbc6" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 03:11:06 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "c967de9b-c0a0-4602-9589-fa05744102f0_M4SN1_M4SN1" + "17de6f53-c6dc-4eea-864d-36ade72061e9_M9SN1_M9SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11952" ], "x-ms-correlation-request-id": [ - "5b76016e-e7a0-44e7-bb6b-b43c0a53069f" + "77dfdb7f-e7f3-4354-926b-05d928996ad4" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T045414Z:5b76016e-e7a0-44e7-bb6b-b43c0a53069f" + "SOUTHINDIA:20211115T031107Z:77dfdb7f-e7f3-4354-926b-05d928996ad4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -512,11 +511,8 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:54:13 GMT" - ], "Content-Length": [ - "469" + "468" ], "Content-Type": [ "application/json; charset=utf-8" @@ -525,26 +521,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-4006/providers/Microsoft.EventHub/namespaces/sdk-NS-3271/eventhubs/sdk-EventHub-6588\",\r\n \"name\": \"sdk-EventHub-6588\",\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\": \"2021-09-24T04:54:13.153\",\r\n \"updatedAt\": \"2021-09-24T04:54:13.373\",\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-2958/providers/Microsoft.EventHub/namespaces/sdk-NS-5628/eventhubs/sdk-EventHub-2510\",\r\n \"name\": \"sdk-EventHub-2510\",\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\": \"2021-11-15T03:11:05.92\",\r\n \"updatedAt\": \"2021-11-15T03:11:06.243\",\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/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-4006/providers/Microsoft.EventHub/namespaces/sdk-NS-3271/eventhubs/sdk-EventHub-6588/consumergroups/sdk-ConsumerGroup-2096?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNDAwNi9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTMyNzEvZXZlbnRodWJzL3Nkay1FdmVudEh1Yi02NTg4L2NvbnN1bWVyZ3JvdXBzL3Nkay1Db25zdW1lckdyb3VwLTIwOTY/YXBpLXZlcnNpb249MjAyMS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-2958/providers/Microsoft.EventHub/namespaces/sdk-NS-5628/eventhubs/sdk-EventHub-2510/consumergroups/sdk-ConsumerGroup-4433?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMjk1OC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTU2MjgvZXZlbnRodWJzL3Nkay1FdmVudEh1Yi0yNTEwL2NvbnN1bWVyZ3JvdXBzL3Nkay1Db25zdW1lckdyb3VwLTQ0MzM/YXBpLXZlcnNpb249MjAyMS0xMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"userMetadata\": \"Newly Created\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "8bf81f3b-2a20-4612-90b6-f240c96f697d" + "b1c9b0b5-1c84-4fba-b380-7eb9ed4356a5" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -557,27 +553,30 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 03:11:08 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "1f445983-32a1-478f-93b2-e79760113859_M4SN1_M4SN1" + "c08151ff-32d7-450a-a33b-1afe72e69c46_M9SN1_M9SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1195" ], "x-ms-correlation-request-id": [ - "a60cdc92-e869-4992-943a-7124b6026e3f" + "4b12a94e-3bf0-4994-822b-af9f0811bce9" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T045416Z:a60cdc92-e869-4992-943a-7124b6026e3f" + "SOUTHINDIA:20211115T031109Z:4b12a94e-3bf0-4994-822b-af9f0811bce9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -585,9 +584,6 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:54:15 GMT" - ], "Content-Length": [ "471" ], @@ -598,26 +594,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-4006/providers/Microsoft.EventHub/namespaces/sdk-NS-3271/eventhubs/sdk-EventHub-6588/consumergroups/sdk-ConsumerGroup-2096\",\r\n \"name\": \"sdk-ConsumerGroup-2096\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs/ConsumerGroups\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"createdAt\": \"2021-09-24T04:54:15.9556521Z\",\r\n \"updatedAt\": \"2021-09-24T04:54:15.9556521Z\",\r\n \"userMetadata\": \"Newly Created\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-2958/providers/Microsoft.EventHub/namespaces/sdk-NS-5628/eventhubs/sdk-EventHub-2510/consumergroups/sdk-ConsumerGroup-4433\",\r\n \"name\": \"sdk-ConsumerGroup-4433\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs/ConsumerGroups\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"createdAt\": \"2021-11-15T03:11:09.1136105Z\",\r\n \"updatedAt\": \"2021-11-15T03:11:09.1136105Z\",\r\n \"userMetadata\": \"Newly Created\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-4006/providers/Microsoft.EventHub/namespaces/sdk-NS-3271/eventhubs/sdk-EventHub-6588/consumergroups/sdk-ConsumerGroup-2096?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNDAwNi9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTMyNzEvZXZlbnRodWJzL3Nkay1FdmVudEh1Yi02NTg4L2NvbnN1bWVyZ3JvdXBzL3Nkay1Db25zdW1lckdyb3VwLTIwOTY/YXBpLXZlcnNpb249MjAyMS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-2958/providers/Microsoft.EventHub/namespaces/sdk-NS-5628/eventhubs/sdk-EventHub-2510/consumergroups/sdk-ConsumerGroup-4433?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMjk1OC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTU2MjgvZXZlbnRodWJzL3Nkay1FdmVudEh1Yi0yNTEwL2NvbnN1bWVyZ3JvdXBzL3Nkay1Db25zdW1lckdyb3VwLTQ0MzM/YXBpLXZlcnNpb249MjAyMS0xMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"userMetadata\": \"Updated the user meta data\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "e756b173-cda7-4cd8-8597-a16a112d3d6b" + "98364f75-0fc2-455c-8e71-d4b6177d0685" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -630,27 +626,30 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 03:11:10 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "f8aed017-4188-488f-89cc-f9ff59bff5ab_M4SN1_M4SN1" + "7f2df49f-1d6d-4851-8587-21db23d51dc2_M9SN1_M9SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1194" ], "x-ms-correlation-request-id": [ - "7c65b310-61dd-44c5-ba2f-96ef5891785b" + "e71a9cba-5c19-433a-9ddd-e359f1ed1e42" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T045417Z:7c65b310-61dd-44c5-ba2f-96ef5891785b" + "SOUTHINDIA:20211115T031111Z:e71a9cba-5c19-433a-9ddd-e359f1ed1e42" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -658,9 +657,6 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:54:16 GMT" - ], "Content-Length": [ "484" ], @@ -671,53 +667,56 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-4006/providers/Microsoft.EventHub/namespaces/sdk-NS-3271/eventhubs/sdk-EventHub-6588/consumergroups/sdk-ConsumerGroup-2096\",\r\n \"name\": \"sdk-ConsumerGroup-2096\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs/ConsumerGroups\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"createdAt\": \"2021-09-24T04:54:17.6119105Z\",\r\n \"updatedAt\": \"2021-09-24T04:54:17.6119105Z\",\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-2958/providers/Microsoft.EventHub/namespaces/sdk-NS-5628/eventhubs/sdk-EventHub-2510/consumergroups/sdk-ConsumerGroup-4433\",\r\n \"name\": \"sdk-ConsumerGroup-4433\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs/ConsumerGroups\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"createdAt\": \"2021-11-15T03:11:11.4424025Z\",\r\n \"updatedAt\": \"2021-11-15T03:11:11.4424025Z\",\r\n \"userMetadata\": \"Updated the user meta data\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-4006/providers/Microsoft.EventHub/namespaces/sdk-NS-3271/eventhubs/sdk-EventHub-6588/consumergroups/sdk-ConsumerGroup-2096?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNDAwNi9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTMyNzEvZXZlbnRodWJzL3Nkay1FdmVudEh1Yi02NTg4L2NvbnN1bWVyZ3JvdXBzL3Nkay1Db25zdW1lckdyb3VwLTIwOTY/YXBpLXZlcnNpb249MjAyMS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-2958/providers/Microsoft.EventHub/namespaces/sdk-NS-5628/eventhubs/sdk-EventHub-2510/consumergroups/sdk-ConsumerGroup-4433?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMjk1OC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTU2MjgvZXZlbnRodWJzL3Nkay1FdmVudEh1Yi0yNTEwL2NvbnN1bWVyZ3JvdXBzL3Nkay1Db25zdW1lckdyb3VwLTQ0MzM/YXBpLXZlcnNpb249MjAyMS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d8ea9916-a306-4891-9737-6708f7bcf3f0" + "eb629278-e203-49f0-a379-838a8711758a" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 03:11:09 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "534b1386-57cb-420a-980f-19324b59d4fe_M4SN1_M4SN1" + "6d5bbf5a-7e29-45f8-8e7f-7c996ae04e0a_M9SN1_M9SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11951" ], "x-ms-correlation-request-id": [ - "910d4d6d-4f00-49d4-84cb-fccd3b56ad2a" + "13b1f576-845d-466e-8bec-30644c3f6826" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T045416Z:910d4d6d-4f00-49d4-84cb-fccd3b56ad2a" + "SOUTHINDIA:20211115T031110Z:13b1f576-845d-466e-8bec-30644c3f6826" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -725,9 +724,6 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:54:15 GMT" - ], "Content-Length": [ "463" ], @@ -738,53 +734,56 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-4006/providers/Microsoft.EventHub/namespaces/sdk-NS-3271/eventhubs/sdk-EventHub-6588/consumergroups/sdk-ConsumerGroup-2096\",\r\n \"name\": \"sdk-ConsumerGroup-2096\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs/ConsumerGroups\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"createdAt\": \"2021-09-24T04:54:15.962Z\",\r\n \"updatedAt\": \"2021-09-24T04:54:15.962Z\",\r\n \"userMetadata\": \"Newly Created\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-2958/providers/Microsoft.EventHub/namespaces/sdk-NS-5628/eventhubs/sdk-EventHub-2510/consumergroups/sdk-ConsumerGroup-4433\",\r\n \"name\": \"sdk-ConsumerGroup-4433\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs/ConsumerGroups\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"createdAt\": \"2021-11-15T03:11:09.132Z\",\r\n \"updatedAt\": \"2021-11-15T03:11:09.132Z\",\r\n \"userMetadata\": \"Newly Created\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-4006/providers/Microsoft.EventHub/namespaces/sdk-NS-3271/eventhubs/sdk-EventHub-6588/consumergroups/sdk-ConsumerGroup-2096?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNDAwNi9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTMyNzEvZXZlbnRodWJzL3Nkay1FdmVudEh1Yi02NTg4L2NvbnN1bWVyZ3JvdXBzL3Nkay1Db25zdW1lckdyb3VwLTIwOTY/YXBpLXZlcnNpb249MjAyMS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-2958/providers/Microsoft.EventHub/namespaces/sdk-NS-5628/eventhubs/sdk-EventHub-2510/consumergroups/sdk-ConsumerGroup-4433?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMjk1OC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTU2MjgvZXZlbnRodWJzL3Nkay1FdmVudEh1Yi0yNTEwL2NvbnN1bWVyZ3JvdXBzL3Nkay1Db25zdW1lckdyb3VwLTQ0MzM/YXBpLXZlcnNpb249MjAyMS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b8f7fdae-b3b0-40d1-a191-a87bc34f68dc" + "8db89747-38c4-4f7f-a43e-6b700179f63d" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 03:11:11 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "4e852812-5a6f-4b9f-bca5-420c006012aa_M4SN1_M4SN1" + "d97c1f2d-80ac-4fdf-990c-ae31b7532a7c_M9SN1_M9SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11949" ], "x-ms-correlation-request-id": [ - "de3720ac-b1ce-4d8b-92d6-559580543ff4" + "994f0e65-f212-4ef0-b654-f87399d7dfb9" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T045418Z:de3720ac-b1ce-4d8b-92d6-559580543ff4" + "SOUTHINDIA:20211115T031112Z:994f0e65-f212-4ef0-b654-f87399d7dfb9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -792,9 +791,6 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:54:17 GMT" - ], "Content-Length": [ "476" ], @@ -805,56 +801,59 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-4006/providers/Microsoft.EventHub/namespaces/sdk-NS-3271/eventhubs/sdk-EventHub-6588/consumergroups/sdk-ConsumerGroup-2096\",\r\n \"name\": \"sdk-ConsumerGroup-2096\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs/ConsumerGroups\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"createdAt\": \"2021-09-24T04:54:15.962Z\",\r\n \"updatedAt\": \"2021-09-24T04:54:15.962Z\",\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-2958/providers/Microsoft.EventHub/namespaces/sdk-NS-5628/eventhubs/sdk-EventHub-2510/consumergroups/sdk-ConsumerGroup-4433\",\r\n \"name\": \"sdk-ConsumerGroup-4433\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs/ConsumerGroups\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"createdAt\": \"2021-11-15T03:11:09.127Z\",\r\n \"updatedAt\": \"2021-11-15T03:11:09.127Z\",\r\n \"userMetadata\": \"Updated the user meta data\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-4006/providers/Microsoft.EventHub/namespaces/sdk-NS-3271/eventhubs/sdk-EventHub-6588/consumergroups?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNDAwNi9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTMyNzEvZXZlbnRodWJzL3Nkay1FdmVudEh1Yi02NTg4L2NvbnN1bWVyZ3JvdXBzP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-2958/providers/Microsoft.EventHub/namespaces/sdk-NS-5628/eventhubs/sdk-EventHub-2510/consumergroups?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMjk1OC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTU2MjgvZXZlbnRodWJzL3Nkay1FdmVudEh1Yi0yNTEwL2NvbnN1bWVyZ3JvdXBzP2FwaS12ZXJzaW9uPTIwMjEtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c71b5964-dcc5-48c4-8baa-01f166571557" + "ef2c03f6-430f-4a6e-ab5d-e12afca5612f" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 03:11:09 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-inline-count": [ "" ], "x-ms-request-id": [ - "44baba6f-ada9-44ab-872f-c807170e2186_M4SN1_M4SN1" + "be5204ee-2e04-4ade-943e-0089554f4f78_M9SN1_M9SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11950" ], "x-ms-correlation-request-id": [ - "bbb71c49-9cd0-4f45-bfe9-a1d8758d4c3a" + "1655f8f5-053d-442f-b106-288a87236b4a" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T045416Z:bbb71c49-9cd0-4f45-bfe9-a1d8758d4c3a" + "SOUTHINDIA:20211115T031110Z:1655f8f5-053d-442f-b106-288a87236b4a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -862,9 +861,6 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:54:16 GMT" - ], "Content-Length": [ "880" ], @@ -875,53 +871,56 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-4006/providers/Microsoft.EventHub/namespaces/sdk-NS-3271/eventhubs/sdk-EventHub-6588/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\": \"2021-09-24T04:54:13.203Z\",\r\n \"updatedAt\": \"2021-09-24T04:54:13.203Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-4006/providers/Microsoft.EventHub/namespaces/sdk-NS-3271/eventhubs/sdk-EventHub-6588/consumergroups/sdk-consumergroup-2096\",\r\n \"name\": \"sdk-consumergroup-2096\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs/ConsumerGroups\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"createdAt\": \"2021-09-24T04:54:15.959Z\",\r\n \"updatedAt\": \"2021-09-24T04:54:15.959Z\",\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-2958/providers/Microsoft.EventHub/namespaces/sdk-NS-5628/eventhubs/sdk-EventHub-2510/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\": \"2021-11-15T03:11:05.976Z\",\r\n \"updatedAt\": \"2021-11-15T03:11:05.976Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-2958/providers/Microsoft.EventHub/namespaces/sdk-NS-5628/eventhubs/sdk-EventHub-2510/consumergroups/sdk-consumergroup-4433\",\r\n \"name\": \"sdk-consumergroup-4433\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs/ConsumerGroups\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"createdAt\": \"2021-11-15T03:11:09.132Z\",\r\n \"updatedAt\": \"2021-11-15T03:11:09.132Z\",\r\n \"userMetadata\": \"Newly Created\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-4006/providers/Microsoft.EventHub/namespaces/sdk-NS-3271/eventhubs/sdk-EventHub-6588/consumergroups/sdk-ConsumerGroup-2096?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNDAwNi9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTMyNzEvZXZlbnRodWJzL3Nkay1FdmVudEh1Yi02NTg4L2NvbnN1bWVyZ3JvdXBzL3Nkay1Db25zdW1lckdyb3VwLTIwOTY/YXBpLXZlcnNpb249MjAyMS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-2958/providers/Microsoft.EventHub/namespaces/sdk-NS-5628/eventhubs/sdk-EventHub-2510/consumergroups/sdk-ConsumerGroup-4433?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMjk1OC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTU2MjgvZXZlbnRodWJzL3Nkay1FdmVudEh1Yi0yNTEwL2NvbnN1bWVyZ3JvdXBzL3Nkay1Db25zdW1lckdyb3VwLTQ0MzM/YXBpLXZlcnNpb249MjAyMS0xMS0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "28f57319-e61c-4f56-be22-c6cda3d8ad92" + "e5da3085-565a-45aa-a8a2-04baf0a784eb" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 03:11:12 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "0a3cc3cb-8e55-49e9-a495-47787003fc89_M4SN1_M4SN1" + "2d9a7125-e9ef-44d7-a403-2a66811431a7_M9SN1_M9SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" + "14995" ], "x-ms-correlation-request-id": [ - "2b122471-56b0-47e4-b37e-4e685e6bda5d" + "81c81a4d-15db-471c-b956-9598bfca4477" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T045418Z:2b122471-56b0-47e4-b37e-4e685e6bda5d" + "SOUTHINDIA:20211115T031113Z:81c81a4d-15db-471c-b956-9598bfca4477" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -929,63 +928,63 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:54:17 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-4006/providers/Microsoft.EventHub/namespaces/sdk-NS-3271/eventhubs/sdk-EventHub-6588?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNDAwNi9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTMyNzEvZXZlbnRodWJzL3Nkay1FdmVudEh1Yi02NTg4P2FwaS12ZXJzaW9uPTIwMjEtMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-2958/providers/Microsoft.EventHub/namespaces/sdk-NS-5628/eventhubs/sdk-EventHub-2510?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMjk1OC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTU2MjgvZXZlbnRodWJzL3Nkay1FdmVudEh1Yi0yNTEwP2FwaS12ZXJzaW9uPTIwMjEtMTEtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f4f6aa98-d111-49cb-8ad0-2d206d319fbe" + "1642167a-0a0d-414b-b9c8-3c6916530982" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 03:11:15 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "1cb07f69-296c-4906-995e-5bb032cda154_M4SN1_M4SN1" + "de2d5100-9e33-4f9d-9453-ffe02201add2_M9SN1_M9SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14998" + "14994" ], "x-ms-correlation-request-id": [ - "6d326839-8d4d-4af2-b201-80c12e79b165" + "c48f44f2-1b6b-4468-bffd-450af192ab57" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T045420Z:6d326839-8d4d-4af2-b201-80c12e79b165" + "SOUTHINDIA:20211115T031115Z:c48f44f2-1b6b-4468-bffd-450af192ab57" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -993,66 +992,66 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:54:19 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-4006/providers/Microsoft.EventHub/namespaces/sdk-NS-3271?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNDAwNi9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTMyNzE/YXBpLXZlcnNpb249MjAyMS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-2958/providers/Microsoft.EventHub/namespaces/sdk-NS-5628?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMjk1OC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTU2Mjg/YXBpLXZlcnNpb249MjAyMS0xMS0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "30f3facf-e455-4c25-b56e-7f926250cec0" + "a94dfed9-927d-4a7d-9808-8cbf3c71b2e7" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 03:11:16 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-4006/providers/Microsoft.EventHub/namespaces/sdk-NS-3271/operationresults/sdk-NS-3271?api-version=2021-06-01-preview" + "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-2958/providers/Microsoft.EventHub/namespaces/sdk-NS-5628/operationresults/sdk-NS-5628?api-version=2021-11-01" + ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "5fba97e4-577e-4476-86f0-043dddc9b8bd_M4SN1_M4SN1" + "02174e0a-e67e-496c-a258-a6ae89c76c26_M9SN1_M9SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14997" + "14993" ], "x-ms-correlation-request-id": [ - "94da65f1-3661-4b33-b4d6-a2fb6328d497" + "27560bf0-131e-425d-8be8-b99cbe1d5e1b" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T045422Z:94da65f1-3661-4b33-b4d6-a2fb6328d497" + "SOUTHINDIA:20211115T031116Z:27560bf0-131e-425d-8be8-b99cbe1d5e1b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1060,57 +1059,57 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:54:21 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-4006/providers/Microsoft.EventHub/namespaces/sdk-NS-3271/operationresults/sdk-NS-3271?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNDAwNi9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTMyNzEvb3BlcmF0aW9ucmVzdWx0cy9zZGstTlMtMzI3MT9hcGktdmVyc2lvbj0yMDIxLTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-2958/providers/Microsoft.EventHub/namespaces/sdk-NS-5628/operationresults/sdk-NS-5628?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMjk1OC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTU2Mjgvb3BlcmF0aW9ucmVzdWx0cy9zZGstTlMtNTYyOD9hcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 03:11:46 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "5ebc1fc2-9a9d-49ec-bf83-3f01383a0b41_M4SN1_M4SN1" + "ae4284bc-2525-4b9a-a5ff-6bbff2bc1b3b_M9SN1_M9SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11948" ], "x-ms-correlation-request-id": [ - "5c5f2bec-3dfd-4684-a1c8-075d16a30f4b" + "cc324982-3d33-4e31-8aec-e812301bf45d" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T045452Z:5c5f2bec-3dfd-4684-a1c8-075d16a30f4b" + "SOUTHINDIA:20211115T031147Z:cc324982-3d33-4e31-8aec-e812301bf45d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1118,57 +1117,57 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:54:52 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-4006/providers/Microsoft.EventHub/namespaces/sdk-NS-3271/operationresults/sdk-NS-3271?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNDAwNi9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTMyNzEvb3BlcmF0aW9ucmVzdWx0cy9zZGstTlMtMzI3MT9hcGktdmVyc2lvbj0yMDIxLTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-2958/providers/Microsoft.EventHub/namespaces/sdk-NS-5628/operationresults/sdk-NS-5628?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMjk1OC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTU2Mjgvb3BlcmF0aW9ucmVzdWx0cy9zZGstTlMtNTYyOD9hcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 03:11:46 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "1049e633-f49b-4c8e-b714-9d57a66c689e_M4SN1_M4SN1" + "55d415b7-3bda-44e7-95ae-da0d5ccba958_M9SN1_M9SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11947" ], "x-ms-correlation-request-id": [ - "be3338d4-c444-448c-92d5-83d62f111187" + "f0173b46-0244-4130-ac9d-d27743430c94" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T045452Z:be3338d4-c444-448c-92d5-83d62f111187" + "SOUTHINDIA:20211115T031147Z:f0173b46-0244-4130-ac9d-d27743430c94" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1176,89 +1175,23 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:54:52 GMT" - ], - "Expires": [ - "-1" - ], "Content-Length": [ "0" - ] - }, - "ResponseBody": "", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/Default-EventHub-4006?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlZ3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNDAwNj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", - "RequestMethod": "DELETE", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "5c5ccc28-4a0d-4d27-84a4-57abfe19855a" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.27817.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1ERUZBVUxUOjJERVZFTlRIVUI6MkQ0MDA2LUFVU1RSQUxJQUVBU1QiLCJqb2JMb2NhdGlvbiI6ImF1c3RyYWxpYWVhc3QifQ?api-version=2015-11-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" - ], - "x-ms-request-id": [ - "187e34b7-8750-4b39-bdbb-a12dc4435d40" - ], - "x-ms-correlation-request-id": [ - "187e34b7-8750-4b39-bdbb-a12dc4435d40" - ], - "x-ms-routing-request-id": [ - "WESTUS:20210924T045455Z:187e34b7-8750-4b39-bdbb-a12dc4435d40" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 24 Sep 2021 04:54:54 GMT" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", - "StatusCode": 202 + "StatusCode": 200 } ], "Names": { "ConsumerGroupsCreateGetUpdateDelete": [ - "Default-EventHub-4006", - "sdk-NS-3271", - "sdk-EventHub-6588", - "sdk-ConsumerGroup-2096" + "Default-EventHub-2958", + "sdk-NS-5628", + "sdk-EventHub-2510", + "sdk-ConsumerGroup-4433" ] }, "Variables": { 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 53167f821e52..53d474ce5eed 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 @@ -7,15 +7,15 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "253415c7-e4a2-4da4-a07e-690561fc7645" + "1759740c-0b9b-42ee-a370-ff1add466503" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", + "OSVersion/Microsoft.Windows.10.0.22000.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -23,6 +23,9 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:49:55 GMT" + ], "Pragma": [ "no-cache" ], @@ -30,13 +33,13 @@ "11999" ], "x-ms-request-id": [ - "0b986557-cb1e-423c-b99d-0a56eb338174" + "b52c9277-65d5-419d-99b3-618453202eba" ], "x-ms-correlation-request-id": [ - "0b986557-cb1e-423c-b99d-0a56eb338174" + "b52c9277-65d5-419d-99b3-618453202eba" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T043751Z:0b986557-cb1e-423c-b99d-0a56eb338174" + "SOUTHINDIA:20211115T024956Z:b52c9277-65d5-419d-99b3-618453202eba" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -44,101 +47,35 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:37:50 GMT" + "Content-Length": [ + "4451" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" - ], - "Content-Length": [ - "4274" ] }, - "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 \"Jio India West\",\r\n \"West US 3\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"UAE Central\",\r\n \"Norway West\",\r\n \"Sweden Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01-preview\",\r\n \"2021-01-01-preview\",\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 \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"UAE Central\",\r\n \"Norway West\",\r\n \"Sweden 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 \"2021-06-01-preview\",\r\n \"2021-01-01-preview\",\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 },\r\n {\r\n \"resourceType\": \"namespaces/networkrulesets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-06-01-preview\",\r\n \"2021-01-01-preview\",\r\n \"2018-01-01-preview\",\r\n \"2017-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/privateEndpointConnections\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-06-01-preview\",\r\n \"2021-01-01-preview\",\r\n \"2018-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/eventhubs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-06-01-preview\",\r\n \"2021-01-01-preview\",\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 },\r\n {\r\n \"resourceType\": \"namespaces/eventhubs/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-06-01-preview\",\r\n \"2021-01-01-preview\",\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 },\r\n {\r\n \"resourceType\": \"namespaces/eventhubs/consumergroups\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-06-01-preview\",\r\n \"2021-01-01-preview\",\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 },\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 \"2021-06-01-preview\",\r\n \"2021-01-01-preview\",\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 },\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 \"2021-06-01-preview\",\r\n \"2021-01-01-preview\",\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 },\r\n {\r\n \"resourceType\": \"namespaces/disasterrecoveryconfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-06-01-preview\",\r\n \"2021-01-01-preview\",\r\n \"2018-01-01-preview\",\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 \"2021-06-01-preview\",\r\n \"2021-01-01-preview\",\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 },\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}", + "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 \"Jio India West\",\r\n \"West US 3\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"UAE Central\",\r\n \"Norway West\",\r\n \"Sweden Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-11-01\",\r\n \"2021-06-01-preview\",\r\n \"2021-01-01-preview\",\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 \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"UAE Central\",\r\n \"Norway West\",\r\n \"Sweden Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-11-01\",\r\n \"2021-06-01-preview\",\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 \"2021-11-01\",\r\n \"2021-06-01-preview\",\r\n \"2021-01-01-preview\",\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 },\r\n {\r\n \"resourceType\": \"namespaces/networkrulesets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-11-01\",\r\n \"2021-06-01-preview\",\r\n \"2021-01-01-preview\",\r\n \"2018-01-01-preview\",\r\n \"2017-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/privateEndpointConnections\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-11-01\",\r\n \"2021-06-01-preview\",\r\n \"2021-01-01-preview\",\r\n \"2018-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/eventhubs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-11-01\",\r\n \"2021-06-01-preview\",\r\n \"2021-01-01-preview\",\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 },\r\n {\r\n \"resourceType\": \"namespaces/eventhubs/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-11-01\",\r\n \"2021-06-01-preview\",\r\n \"2021-01-01-preview\",\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 },\r\n {\r\n \"resourceType\": \"namespaces/eventhubs/consumergroups\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-11-01\",\r\n \"2021-06-01-preview\",\r\n \"2021-01-01-preview\",\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 },\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 \"2021-11-01\",\r\n \"2021-06-01-preview\",\r\n \"2021-01-01-preview\",\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 },\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 \"2021-11-01\",\r\n \"2021-06-01-preview\",\r\n \"2021-01-01-preview\",\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 },\r\n {\r\n \"resourceType\": \"namespaces/disasterrecoveryconfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-11-01\",\r\n \"2021-06-01-preview\",\r\n \"2021-01-01-preview\",\r\n \"2018-01-01-preview\",\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 \"2021-11-01\",\r\n \"2021-06-01-preview\",\r\n \"2021-01-01-preview\",\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 },\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/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/Default-EventHub-4305?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlZ3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNDMwNT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", - "RequestMethod": "DELETE", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "073bf66a-22ee-4558-b6d3-f35656fb6c43" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.27817.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1ERUZBVUxUOjJERVZFTlRIVUI6MkQ0MzA1LUFVU1RSQUxJQUVBU1QiLCJqb2JMb2NhdGlvbiI6ImF1c3RyYWxpYWVhc3QifQ?api-version=2015-11-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" - ], - "x-ms-request-id": [ - "e07df2c4-3044-4db6-9c42-964b9aac5710" - ], - "x-ms-correlation-request-id": [ - "e07df2c4-3044-4db6-9c42-964b9aac5710" - ], - "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210924T043751Z:e07df2c4-3044-4db6-9c42-964b9aac5710" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 24 Sep 2021 04:37:51 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/Default-EventHub-6728?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlZ3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNjcyOD9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/Default-EventHub-8610?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlZ3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItODYxMD9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"Australia East\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "7a10bfdc-ae2e-4a5c-8d44-11531e80b62a" + "0e0399ef-7c6b-4a0e-9af8-810fed35b3ae" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", + "OSVersion/Microsoft.Windows.10.0.22000.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ], "Content-Type": [ @@ -152,6 +89,9 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:49:58 GMT" + ], "Pragma": [ "no-cache" ], @@ -159,13 +99,13 @@ "1199" ], "x-ms-request-id": [ - "7c97d3c5-2d69-4ab4-9baa-930c3878e1b6" + "1d80b708-2012-49b5-9f77-ae0542bd22b4" ], "x-ms-correlation-request-id": [ - "7c97d3c5-2d69-4ab4-9baa-930c3878e1b6" + "1d80b708-2012-49b5-9f77-ae0542bd22b4" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T043754Z:7c97d3c5-2d69-4ab4-9baa-930c3878e1b6" + "SOUTHINDIA:20211115T024959Z:1d80b708-2012-49b5-9f77-ae0542bd22b4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -173,9 +113,6 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:37:53 GMT" - ], "Content-Length": [ "202" ], @@ -186,26 +123,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-6728\",\r\n \"name\": \"Default-EventHub-6728\",\r\n \"location\": \"australiaeast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8610\",\r\n \"name\": \"Default-EventHub-8610\",\r\n \"location\": \"australiaeast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-6728/providers/Microsoft.EventHub/namespaces/sdk-NS-2262?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNjcyOC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTIyNjI/YXBpLXZlcnNpb249MjAyMS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8610/providers/Microsoft.EventHub/namespaces/sdk-NS-5667?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItODYxMC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTU2Njc/YXBpLXZlcnNpb249MjAyMS0xMS0wMQ==", "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": [ - "642fac0f-f9a8-4a22-8c7a-fcfd1d88c67c" + "3b8869d3-e370-44c5-b898-9e783174a7b0" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -218,27 +155,30 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:50:07 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "3153e763-881c-4bc9-b2af-d5e773c437be_M6SN1_M6SN1" + "4e1d4f2a-0889-4e73-97b6-264f48c52642_M6CH3_M6CH3" ], "Server-SB": [ - "Service-Bus-Resource-Provider/SN1" - ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" + "Service-Bus-Resource-Provider/CH3" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "49" ], "x-ms-correlation-request-id": [ - "14894c9b-c2f3-4802-9cdd-85fd28c2c169" + "ef7769c0-4971-4e75-bad8-71fe1f380720" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T043801Z:14894c9b-c2f3-4802-9cdd-85fd28c2c169" + "SOUTHINDIA:20211115T025007Z:ef7769c0-4971-4e75-bad8-71fe1f380720" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -246,9 +186,6 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:38:00 GMT" - ], "Content-Length": [ "734" ], @@ -259,47 +196,50 @@ "-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-6728/providers/Microsoft.EventHub/namespaces/sdk-NS-2262\",\r\n \"name\": \"sdk-NS-2262\",\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 \"disableLocalAuth\": false,\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-2262\",\r\n \"createdAt\": \"2021-09-24T04:37:59.14Z\",\r\n \"updatedAt\": \"2021-09-24T04:37:59.14Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-2262.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-8610/providers/Microsoft.EventHub/namespaces/sdk-NS-5667\",\r\n \"name\": \"sdk-NS-5667\",\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 \"disableLocalAuth\": false,\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-5667\",\r\n \"createdAt\": \"2021-11-15T02:50:06.03Z\",\r\n \"updatedAt\": \"2021-11-15T02:50:06.03Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-5667.servicebus.windows.net:443/\",\r\n \"status\": \"Activating\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-6728/providers/Microsoft.EventHub/namespaces/sdk-NS-2262?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNjcyOC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTIyNjI/YXBpLXZlcnNpb249MjAyMS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8610/providers/Microsoft.EventHub/namespaces/sdk-NS-5667?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItODYxMC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTU2Njc/YXBpLXZlcnNpb249MjAyMS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:50:37 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "b8068c70-44ae-4ab4-9c9c-66b25e4d43ed_M6SN1_M6SN1" + "2d68627a-b8d5-467d-93d1-163f88f331b3_M6CH3_M6CH3" ], "Server-SB": [ - "Service-Bus-Resource-Provider/SN1" - ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" + "Service-Bus-Resource-Provider/CH3" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11999" ], "x-ms-correlation-request-id": [ - "0c29efd0-2123-4061-90ec-37c1f6519737" + "eed60754-359d-4714-a700-e9484fde5841" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T043831Z:0c29efd0-2123-4061-90ec-37c1f6519737" + "SOUTHINDIA:20211115T025037Z:eed60754-359d-4714-a700-e9484fde5841" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -307,9 +247,6 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:38:30 GMT" - ], "Content-Length": [ "734" ], @@ -320,47 +257,50 @@ "-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-6728/providers/Microsoft.EventHub/namespaces/sdk-NS-2262\",\r\n \"name\": \"sdk-NS-2262\",\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 \"disableLocalAuth\": false,\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-2262\",\r\n \"createdAt\": \"2021-09-24T04:37:59.14Z\",\r\n \"updatedAt\": \"2021-09-24T04:37:59.14Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-2262.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-8610/providers/Microsoft.EventHub/namespaces/sdk-NS-5667\",\r\n \"name\": \"sdk-NS-5667\",\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 \"disableLocalAuth\": false,\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-5667\",\r\n \"createdAt\": \"2021-11-15T02:50:06.03Z\",\r\n \"updatedAt\": \"2021-11-15T02:50:06.03Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-5667.servicebus.windows.net:443/\",\r\n \"status\": \"Activating\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-6728/providers/Microsoft.EventHub/namespaces/sdk-NS-2262?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNjcyOC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTIyNjI/YXBpLXZlcnNpb249MjAyMS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8610/providers/Microsoft.EventHub/namespaces/sdk-NS-5667?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItODYxMC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTU2Njc/YXBpLXZlcnNpb249MjAyMS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:51:08 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "a770d7d8-3982-48d6-ab2f-38bf09df0cf4_M6SN1_M6SN1" + "b66bebc7-afdc-4474-9dfa-96d4cd93ba5b_M6CH3_M6CH3" ], "Server-SB": [ - "Service-Bus-Resource-Provider/SN1" - ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" + "Service-Bus-Resource-Provider/CH3" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11998" ], "x-ms-correlation-request-id": [ - "9f9642d7-a2f0-489b-acfc-ad44f6ac2699" + "a6738410-1a03-465e-8022-c7ea9b6acc7d" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T043901Z:9f9642d7-a2f0-489b-acfc-ad44f6ac2699" + "SOUTHINDIA:20211115T025108Z:a6738410-1a03-465e-8022-c7ea9b6acc7d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -368,9 +308,6 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:39:01 GMT" - ], "Content-Length": [ "733" ], @@ -381,26 +318,26 @@ "-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-6728/providers/Microsoft.EventHub/namespaces/sdk-NS-2262\",\r\n \"name\": \"sdk-NS-2262\",\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 \"disableLocalAuth\": false,\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-2262\",\r\n \"createdAt\": \"2021-09-24T04:37:59.14Z\",\r\n \"updatedAt\": \"2021-09-24T04:38:48.217Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-2262.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-8610/providers/Microsoft.EventHub/namespaces/sdk-NS-5667\",\r\n \"name\": \"sdk-NS-5667\",\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 \"disableLocalAuth\": false,\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-5667\",\r\n \"createdAt\": \"2021-11-15T02:50:06.03Z\",\r\n \"updatedAt\": \"2021-11-15T02:50:58.603Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-5667.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-6728/providers/Microsoft.EventHub/namespaces/sdk-NS-2262/eventhubs/sdk-EventHub-?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNjcyOC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTIyNjIvZXZlbnRodWJzL3Nkay1FdmVudEh1Yi0/YXBpLXZlcnNpb249MjAyMS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8610/providers/Microsoft.EventHub/namespaces/sdk-NS-5667/eventhubs/sdk-EventHub-?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItODYxMC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTU2NjcvZXZlbnRodWJzL3Nkay1FdmVudEh1Yi0/YXBpLXZlcnNpb249MjAyMS0xMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"messageRetentionInDays\": 5\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "a5896deb-66d0-4ce4-b6e3-d9043f3e1f40" + "4a07a09e-d0fc-4093-8e9c-76df6f52eaae" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -413,27 +350,30 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:51:17 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "da6a9579-2f67-471b-b3fc-aeacab2e9a24_M6SN1_M6SN1" + "5beb735a-1c9f-4b4a-a27d-771ed10bf57d_M6CH3_M6CH3" ], "Server-SB": [ - "Service-Bus-Resource-Provider/SN1" - ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" + "Service-Bus-Resource-Provider/CH3" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1199" ], "x-ms-correlation-request-id": [ - "36ff763c-ce46-41a2-aa18-015742d97431" + "6e0afc4d-75b4-41b9-9da7-3a605b0a9228" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T043909Z:36ff763c-ce46-41a2-aa18-015742d97431" + "SOUTHINDIA:20211115T025117Z:6e0afc4d-75b4-41b9-9da7-3a605b0a9228" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -441,11 +381,8 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:39:09 GMT" - ], "Content-Length": [ - "461" + "462" ], "Content-Type": [ "application/json; charset=utf-8" @@ -454,53 +391,56 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-6728/providers/Microsoft.EventHub/namespaces/sdk-NS-2262/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\": \"2021-09-24T04:39:08.98Z\",\r\n \"updatedAt\": \"2021-09-24T04:39:09.31Z\",\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-8610/providers/Microsoft.EventHub/namespaces/sdk-NS-5667/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\": \"2021-11-15T02:51:16.727Z\",\r\n \"updatedAt\": \"2021-11-15T02:51:16.96Z\",\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/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-6728/providers/Microsoft.EventHub/namespaces/sdk-NS-2262/eventhubs/sdk-EventHub-?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNjcyOC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTIyNjIvZXZlbnRodWJzL3Nkay1FdmVudEh1Yi0/YXBpLXZlcnNpb249MjAyMS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8610/providers/Microsoft.EventHub/namespaces/sdk-NS-5667/eventhubs/sdk-EventHub-?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItODYxMC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTU2NjcvZXZlbnRodWJzL3Nkay1FdmVudEh1Yi0/YXBpLXZlcnNpb249MjAyMS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "02d0e7d0-62b6-47ec-b708-9694e50e88bf" + "78644054-ec95-4ba6-8f55-815653250f05" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:51:19 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "4634d29a-7ce6-42b1-bc92-2874151e359e_M6SN1_M6SN1" + "f351fd29-1b12-4bf2-91c0-73e1cbd09d66_M4CH3_M4CH3" ], "Server-SB": [ - "Service-Bus-Resource-Provider/SN1" - ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" + "Service-Bus-Resource-Provider/CH3" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11997" ], "x-ms-correlation-request-id": [ - "3b5b4698-6898-4ca4-a4d4-4958c55df2da" + "d4a6939c-f8e4-4c48-a5f6-742eec1099ab" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T043911Z:3b5b4698-6898-4ca4-a4d4-4958c55df2da" + "SOUTHINDIA:20211115T025120Z:d4a6939c-f8e4-4c48-a5f6-742eec1099ab" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -508,11 +448,8 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:39:10 GMT" - ], "Content-Length": [ - "459" + "460" ], "Content-Type": [ "application/json; charset=utf-8" @@ -521,26 +458,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-6728/providers/Microsoft.EventHub/namespaces/sdk-NS-2262/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\": \"2021-09-24T04:39:08.98\",\r\n \"updatedAt\": \"2021-09-24T04:39:09.31\",\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-8610/providers/Microsoft.EventHub/namespaces/sdk-NS-5667/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\": \"2021-11-15T02:51:16.727\",\r\n \"updatedAt\": \"2021-11-15T02:51:16.96\",\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/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-6728/providers/Microsoft.EventHub/namespaces/sdk-NS-2262/eventhubs/sdk-EventHub-/consumergroups/sdk-ConsumerGroup-?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNjcyOC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTIyNjIvZXZlbnRodWJzL3Nkay1FdmVudEh1Yi0vY29uc3VtZXJncm91cHMvc2RrLUNvbnN1bWVyR3JvdXAtP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8610/providers/Microsoft.EventHub/namespaces/sdk-NS-5667/eventhubs/sdk-EventHub-/consumergroups/sdk-ConsumerGroup-?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItODYxMC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTU2NjcvZXZlbnRodWJzL3Nkay1FdmVudEh1Yi0vY29uc3VtZXJncm91cHMvc2RrLUNvbnN1bWVyR3JvdXAtP2FwaS12ZXJzaW9uPTIwMjEtMTEtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"userMetadata\": \"Newly Created\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "19f60d9a-9ee9-45f9-ac4c-8d0db1e77e4c" + "78fc7212-306b-41e6-b6b1-1f688685f814" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -553,27 +490,30 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:51:22 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "f297ec78-4e62-4819-9fe3-b611a65b40ee_M6SN1_M6SN1" + "397b3ec8-d78c-4922-84fe-496c76d62889_M4CH3_M4CH3" ], "Server-SB": [ - "Service-Bus-Resource-Provider/SN1" - ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" + "Service-Bus-Resource-Provider/CH3" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1198" ], "x-ms-correlation-request-id": [ - "807a584c-c244-497e-8600-effe536a712b" + "d810c108-340d-4c2d-bade-6070c1191be7" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T043913Z:807a584c-c244-497e-8600-effe536a712b" + "SOUTHINDIA:20211115T025122Z:d810c108-340d-4c2d-bade-6070c1191be7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -581,9 +521,6 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:39:12 GMT" - ], "Content-Length": [ "459" ], @@ -594,26 +531,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-6728/providers/Microsoft.EventHub/namespaces/sdk-NS-2262/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\": \"2021-09-24T04:39:12.7756456Z\",\r\n \"updatedAt\": \"2021-09-24T04:39:12.7756456Z\",\r\n \"userMetadata\": \"Newly Created\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8610/providers/Microsoft.EventHub/namespaces/sdk-NS-5667/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\": \"2021-11-15T02:51:22.1321811Z\",\r\n \"updatedAt\": \"2021-11-15T02:51:22.1321811Z\",\r\n \"userMetadata\": \"Newly Created\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-6728/providers/Microsoft.EventHub/namespaces/sdk-NS-2262/eventhubs/sdk-EventHub-/consumergroups/sdk-ConsumerGroup-?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNjcyOC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTIyNjIvZXZlbnRodWJzL3Nkay1FdmVudEh1Yi0vY29uc3VtZXJncm91cHMvc2RrLUNvbnN1bWVyR3JvdXAtP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8610/providers/Microsoft.EventHub/namespaces/sdk-NS-5667/eventhubs/sdk-EventHub-/consumergroups/sdk-ConsumerGroup-?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItODYxMC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTU2NjcvZXZlbnRodWJzL3Nkay1FdmVudEh1Yi0vY29uc3VtZXJncm91cHMvc2RrLUNvbnN1bWVyR3JvdXAtP2FwaS12ZXJzaW9uPTIwMjEtMTEtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"userMetadata\": \"Updated the user meta data\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "3c9d09a1-cf03-460d-99e1-4dc3ce2c913d" + "5aa0b064-3347-4e36-945d-0e7389efb523" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -626,27 +563,30 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:51:24 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "b78a0661-fe83-42d1-9abc-a4b57610717c_M6SN1_M6SN1" + "97f3374c-2338-479d-bf88-36edfc596a84_M4CH3_M4CH3" ], "Server-SB": [ - "Service-Bus-Resource-Provider/SN1" - ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" + "Service-Bus-Resource-Provider/CH3" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1197" ], "x-ms-correlation-request-id": [ - "eb565fe4-3006-48f5-9a6c-8cde2d5c5f7b" + "a5087686-20f2-4c93-a785-0ac262b592a4" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T043914Z:eb565fe4-3006-48f5-9a6c-8cde2d5c5f7b" + "SOUTHINDIA:20211115T025124Z:a5087686-20f2-4c93-a785-0ac262b592a4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -654,9 +594,6 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:39:14 GMT" - ], "Content-Length": [ "472" ], @@ -667,53 +604,56 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-6728/providers/Microsoft.EventHub/namespaces/sdk-NS-2262/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\": \"2021-09-24T04:39:14.6681068Z\",\r\n \"updatedAt\": \"2021-09-24T04:39:14.6681068Z\",\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-8610/providers/Microsoft.EventHub/namespaces/sdk-NS-5667/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\": \"2021-11-15T02:51:24.3196673Z\",\r\n \"updatedAt\": \"2021-11-15T02:51:24.3196673Z\",\r\n \"userMetadata\": \"Updated the user meta data\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-6728/providers/Microsoft.EventHub/namespaces/sdk-NS-2262/eventhubs/sdk-EventHub-/consumergroups/sdk-ConsumerGroup-?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNjcyOC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTIyNjIvZXZlbnRodWJzL3Nkay1FdmVudEh1Yi0vY29uc3VtZXJncm91cHMvc2RrLUNvbnN1bWVyR3JvdXAtP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8610/providers/Microsoft.EventHub/namespaces/sdk-NS-5667/eventhubs/sdk-EventHub-/consumergroups/sdk-ConsumerGroup-?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItODYxMC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTU2NjcvZXZlbnRodWJzL3Nkay1FdmVudEh1Yi0vY29uc3VtZXJncm91cHMvc2RrLUNvbnN1bWVyR3JvdXAtP2FwaS12ZXJzaW9uPTIwMjEtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d2686bd0-6a94-48c2-9e29-949705b3e6ae" + "158ac2de-8f7b-43dd-9444-41c58b315b58" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:51:22 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "964076f8-01c2-43ea-b65d-fe0573147ec3_M6SN1_M6SN1" + "9c88464a-bc28-40a9-97f7-9cb1106faf1f_M4CH3_M4CH3" ], "Server-SB": [ - "Service-Bus-Resource-Provider/SN1" - ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" + "Service-Bus-Resource-Provider/CH3" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11996" ], "x-ms-correlation-request-id": [ - "33d4a131-4fef-4916-853f-ab4674e34f30" + "f2f862e6-218f-4f50-8b17-e236fe8555e2" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T043913Z:33d4a131-4fef-4916-853f-ab4674e34f30" + "SOUTHINDIA:20211115T025123Z:f2f862e6-218f-4f50-8b17-e236fe8555e2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -721,9 +661,6 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:39:13 GMT" - ], "Content-Length": [ "451" ], @@ -734,53 +671,56 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-6728/providers/Microsoft.EventHub/namespaces/sdk-NS-2262/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\": \"2021-09-24T04:39:12.789Z\",\r\n \"updatedAt\": \"2021-09-24T04:39:12.789Z\",\r\n \"userMetadata\": \"Newly Created\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8610/providers/Microsoft.EventHub/namespaces/sdk-NS-5667/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\": \"2021-11-15T02:51:22.147Z\",\r\n \"updatedAt\": \"2021-11-15T02:51:22.147Z\",\r\n \"userMetadata\": \"Newly Created\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-6728/providers/Microsoft.EventHub/namespaces/sdk-NS-2262/eventhubs/sdk-EventHub-/consumergroups/sdk-ConsumerGroup-?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNjcyOC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTIyNjIvZXZlbnRodWJzL3Nkay1FdmVudEh1Yi0vY29uc3VtZXJncm91cHMvc2RrLUNvbnN1bWVyR3JvdXAtP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8610/providers/Microsoft.EventHub/namespaces/sdk-NS-5667/eventhubs/sdk-EventHub-/consumergroups/sdk-ConsumerGroup-?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItODYxMC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTU2NjcvZXZlbnRodWJzL3Nkay1FdmVudEh1Yi0vY29uc3VtZXJncm91cHMvc2RrLUNvbnN1bWVyR3JvdXAtP2FwaS12ZXJzaW9uPTIwMjEtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "685220ee-fbdd-4a7a-af42-20f74037de3d" + "f1aec978-0998-462d-9b9a-232d5a589029" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:51:24 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "b6cf9896-d6ac-4c52-b2cb-af4de76066e0_M6SN1_M6SN1" + "f4e5abdb-361f-44b7-aa87-284b758de8ac_M4CH3_M4CH3" ], "Server-SB": [ - "Service-Bus-Resource-Provider/SN1" - ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" + "Service-Bus-Resource-Provider/CH3" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11994" ], "x-ms-correlation-request-id": [ - "94caaad6-f2fc-44ff-950a-2f19b581b2ad" + "91f20902-2b81-4681-85a9-8372fff34ee7" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T043915Z:94caaad6-f2fc-44ff-950a-2f19b581b2ad" + "SOUTHINDIA:20211115T025125Z:91f20902-2b81-4681-85a9-8372fff34ee7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -788,9 +728,6 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:39:14 GMT" - ], "Content-Length": [ "464" ], @@ -801,56 +738,59 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-6728/providers/Microsoft.EventHub/namespaces/sdk-NS-2262/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\": \"2021-09-24T04:39:12.789Z\",\r\n \"updatedAt\": \"2021-09-24T04:39:12.789Z\",\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-8610/providers/Microsoft.EventHub/namespaces/sdk-NS-5667/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\": \"2021-11-15T02:51:22.148Z\",\r\n \"updatedAt\": \"2021-11-15T02:51:22.148Z\",\r\n \"userMetadata\": \"Updated the user meta data\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-6728/providers/Microsoft.EventHub/namespaces/sdk-NS-2262/eventhubs/sdk-EventHub-/consumergroups?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNjcyOC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTIyNjIvZXZlbnRodWJzL3Nkay1FdmVudEh1Yi0vY29uc3VtZXJncm91cHM/YXBpLXZlcnNpb249MjAyMS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8610/providers/Microsoft.EventHub/namespaces/sdk-NS-5667/eventhubs/sdk-EventHub-/consumergroups?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItODYxMC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTU2NjcvZXZlbnRodWJzL3Nkay1FdmVudEh1Yi0vY29uc3VtZXJncm91cHM/YXBpLXZlcnNpb249MjAyMS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "48fe8ceb-7c6c-4c82-9fdf-f7b6f402fda7" + "51558ac5-8522-42b7-9877-c7658b05143a" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:51:23 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-inline-count": [ "" ], "x-ms-request-id": [ - "a2cccf95-2825-4df0-a7cf-be98747ca1fc_M6SN1_M6SN1" + "4df038e7-63a2-4dce-86c9-3dc3fa646cd9_M4CH3_M4CH3" ], "Server-SB": [ - "Service-Bus-Resource-Provider/SN1" - ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" + "Service-Bus-Resource-Provider/CH3" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11995" ], "x-ms-correlation-request-id": [ - "1f77b8ae-28ea-46b3-b3b1-03f0e0a5b920" + "cfd041f2-1cc4-433b-85dd-571684833fac" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T043913Z:1f77b8ae-28ea-46b3-b3b1-03f0e0a5b920" + "SOUTHINDIA:20211115T025123Z:cfd041f2-1cc4-433b-85dd-571684833fac" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -858,9 +798,6 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:39:13 GMT" - ], "Content-Length": [ "864" ], @@ -871,53 +808,56 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-6728/providers/Microsoft.EventHub/namespaces/sdk-NS-2262/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\": \"2021-09-24T04:39:09.043Z\",\r\n \"updatedAt\": \"2021-09-24T04:39:09.043Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-6728/providers/Microsoft.EventHub/namespaces/sdk-NS-2262/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\": \"2021-09-24T04:39:12.783Z\",\r\n \"updatedAt\": \"2021-09-24T04:39:12.783Z\",\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-8610/providers/Microsoft.EventHub/namespaces/sdk-NS-5667/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\": \"2021-11-15T02:51:16.819Z\",\r\n \"updatedAt\": \"2021-11-15T02:51:16.819Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8610/providers/Microsoft.EventHub/namespaces/sdk-NS-5667/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\": \"2021-11-15T02:51:22.148Z\",\r\n \"updatedAt\": \"2021-11-15T02:51:22.148Z\",\r\n \"userMetadata\": \"Newly Created\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-6728/providers/Microsoft.EventHub/namespaces/sdk-NS-2262/eventhubs/sdk-EventHub-/consumergroups/sdk-ConsumerGroup-?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNjcyOC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTIyNjIvZXZlbnRodWJzL3Nkay1FdmVudEh1Yi0vY29uc3VtZXJncm91cHMvc2RrLUNvbnN1bWVyR3JvdXAtP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8610/providers/Microsoft.EventHub/namespaces/sdk-NS-5667/eventhubs/sdk-EventHub-/consumergroups/sdk-ConsumerGroup-?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItODYxMC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTU2NjcvZXZlbnRodWJzL3Nkay1FdmVudEh1Yi0vY29uc3VtZXJncm91cHMvc2RrLUNvbnN1bWVyR3JvdXAtP2FwaS12ZXJzaW9uPTIwMjEtMTEtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2a436b43-170e-49dc-95c1-c68ae4e08f4a" + "681929ea-8579-4745-87c4-ff7d7238466f" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:51:25 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "07bdfb9a-5f3f-4acc-96be-41585681d4c3_M6SN1_M6SN1" + "c2ff718b-82af-4252-afb2-98f6364fd47d_M4CH3_M4CH3" ], "Server-SB": [ - "Service-Bus-Resource-Provider/SN1" - ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" + "Service-Bus-Resource-Provider/CH3" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14999" ], "x-ms-correlation-request-id": [ - "e186d47e-93b6-47a3-b4f9-e2a5ee02df66" + "184cdb25-aabf-42fc-b936-185f8a8c77dd" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T043915Z:e186d47e-93b6-47a3-b4f9-e2a5ee02df66" + "SOUTHINDIA:20211115T025125Z:184cdb25-aabf-42fc-b936-185f8a8c77dd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -925,63 +865,63 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:39:15 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-6728/providers/Microsoft.EventHub/namespaces/sdk-NS-2262/eventhubs/sdk-EventHub-?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNjcyOC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTIyNjIvZXZlbnRodWJzL3Nkay1FdmVudEh1Yi0/YXBpLXZlcnNpb249MjAyMS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8610/providers/Microsoft.EventHub/namespaces/sdk-NS-5667/eventhubs/sdk-EventHub-?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItODYxMC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTU2NjcvZXZlbnRodWJzL3Nkay1FdmVudEh1Yi0/YXBpLXZlcnNpb249MjAyMS0xMS0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4621cef7-36af-40a3-b7dc-3c381db198d7" + "30a5eb0f-0512-4219-adfc-6e1d76569a18" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:51:27 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "de371aa3-8b6c-4f94-83e5-e93d01eebacc_M6SN1_M6SN1" + "d81406b0-d712-4a5c-a37a-009e97691483_M4CH3_M4CH3" ], "Server-SB": [ - "Service-Bus-Resource-Provider/SN1" - ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" + "Service-Bus-Resource-Provider/CH3" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14998" ], "x-ms-correlation-request-id": [ - "eaca7b03-dfc3-40af-a4dd-b1a8a2eef7e6" + "3b111ae6-4b38-4faa-8440-2b08bec44855" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T043917Z:eaca7b03-dfc3-40af-a4dd-b1a8a2eef7e6" + "SOUTHINDIA:20211115T025128Z:3b111ae6-4b38-4faa-8440-2b08bec44855" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -989,66 +929,66 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:39:17 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-6728/providers/Microsoft.EventHub/namespaces/sdk-NS-2262?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNjcyOC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTIyNjI/YXBpLXZlcnNpb249MjAyMS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8610/providers/Microsoft.EventHub/namespaces/sdk-NS-5667?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItODYxMC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTU2Njc/YXBpLXZlcnNpb249MjAyMS0xMS0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b7ab88a8-d56d-4069-9f35-d637c95ba0db" + "f9ca4849-af37-4620-b098-cadc33508e84" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:51:28 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-6728/providers/Microsoft.EventHub/namespaces/sdk-NS-2262/operationresults/sdk-NS-2262?api-version=2021-06-01-preview" + "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8610/providers/Microsoft.EventHub/namespaces/sdk-NS-5667/operationresults/sdk-NS-5667?api-version=2021-11-01" + ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "011c6b8e-7440-4e14-a89c-64b145755859_M8SN1_M8SN1" + "8f2879df-7e64-417b-ab47-5a9c40fd7335_M4CH3_M4CH3" ], "Server-SB": [ - "Service-Bus-Resource-Provider/SN1" - ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" + "Service-Bus-Resource-Provider/CH3" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14997" ], "x-ms-correlation-request-id": [ - "22cbe28c-40df-4e1f-a6c8-d3e78e4f023a" + "d45d06b6-1282-4006-a00c-bc666ea9b0d5" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T043921Z:22cbe28c-40df-4e1f-a6c8-d3e78e4f023a" + "SOUTHINDIA:20211115T025129Z:d45d06b6-1282-4006-a00c-bc666ea9b0d5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1056,57 +996,57 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:39:21 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-6728/providers/Microsoft.EventHub/namespaces/sdk-NS-2262/operationresults/sdk-NS-2262?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNjcyOC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTIyNjIvb3BlcmF0aW9ucmVzdWx0cy9zZGstTlMtMjI2Mj9hcGktdmVyc2lvbj0yMDIxLTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8610/providers/Microsoft.EventHub/namespaces/sdk-NS-5667/operationresults/sdk-NS-5667?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItODYxMC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTU2Njcvb3BlcmF0aW9ucmVzdWx0cy9zZGstTlMtNTY2Nz9hcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:51:59 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "e8fd19a8-8d03-4477-9970-0854c8fa1f27_M6SN1_M6SN1" + "6bfc1c28-5348-48c1-b9fc-9c0659e254fb_M4CH3_M4CH3" ], "Server-SB": [ - "Service-Bus-Resource-Provider/SN1" - ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" + "Service-Bus-Resource-Provider/CH3" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11993" ], "x-ms-correlation-request-id": [ - "3f344bae-0de0-4a62-a791-3b6006aa5ef1" + "4474ab20-d3d8-4a4d-a44c-94879399283e" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T043951Z:3f344bae-0de0-4a62-a791-3b6006aa5ef1" + "SOUTHINDIA:20211115T025159Z:4474ab20-d3d8-4a4d-a44c-94879399283e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1114,57 +1054,57 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:39:51 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-6728/providers/Microsoft.EventHub/namespaces/sdk-NS-2262/operationresults/sdk-NS-2262?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNjcyOC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTIyNjIvb3BlcmF0aW9ucmVzdWx0cy9zZGstTlMtMjI2Mj9hcGktdmVyc2lvbj0yMDIxLTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8610/providers/Microsoft.EventHub/namespaces/sdk-NS-5667/operationresults/sdk-NS-5667?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItODYxMC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTU2Njcvb3BlcmF0aW9ucmVzdWx0cy9zZGstTlMtNTY2Nz9hcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:51:59 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "dcbc6a0c-cd86-432e-90f9-efcf9871ea35_M6SN1_M6SN1" + "fa5899e5-4ff9-41b2-a542-e7516d7d9eed_M4CH3_M4CH3" ], "Server-SB": [ - "Service-Bus-Resource-Provider/SN1" - ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" + "Service-Bus-Resource-Provider/CH3" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11992" ], "x-ms-correlation-request-id": [ - "03cd6509-fc0f-4181-b1c4-4cbd986a3084" + "81c58b66-75c1-4577-8862-0f150da1a3e0" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T043951Z:03cd6509-fc0f-4181-b1c4-4cbd986a3084" + "SOUTHINDIA:20211115T025200Z:81c58b66-75c1-4577-8862-0f150da1a3e0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1172,87 +1112,21 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:39:51 GMT" - ], - "Expires": [ - "-1" - ], "Content-Length": [ "0" - ] - }, - "ResponseBody": "", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/Default-EventHub-6728?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlZ3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNjcyOD9hcGktdmVyc2lvbj0yMDE1LTExLTAx", - "RequestMethod": "DELETE", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "8ab39ee6-b1bb-4333-8c3f-24f1dfe63036" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.27817.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1ERUZBVUxUOjJERVZFTlRIVUI6MkQ2NzI4LUFVU1RSQUxJQUVBU1QiLCJqb2JMb2NhdGlvbiI6ImF1c3RyYWxpYWVhc3QifQ?api-version=2015-11-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" - ], - "x-ms-request-id": [ - "e5f71b40-7808-4332-9d79-a02d12285d70" - ], - "x-ms-correlation-request-id": [ - "e5f71b40-7808-4332-9d79-a02d12285d70" - ], - "x-ms-routing-request-id": [ - "WESTUS:20210924T043954Z:e5f71b40-7808-4332-9d79-a02d12285d70" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 24 Sep 2021 04:39:54 GMT" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", - "StatusCode": 202 + "StatusCode": 200 } ], "Names": { "ConsumerGroupsCreateGetUpdateDelete_Length": [ - "Default-EventHub-6728", - "sdk-NS-2262" + "Default-EventHub-8610", + "sdk-NS-5667" ] }, "Variables": { 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 index 1d61d3ab3728..799b63b3c5da 100644 --- a/sdk/eventhub/Microsoft.Azure.Management.EventHub/tests/SessionRecords/ScenarioTests/DedicatedClusterGetCreateNamespace.json +++ b/sdk/eventhub/Microsoft.Azure.Management.EventHub/tests/SessionRecords/ScenarioTests/DedicatedClusterGetCreateNamespace.json @@ -1,21 +1,21 @@ { "Entries": [ { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/v-ajnavtest/providers/Microsoft.EventHub/clusters/PMTestCluster1?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL3YtYWpuYXZ0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvY2x1c3RlcnMvUE1UZXN0Q2x1c3RlcjE/YXBpLXZlcnNpb249MjAyMS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/v-ajnavtest/providers/Microsoft.EventHub/clusters/PMTestCluster1?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL3YtYWpuYXZ0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvY2x1c3RlcnMvUE1UZXN0Q2x1c3RlcjE/YXBpLXZlcnNpb249MjAyMS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9d06989a-6ee6-4722-8211-94b965ac2f0e" + "be8d24bb-f833-48d7-a552-d3da8067a4eb" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", + "OSVersion/Microsoft.Windows.10.0.22000.", "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, @@ -23,27 +23,30 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:17:57 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "ffafc895-2486-4580-a769-57794fc20ef0_M5SN1_M5SN1" + "2a6a9470-4536-4732-8bb3-e2972dc7c97c_M3SN1_M3SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ "11999" ], "x-ms-correlation-request-id": [ - "e8ba9562-2747-4ac3-86aa-29b0aba21e0e" + "c3fbf47b-30a2-42a1-9a94-7bfc4cb4472a" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210927T002145Z:e8ba9562-2747-4ac3-86aa-29b0aba21e0e" + "SOUTHINDIA:20211115T021758Z:c3fbf47b-30a2-42a1-9a94-7bfc4cb4472a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,9 +54,6 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Mon, 27 Sep 2021 00:21:44 GMT" - ], "Content-Length": [ "391" ], @@ -68,21 +68,21 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.EventHub/checkNameAvailability?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvY2hlY2tOYW1lQXZhaWxhYmlsaXR5P2FwaS12ZXJzaW9uPTIwMjEtMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.EventHub/checkNameAvailability?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvY2hlY2tOYW1lQXZhaWxhYmlsaXR5P2FwaS12ZXJzaW9uPTIwMjEtMTEtMDE=", "RequestMethod": "POST", - "RequestBody": "{\r\n \"name\": \"sdk-NS-7728\"\r\n}", + "RequestBody": "{\r\n \"name\": \"sdk-NS-8670\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "381daf33-1a9c-4849-82c0-8d0293db2960" + "94fa91a3-72f6-4815-a9fd-63abb0d30703" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", + "OSVersion/Microsoft.Windows.10.0.22000.", "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ], "Content-Type": [ @@ -96,27 +96,30 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:17:58 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "c1829507-211e-4c77-bc9d-b18b8fcb1ad2_M8SN1_M8SN1" + "33c3a120-eb19-44b0-bf87-48600a74f515_M1SN1_M1SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], "x-ms-correlation-request-id": [ - "40a84565-4d9f-449d-b1db-607d3c4223d1" + "3c216e92-c4a2-41d2-b826-cc112d3b6c19" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210927T002147Z:40a84565-4d9f-449d-b1db-607d3c4223d1" + "SOUTHINDIA:20211115T021759Z:3c216e92-c4a2-41d2-b826-cc112d3b6c19" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -124,9 +127,6 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Mon, 27 Sep 2021 00:21:46 GMT" - ], "Content-Length": [ "53" ], @@ -141,21 +141,21 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/v-ajnavtest/providers/Microsoft.EventHub/namespaces/sdk-NS-7728?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL3YtYWpuYXZ0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTlMtNzcyOD9hcGktdmVyc2lvbj0yMDIxLTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/v-ajnavtest/providers/Microsoft.EventHub/namespaces/sdk-NS-8670?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL3YtYWpuYXZ0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTlMtODY3MD9hcGktdmVyc2lvbj0yMDIxLTExLTAx", "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/v-ajnavtest/providers/Microsoft.EventHub/clusters/PMTestCluster1\",\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0\r\n },\r\n \"location\": \"West US 2\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "6b58d61e-2445-40fd-970d-2276790a5093" + "fad2d104-680f-4ba7-bb81-8a72917a601e" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", + "OSVersion/Microsoft.Windows.10.0.22000.", "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ], "Content-Type": [ @@ -169,27 +169,30 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:18:08 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "db852058-6a02-4503-aa66-bf15a99eb878_M2SN1_M2SN1" + "000169fb-3767-452f-9578-b87c5d041e69_M1SN1_M1SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "49" ], "x-ms-correlation-request-id": [ - "d2fa73b0-8c16-4c3d-bd84-d57fdc99e94b" + "97dceaf2-04c2-4327-afa8-f6a8ea6ae303" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210927T002154Z:d2fa73b0-8c16-4c3d-bd84-d57fdc99e94b" + "SOUTHINDIA:20211115T021808Z:97dceaf2-04c2-4327-afa8-f6a8ea6ae303" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -197,9 +200,6 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Mon, 27 Sep 2021 00:21:53 GMT" - ], "Content-Length": [ "1021" ], @@ -210,19 +210,19 @@ "-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/v-ajnavtest/providers/Microsoft.EventHub/namespaces/sdk-NS-7728\",\r\n \"name\": \"sdk-NS-7728\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"identity\": {\r\n \"principalId\": \"96967467-e23f-442e-a4a0-dccea7044fd7\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"clusterArmId\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/v-ajnavtest/providers/Microsoft.EventHub/clusters/PMTestCluster1\",\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"ActivatingIdentity\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:sdk-ns-7728\",\r\n \"createdAt\": \"2021-09-27T00:21:53.463Z\",\r\n \"updatedAt\": \"2021-09-27T00:21:53.463Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-7728.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/v-ajnavtest/providers/Microsoft.EventHub/namespaces/sdk-NS-8670\",\r\n \"name\": \"sdk-NS-8670\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"identity\": {\r\n \"principalId\": \"f9717772-6b9e-4a59-b4ce-9162ad94f05e\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"clusterArmId\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/v-ajnavtest/providers/Microsoft.EventHub/clusters/PMTestCluster1\",\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"ActivatingIdentity\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:sdk-ns-8670\",\r\n \"createdAt\": \"2021-11-15T02:18:06.507Z\",\r\n \"updatedAt\": \"2021-11-15T02:18:06.507Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-8670.servicebus.windows.net:443/\",\r\n \"status\": \"Activating\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/v-ajnavtest/providers/Microsoft.EventHub/namespaces/sdk-NS-7728?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL3YtYWpuYXZ0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTlMtNzcyOD9hcGktdmVyc2lvbj0yMDIxLTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/v-ajnavtest/providers/Microsoft.EventHub/namespaces/sdk-NS-8670?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL3YtYWpuYXZ0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTlMtODY3MD9hcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", + "OSVersion/Microsoft.Windows.10.0.22000.", "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, @@ -230,27 +230,30 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:18:38 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "53173198-139a-43f0-bb8a-dfa8cb083b55_M9SN1_M9SN1" + "14c3fca5-e97e-465f-9df1-88ff7cfe86cd_M9CH3_M9CH3" ], "Server-SB": [ - "Service-Bus-Resource-Provider/SN1" - ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" + "Service-Bus-Resource-Provider/CH3" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11998" ], "x-ms-correlation-request-id": [ - "15589d8e-3d5f-4fc8-b9ae-b124ab1842d0" + "82caca7b-228b-40eb-b72f-0a10daae416b" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210927T002224Z:15589d8e-3d5f-4fc8-b9ae-b124ab1842d0" + "SOUTHINDIA:20211115T021838Z:82caca7b-228b-40eb-b72f-0a10daae416b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -258,9 +261,6 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Mon, 27 Sep 2021 00:22:24 GMT" - ], "Content-Length": [ "1021" ], @@ -271,19 +271,19 @@ "-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/v-ajnavtest/providers/Microsoft.EventHub/namespaces/sdk-NS-7728\",\r\n \"name\": \"sdk-NS-7728\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"identity\": {\r\n \"principalId\": \"96967467-e23f-442e-a4a0-dccea7044fd7\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"clusterArmId\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/v-ajnavtest/providers/Microsoft.EventHub/clusters/PMTestCluster1\",\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"ActivatingIdentity\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:sdk-ns-7728\",\r\n \"createdAt\": \"2021-09-27T00:21:53.463Z\",\r\n \"updatedAt\": \"2021-09-27T00:21:53.463Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-7728.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/v-ajnavtest/providers/Microsoft.EventHub/namespaces/sdk-NS-8670\",\r\n \"name\": \"sdk-NS-8670\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"identity\": {\r\n \"principalId\": \"f9717772-6b9e-4a59-b4ce-9162ad94f05e\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"clusterArmId\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/v-ajnavtest/providers/Microsoft.EventHub/clusters/PMTestCluster1\",\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"ActivatingIdentity\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:sdk-ns-8670\",\r\n \"createdAt\": \"2021-11-15T02:18:06.507Z\",\r\n \"updatedAt\": \"2021-11-15T02:18:06.507Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-8670.servicebus.windows.net:443/\",\r\n \"status\": \"Activating\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/v-ajnavtest/providers/Microsoft.EventHub/namespaces/sdk-NS-7728?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL3YtYWpuYXZ0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTlMtNzcyOD9hcGktdmVyc2lvbj0yMDIxLTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/v-ajnavtest/providers/Microsoft.EventHub/namespaces/sdk-NS-8670?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL3YtYWpuYXZ0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTlMtODY3MD9hcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", + "OSVersion/Microsoft.Windows.10.0.22000.", "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, @@ -291,27 +291,30 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:19:09 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "434af0a2-cf30-4904-92ae-eae1dfcb1b07_M5SN1_M5SN1" + "16401e6a-b7b2-4b7e-bc3f-79b9251b899f_M9CH3_M9CH3" ], "Server-SB": [ - "Service-Bus-Resource-Provider/SN1" - ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" + "Service-Bus-Resource-Provider/CH3" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11997" ], "x-ms-correlation-request-id": [ - "29f67054-8934-45bb-81a6-c83feafbde07" + "28d53d5e-2b88-4d03-9f6d-d23df89ce78d" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210927T002255Z:29f67054-8934-45bb-81a6-c83feafbde07" + "SOUTHINDIA:20211115T021909Z:28d53d5e-2b88-4d03-9f6d-d23df89ce78d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -319,11 +322,8 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Mon, 27 Sep 2021 00:22:54 GMT" - ], "Content-Length": [ - "1017" + "1016" ], "Content-Type": [ "application/json; charset=utf-8" @@ -332,19 +332,19 @@ "-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/v-ajnavtest/providers/Microsoft.EventHub/namespaces/sdk-NS-7728\",\r\n \"name\": \"sdk-NS-7728\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"identity\": {\r\n \"principalId\": \"96967467-e23f-442e-a4a0-dccea7044fd7\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"clusterArmId\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/v-ajnavtest/providers/Microsoft.EventHub/clusters/PMTestCluster1\",\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"ActivatingIdentity\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:sdk-ns-7728\",\r\n \"createdAt\": \"2021-09-27T00:21:53.463Z\",\r\n \"updatedAt\": \"2021-09-27T00:22:41.393Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-7728.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/v-ajnavtest/providers/Microsoft.EventHub/namespaces/sdk-NS-8670\",\r\n \"name\": \"sdk-NS-8670\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"identity\": {\r\n \"principalId\": \"f9717772-6b9e-4a59-b4ce-9162ad94f05e\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"clusterArmId\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/v-ajnavtest/providers/Microsoft.EventHub/clusters/PMTestCluster1\",\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"ActivatingIdentity\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:sdk-ns-8670\",\r\n \"createdAt\": \"2021-11-15T02:18:06.507Z\",\r\n \"updatedAt\": \"2021-11-15T02:18:56.13Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-8670.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/v-ajnavtest/providers/Microsoft.EventHub/namespaces/sdk-NS-7728?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL3YtYWpuYXZ0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTlMtNzcyOD9hcGktdmVyc2lvbj0yMDIxLTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/v-ajnavtest/providers/Microsoft.EventHub/namespaces/sdk-NS-8670?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL3YtYWpuYXZ0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTlMtODY3MD9hcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", + "OSVersion/Microsoft.Windows.10.0.22000.", "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, @@ -352,27 +352,30 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:19:39 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "382cb9c5-5112-4a48-9dbf-c7d62f777ad3_M9SN1_M9SN1" + "6b248896-20d8-43d5-98e2-c298e8ca1a9b_M9CH3_M9CH3" ], "Server-SB": [ - "Service-Bus-Resource-Provider/SN1" - ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" + "Service-Bus-Resource-Provider/CH3" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11996" ], "x-ms-correlation-request-id": [ - "0cd9f585-bffa-4f29-b572-5d4e9211a31a" + "3f6758f0-3107-46e2-b8a7-c1bb448e5152" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210927T002325Z:0cd9f585-bffa-4f29-b572-5d4e9211a31a" + "SOUTHINDIA:20211115T021939Z:3f6758f0-3107-46e2-b8a7-c1bb448e5152" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -380,11 +383,8 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Mon, 27 Sep 2021 00:23:25 GMT" - ], "Content-Length": [ - "1007" + "1008" ], "Content-Type": [ "application/json; charset=utf-8" @@ -393,13 +393,13 @@ "-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/v-ajnavtest/providers/Microsoft.EventHub/namespaces/sdk-NS-7728\",\r\n \"name\": \"sdk-NS-7728\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"identity\": {\r\n \"principalId\": \"96967467-e23f-442e-a4a0-dccea7044fd7\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"clusterArmId\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/v-ajnavtest/providers/Microsoft.EventHub/clusters/PMTestCluster1\",\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:sdk-ns-7728\",\r\n \"createdAt\": \"2021-09-27T00:21:53.463Z\",\r\n \"updatedAt\": \"2021-09-27T00:23:02.08Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-7728.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/v-ajnavtest/providers/Microsoft.EventHub/namespaces/sdk-NS-8670\",\r\n \"name\": \"sdk-NS-8670\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"identity\": {\r\n \"principalId\": \"f9717772-6b9e-4a59-b4ce-9162ad94f05e\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"clusterArmId\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/v-ajnavtest/providers/Microsoft.EventHub/clusters/PMTestCluster1\",\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:sdk-ns-8670\",\r\n \"createdAt\": \"2021-11-15T02:18:06.507Z\",\r\n \"updatedAt\": \"2021-11-15T02:19:13.643Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-8670.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n}", "StatusCode": 200 } ], "Names": { "DedicatedClusterGetCreateNamespace": [ - "sdk-NS-7728" + "sdk-NS-8670" ] }, "Variables": { 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 536ac3bb314a..5388943cbbca 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,21 +1,21 @@ { "Entries": [ { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/Default-EventHub-4646?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlZ3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNDY0Nj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/Default-EventHub-5204?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlZ3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNTIwND9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fe2ae780-a3c7-4098-9b6d-bc7e9d8f2cd2" + "092e49a2-972c-4204-9ef9-acb4a4e408ee" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", + "OSVersion/Microsoft.Windows.10.0.22000.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -23,11 +23,14 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:25:50 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1ERUZBVUxUOjJERVZFTlRIVUI6MkQ0NjQ2LUFVU1RSQUxJQUVBU1QiLCJqb2JMb2NhdGlvbiI6ImF1c3RyYWxpYWVhc3QifQ?api-version=2015-11-01" + "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1ERUZBVUxUOjJERVZFTlRIVUI6MkQ1MjA0LUFVU1RSQUxJQUVBU1QiLCJqb2JMb2NhdGlvbiI6ImF1c3RyYWxpYWVhc3QifQ?api-version=2015-11-01" ], "Retry-After": [ "15" @@ -36,13 +39,13 @@ "14999" ], "x-ms-request-id": [ - "83ea8512-1a10-4359-baff-132aa591c06a" + "308fb17c-20a3-4090-93e5-029e2128568d" ], "x-ms-correlation-request-id": [ - "83ea8512-1a10-4359-baff-132aa591c06a" + "308fb17c-20a3-4090-93e5-029e2128568d" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T041526Z:83ea8512-1a10-4359-baff-132aa591c06a" + "SOUTHINDIA:20211115T022550Z:308fb17c-20a3-4090-93e5-029e2128568d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -50,35 +53,32 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:15:26 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/Default-EventHub-8823?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlZ3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItODgyMz9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/Default-EventHub-6839?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlZ3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNjgzOT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"South Central US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "ad2c2457-1ec8-48a2-8749-23b51d4beb7d" + "1b7671fa-d41a-4c02-81ed-d0a4f2a4e6cc" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", + "OSVersion/Microsoft.Windows.10.0.22000.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ], "Content-Type": [ @@ -92,6 +92,9 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:25:54 GMT" + ], "Pragma": [ "no-cache" ], @@ -99,13 +102,13 @@ "1199" ], "x-ms-request-id": [ - "1bd016c8-cd92-44e7-ba0e-9a367a4deefe" + "f1191ddd-3701-428a-9236-2cf3bf7fd2c4" ], "x-ms-correlation-request-id": [ - "1bd016c8-cd92-44e7-ba0e-9a367a4deefe" + "f1191ddd-3701-428a-9236-2cf3bf7fd2c4" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T041527Z:1bd016c8-cd92-44e7-ba0e-9a367a4deefe" + "SOUTHINDIA:20211115T022554Z:f1191ddd-3701-428a-9236-2cf3bf7fd2c4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -113,9 +116,6 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:15:26 GMT" - ], "Content-Length": [ "203" ], @@ -126,26 +126,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8823\",\r\n \"name\": \"Default-EventHub-8823\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-6839\",\r\n \"name\": \"Default-EventHub-6839\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8823/providers/Microsoft.EventHub/namespaces/sdk-NS-3160?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItODgyMy9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTMxNjA/YXBpLXZlcnNpb249MjAyMS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-6839/providers/Microsoft.EventHub/namespaces/sdk-NS-7350?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNjgzOS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTczNTA/YXBpLXZlcnNpb249MjAyMS0xMS0wMQ==", "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": [ - "ccf0d1db-7af4-4c78-81cb-6be584d48e70" + "226116bf-6610-4ddf-952f-2c18d9bf24cb" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -158,27 +158,30 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:26:05 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "62324c9d-f7fd-4a52-8eef-ef60e02b7aa5_M5SN1_M5SN1" + "18ea652a-91a2-417f-a923-9a651fc53a7c_M3SN1_M3SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "49" + "48" ], "x-ms-correlation-request-id": [ - "71db8beb-1953-40d4-a7f1-2b21af806126" + "b6ff68eb-aa39-406d-bf9b-2af1f4651f24" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T041530Z:71db8beb-1953-40d4-a7f1-2b21af806126" + "SOUTHINDIA:20211115T022605Z:b6ff68eb-aa39-406d-bf9b-2af1f4651f24" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -186,9 +189,6 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:15:29 GMT" - ], "Content-Length": [ "738" ], @@ -199,47 +199,50 @@ "-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-8823/providers/Microsoft.EventHub/namespaces/sdk-NS-3160\",\r\n \"name\": \"sdk-NS-3160\",\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 \"disableLocalAuth\": false,\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-3160\",\r\n \"createdAt\": \"2021-09-24T04:15:29.257Z\",\r\n \"updatedAt\": \"2021-09-24T04:15:29.257Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-3160.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-6839/providers/Microsoft.EventHub/namespaces/sdk-NS-7350\",\r\n \"name\": \"sdk-NS-7350\",\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 \"disableLocalAuth\": false,\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-7350\",\r\n \"createdAt\": \"2021-11-15T02:26:02.147Z\",\r\n \"updatedAt\": \"2021-11-15T02:26:02.147Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-7350.servicebus.windows.net:443/\",\r\n \"status\": \"Activating\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8823/providers/Microsoft.EventHub/namespaces/sdk-NS-3160?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItODgyMy9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTMxNjA/YXBpLXZlcnNpb249MjAyMS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-6839/providers/Microsoft.EventHub/namespaces/sdk-NS-7350?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNjgzOS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTczNTA/YXBpLXZlcnNpb249MjAyMS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:26:35 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "31ad070b-71d1-4738-9377-4945e9d8abbc_M0SN1_M0SN1" + "0cc63050-7552-45c0-9bcf-0e4402c544aa_M3SN1_M3SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11995" ], "x-ms-correlation-request-id": [ - "a62acfb6-c4ca-4f73-93e5-781bed49cd2b" + "28dfb1ba-246c-463c-ac58-6c88558d6c16" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T041600Z:a62acfb6-c4ca-4f73-93e5-781bed49cd2b" + "SOUTHINDIA:20211115T022636Z:28dfb1ba-246c-463c-ac58-6c88558d6c16" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -247,9 +250,6 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:15:59 GMT" - ], "Content-Length": [ "738" ], @@ -260,47 +260,50 @@ "-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-8823/providers/Microsoft.EventHub/namespaces/sdk-NS-3160\",\r\n \"name\": \"sdk-NS-3160\",\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 \"disableLocalAuth\": false,\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-3160\",\r\n \"createdAt\": \"2021-09-24T04:15:29.257Z\",\r\n \"updatedAt\": \"2021-09-24T04:15:29.257Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-3160.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-6839/providers/Microsoft.EventHub/namespaces/sdk-NS-7350\",\r\n \"name\": \"sdk-NS-7350\",\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 \"disableLocalAuth\": false,\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-7350\",\r\n \"createdAt\": \"2021-11-15T02:26:02.147Z\",\r\n \"updatedAt\": \"2021-11-15T02:26:02.147Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-7350.servicebus.windows.net:443/\",\r\n \"status\": \"Activating\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8823/providers/Microsoft.EventHub/namespaces/sdk-NS-3160?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItODgyMy9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTMxNjA/YXBpLXZlcnNpb249MjAyMS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-6839/providers/Microsoft.EventHub/namespaces/sdk-NS-7350?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNjgzOS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTczNTA/YXBpLXZlcnNpb249MjAyMS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:27:06 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "2b460fdb-35a2-4a30-9dcc-3f8bb2bc223c_M2SN1_M2SN1" + "c20a1b58-3488-479e-858c-f63996ff99f8_M3SN1_M3SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11994" ], "x-ms-correlation-request-id": [ - "cb64fc25-6518-4521-bf14-eb67415f9277" + "87d5ee55-1c09-4cb0-bb8e-d49704868034" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T041630Z:cb64fc25-6518-4521-bf14-eb67415f9277" + "SOUTHINDIA:20211115T022706Z:87d5ee55-1c09-4cb0-bb8e-d49704868034" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -308,9 +311,6 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:16:29 GMT" - ], "Content-Length": [ "734" ], @@ -321,26 +321,26 @@ "-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-8823/providers/Microsoft.EventHub/namespaces/sdk-NS-3160\",\r\n \"name\": \"sdk-NS-3160\",\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 \"disableLocalAuth\": false,\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-3160\",\r\n \"createdAt\": \"2021-09-24T04:15:29.257Z\",\r\n \"updatedAt\": \"2021-09-24T04:16:15.9Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-3160.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-6839/providers/Microsoft.EventHub/namespaces/sdk-NS-7350\",\r\n \"name\": \"sdk-NS-7350\",\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 \"disableLocalAuth\": false,\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-7350\",\r\n \"createdAt\": \"2021-11-15T02:26:02.147Z\",\r\n \"updatedAt\": \"2021-11-15T02:26:49.9Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-7350.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8823/providers/Microsoft.EventHub/namespaces/sdk-NS-6100?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItODgyMy9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTYxMDA/YXBpLXZlcnNpb249MjAyMS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-6839/providers/Microsoft.EventHub/namespaces/sdk-NS-4107?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNjgzOS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTQxMDc/YXBpLXZlcnNpb249MjAyMS0xMS0wMQ==", "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": [ - "8fe167ec-faa0-4da2-8785-e5d95ab60194" + "f86e6eae-6f0a-411e-af7d-327ed392949f" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -353,27 +353,30 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:27:17 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "8f5365cd-a5a0-4251-bf88-be6694fb4c92_M2SN1_M2SN1" + "623bc5f6-2c22-4329-a066-ce10ae48e98a_M3SN1_M3SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "48" + "47" ], "x-ms-correlation-request-id": [ - "3127a8e5-1a62-4cdf-9d64-9f48ad4bf245" + "f0539453-f491-4a5d-baaa-a369589054c0" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T041637Z:3127a8e5-1a62-4cdf-9d64-9f48ad4bf245" + "SOUTHINDIA:20211115T022718Z:f0539453-f491-4a5d-baaa-a369589054c0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -381,11 +384,8 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:16:36 GMT" - ], "Content-Length": [ - "736" + "738" ], "Content-Type": [ "application/json; charset=utf-8" @@ -394,47 +394,50 @@ "-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-8823/providers/Microsoft.EventHub/namespaces/sdk-NS-6100\",\r\n \"name\": \"sdk-NS-6100\",\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 \"disableLocalAuth\": false,\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-6100\",\r\n \"createdAt\": \"2021-09-24T04:16:36.22Z\",\r\n \"updatedAt\": \"2021-09-24T04:16:36.22Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-6100.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-6839/providers/Microsoft.EventHub/namespaces/sdk-NS-4107\",\r\n \"name\": \"sdk-NS-4107\",\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 \"disableLocalAuth\": false,\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-4107\",\r\n \"createdAt\": \"2021-11-15T02:27:16.083Z\",\r\n \"updatedAt\": \"2021-11-15T02:27:16.083Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-4107.servicebus.windows.net:443/\",\r\n \"status\": \"Activating\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8823/providers/Microsoft.EventHub/namespaces/sdk-NS-6100?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItODgyMy9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTYxMDA/YXBpLXZlcnNpb249MjAyMS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-6839/providers/Microsoft.EventHub/namespaces/sdk-NS-4107?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNjgzOS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTQxMDc/YXBpLXZlcnNpb249MjAyMS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:27:48 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "9444ebe2-122b-4d00-bdd4-1581e6cf3d96_M5SN1_M5SN1" + "82e41862-3160-4b99-84f3-d1ea2890824e_M3SN1_M3SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11993" ], "x-ms-correlation-request-id": [ - "f0311e63-c38d-424d-9bed-e292008ee3cd" + "61af7d5f-bb1f-439e-83ae-056694718971" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T041707Z:f0311e63-c38d-424d-9bed-e292008ee3cd" + "SOUTHINDIA:20211115T022748Z:61af7d5f-bb1f-439e-83ae-056694718971" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -442,11 +445,8 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:17:06 GMT" - ], "Content-Length": [ - "736" + "738" ], "Content-Type": [ "application/json; charset=utf-8" @@ -455,47 +455,50 @@ "-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-8823/providers/Microsoft.EventHub/namespaces/sdk-NS-6100\",\r\n \"name\": \"sdk-NS-6100\",\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 \"disableLocalAuth\": false,\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-6100\",\r\n \"createdAt\": \"2021-09-24T04:16:36.22Z\",\r\n \"updatedAt\": \"2021-09-24T04:16:36.22Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-6100.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-6839/providers/Microsoft.EventHub/namespaces/sdk-NS-4107\",\r\n \"name\": \"sdk-NS-4107\",\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 \"disableLocalAuth\": false,\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-4107\",\r\n \"createdAt\": \"2021-11-15T02:27:16.083Z\",\r\n \"updatedAt\": \"2021-11-15T02:27:16.083Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-4107.servicebus.windows.net:443/\",\r\n \"status\": \"Activating\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8823/providers/Microsoft.EventHub/namespaces/sdk-NS-6100?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItODgyMy9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTYxMDA/YXBpLXZlcnNpb249MjAyMS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-6839/providers/Microsoft.EventHub/namespaces/sdk-NS-4107?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNjgzOS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTQxMDc/YXBpLXZlcnNpb249MjAyMS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:28:18 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "c89dd15a-c58e-4fd9-8250-eeaf57cbd9e3_M5SN1_M5SN1" + "b1a80a96-7da3-4ff5-bee5-ced0ab2a6407_M9CH3_M9CH3" ], "Server-SB": [ - "Service-Bus-Resource-Provider/SN1" - ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" + "Service-Bus-Resource-Provider/CH3" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11992" ], "x-ms-correlation-request-id": [ - "aa74351d-2dcc-4aba-90bc-8bf74e6e0f50" + "f70b2c21-4673-496f-aa0c-210b2a88ff0c" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T041737Z:aa74351d-2dcc-4aba-90bc-8bf74e6e0f50" + "SOUTHINDIA:20211115T022819Z:f70b2c21-4673-496f-aa0c-210b2a88ff0c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -503,11 +506,8 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:17:36 GMT" - ], "Content-Length": [ - "735" + "736" ], "Content-Type": [ "application/json; charset=utf-8" @@ -516,26 +516,26 @@ "-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-8823/providers/Microsoft.EventHub/namespaces/sdk-NS-6100\",\r\n \"name\": \"sdk-NS-6100\",\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 \"disableLocalAuth\": false,\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-6100\",\r\n \"createdAt\": \"2021-09-24T04:16:36.22Z\",\r\n \"updatedAt\": \"2021-09-24T04:17:23.483Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-6100.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-6839/providers/Microsoft.EventHub/namespaces/sdk-NS-4107\",\r\n \"name\": \"sdk-NS-4107\",\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 \"disableLocalAuth\": false,\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-4107\",\r\n \"createdAt\": \"2021-11-15T02:27:16.083Z\",\r\n \"updatedAt\": \"2021-11-15T02:28:07.973Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-4107.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8823/providers/Microsoft.EventHub/namespaces/sdk-NS-3160/authorizationRules/sdk-Authrules-3981?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItODgyMy9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTMxNjAvYXV0aG9yaXphdGlvblJ1bGVzL3Nkay1BdXRocnVsZXMtMzk4MT9hcGktdmVyc2lvbj0yMDIxLTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-6839/providers/Microsoft.EventHub/namespaces/sdk-NS-7350/authorizationRules/sdk-Authrules-6590?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNjgzOS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTczNTAvYXV0aG9yaXphdGlvblJ1bGVzL3Nkay1BdXRocnVsZXMtNjU5MD9hcGktdmVyc2lvbj0yMDIxLTExLTAx", "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": [ - "3ee111ce-2b4e-4c7c-a6f4-f2f1ce74a678" + "44e7f3ae-7f78-4210-bd2d-137ae2923905" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -548,27 +548,30 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:28:29 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "f53fb8c0-182c-42a8-80b3-c6e1f162be04_M5SN1_M5SN1" + "502de294-051b-4006-b2cd-a24f209f1c5e_M9CH3_M9CH3" ], "Server-SB": [ - "Service-Bus-Resource-Provider/SN1" - ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" + "Service-Bus-Resource-Provider/CH3" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], "x-ms-correlation-request-id": [ - "d3ec510a-8b05-447d-b557-e96b50658b9c" + "f253652c-c465-48af-b204-8a8eb56479f6" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T041748Z:d3ec510a-8b05-447d-b557-e96b50658b9c" + "SOUTHINDIA:20211115T022830Z:f253652c-c465-48af-b204-8a8eb56479f6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -576,9 +579,6 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:17:47 GMT" - ], "Content-Length": [ "345" ], @@ -589,53 +589,56 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8823/providers/Microsoft.EventHub/namespaces/sdk-NS-3160/authorizationRules/sdk-Authrules-3981\",\r\n \"name\": \"sdk-Authrules-3981\",\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-6839/providers/Microsoft.EventHub/namespaces/sdk-NS-7350/authorizationRules/sdk-Authrules-6590\",\r\n \"name\": \"sdk-Authrules-6590\",\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/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8823/providers/Microsoft.EventHub/namespaces/sdk-NS-3160/authorizationRules/sdk-Authrules-3981?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItODgyMy9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTMxNjAvYXV0aG9yaXphdGlvblJ1bGVzL3Nkay1BdXRocnVsZXMtMzk4MT9hcGktdmVyc2lvbj0yMDIxLTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-6839/providers/Microsoft.EventHub/namespaces/sdk-NS-7350/authorizationRules/sdk-Authrules-6590?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNjgzOS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTczNTAvYXV0aG9yaXphdGlvblJ1bGVzL3Nkay1BdXRocnVsZXMtNjU5MD9hcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "457617a0-dd4e-4157-a0d2-08be0b12a696" + "299d6c3f-f89e-4d55-a1d0-0c8d3c5c491e" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:28:30 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "527478f1-3532-4ad7-82c0-3b1f3392cee8_M5SN1_M5SN1" + "00b1539e-b1aa-4d7d-b690-f517c08dd228_M9CH3_M9CH3" ], "Server-SB": [ - "Service-Bus-Resource-Provider/SN1" - ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" + "Service-Bus-Resource-Provider/CH3" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11991" ], "x-ms-correlation-request-id": [ - "ca9fbd66-baf2-44b2-8cc7-bd80f0b0ffa0" + "9319a351-b730-4a41-b6d8-337ed9d87d0c" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T041749Z:ca9fbd66-baf2-44b2-8cc7-bd80f0b0ffa0" + "SOUTHINDIA:20211115T022831Z:9319a351-b730-4a41-b6d8-337ed9d87d0c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -643,9 +646,6 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:17:48 GMT" - ], "Content-Length": [ "345" ], @@ -656,53 +656,56 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8823/providers/Microsoft.EventHub/namespaces/sdk-NS-3160/authorizationRules/sdk-Authrules-3981\",\r\n \"name\": \"sdk-Authrules-3981\",\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-6839/providers/Microsoft.EventHub/namespaces/sdk-NS-7350/authorizationRules/sdk-Authrules-6590\",\r\n \"name\": \"sdk-Authrules-6590\",\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/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8823/providers/Microsoft.EventHub/namespaces/sdk-NS-3160/authorizationRules/sdk-Authrules-3981/listKeys?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItODgyMy9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTMxNjAvYXV0aG9yaXphdGlvblJ1bGVzL3Nkay1BdXRocnVsZXMtMzk4MS9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDIxLTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-6839/providers/Microsoft.EventHub/namespaces/sdk-NS-7350/authorizationRules/sdk-Authrules-6590/listKeys?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNjgzOS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTczNTAvYXV0aG9yaXphdGlvblJ1bGVzL3Nkay1BdXRocnVsZXMtNjU5MC9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "df9bddc9-de1a-462a-9ac1-0ddc2bf60777" + "80c77ae5-0c49-4aa2-ad02-775ad1208b3e" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:28:31 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "6da8dfef-c614-4f80-86b7-a861a27c8057_M5SN1_M5SN1" + "e1a00e32-9d75-438c-897a-3db068e08039_M9CH3_M9CH3" ], "Server-SB": [ - "Service-Bus-Resource-Provider/SN1" - ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" + "Service-Bus-Resource-Provider/CH3" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1198" ], "x-ms-correlation-request-id": [ - "cb2504d2-aa52-46e3-874a-af6dcde40b6c" + "132ca7f6-16d6-4b37-99e6-b70f3fa73194" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T041750Z:cb2504d2-aa52-46e3-874a-af6dcde40b6c" + "SOUTHINDIA:20211115T022832Z:132ca7f6-16d6-4b37-99e6-b70f3fa73194" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -710,9 +713,6 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:17:49 GMT" - ], "Content-Length": [ "512" ], @@ -723,26 +723,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"primaryConnectionString\": \"Endpoint=sb://sdk-ns-3160.servicebus.windows.net/;SharedAccessKeyName=sdk-Authrules-3981;SharedAccessKey=ya8OEXLHwK6ENu7qlaeCHDYR+GpRr+sfvTFSd2FwVao=\",\r\n \"secondaryConnectionString\": \"Endpoint=sb://sdk-ns-3160.servicebus.windows.net/;SharedAccessKeyName=sdk-Authrules-3981;SharedAccessKey=yO2W2ym0ZLeAv2x09pk/xIaSw3Jl806W4ZJc64mddfQ=\",\r\n \"primaryKey\": \"ya8OEXLHwK6ENu7qlaeCHDYR+GpRr+sfvTFSd2FwVao=\",\r\n \"secondaryKey\": \"yO2W2ym0ZLeAv2x09pk/xIaSw3Jl806W4ZJc64mddfQ=\",\r\n \"keyName\": \"sdk-Authrules-3981\"\r\n}", + "ResponseBody": "{\r\n \"primaryConnectionString\": \"Endpoint=sb://sdk-ns-7350.servicebus.windows.net/;SharedAccessKeyName=sdk-Authrules-6590;SharedAccessKey=6aomke6/QdDS9vREavfXSYxJDodO8Uaho95oGRrpA2Q=\",\r\n \"secondaryConnectionString\": \"Endpoint=sb://sdk-ns-7350.servicebus.windows.net/;SharedAccessKeyName=sdk-Authrules-6590;SharedAccessKey=hDM7W/YJmcsnic8b/XdVbP9w3DaXhe2g/kIZOK0TY1k=\",\r\n \"primaryKey\": \"6aomke6/QdDS9vREavfXSYxJDodO8Uaho95oGRrpA2Q=\",\r\n \"secondaryKey\": \"hDM7W/YJmcsnic8b/XdVbP9w3DaXhe2g/kIZOK0TY1k=\",\r\n \"keyName\": \"sdk-Authrules-6590\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8823/providers/Microsoft.EventHub/namespaces/sdk-NS-3160/disasterRecoveryConfigs/checkNameAvailability?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItODgyMy9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTMxNjAvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3MvY2hlY2tOYW1lQXZhaWxhYmlsaXR5P2FwaS12ZXJzaW9uPTIwMjEtMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-6839/providers/Microsoft.EventHub/namespaces/sdk-NS-7350/disasterRecoveryConfigs/checkNameAvailability?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNjgzOS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTczNTAvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3MvY2hlY2tOYW1lQXZhaWxhYmlsaXR5P2FwaS12ZXJzaW9uPTIwMjEtMTEtMDE=", "RequestMethod": "POST", - "RequestBody": "{\r\n \"name\": \"sdk-NS-3160\"\r\n}", + "RequestBody": "{\r\n \"name\": \"sdk-NS-7350\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "425140d8-9d7f-493c-919e-a7e0c1254c41" + "34525f85-a9fe-4dc6-9e70-f80fe442e1dd" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -755,27 +755,30 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:28:31 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "b9c6c97a-f5b6-4d1c-afd6-ed23e7678e50_M5SN1_M5SN1" + "33111671-9dec-40b8-a9a4-64b1f635dc81_M9CH3_M9CH3" ], "Server-SB": [ - "Service-Bus-Resource-Provider/SN1" - ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" + "Service-Bus-Resource-Provider/CH3" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1197" ], "x-ms-correlation-request-id": [ - "b5edb278-0728-4e6f-bb6b-f6cd5935a64a" + "e8fe50a6-128e-45cd-82c4-2123373bcda3" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T041750Z:b5edb278-0728-4e6f-bb6b-f6cd5935a64a" + "SOUTHINDIA:20211115T022832Z:e8fe50a6-128e-45cd-82c4-2123373bcda3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -783,9 +786,6 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:17:49 GMT" - ], "Content-Length": [ "38" ], @@ -800,22 +800,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8823/providers/Microsoft.EventHub/namespaces/sdk-NS-3160/disasterRecoveryConfigs/sdk-NS-3160?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItODgyMy9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTMxNjAvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLU5TLTMxNjA/YXBpLXZlcnNpb249MjAyMS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-6839/providers/Microsoft.EventHub/namespaces/sdk-NS-7350/disasterRecoveryConfigs/sdk-NS-7350?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNjgzOS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTczNTAvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLU5TLTczNTA/YXBpLXZlcnNpb249MjAyMS0xMS0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"partnerNamespace\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8823/providers/Microsoft.EventHub/namespaces/sdk-NS-6100\",\r\n \"alternateName\": \"sdk-DisasterRecovery-9893\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"partnerNamespace\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-6839/providers/Microsoft.EventHub/namespaces/sdk-NS-4107\",\r\n \"alternateName\": \"sdk-DisasterRecovery-3919\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "7bb06d0e-00a3-437c-848d-c1094ee6aa21" + "66ee6d6c-6c00-4d17-a989-76808f9b347f" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -828,27 +828,30 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:28:38 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "2a45589b-36a0-46f6-a2a8-4a9f550a5539_M5SN1_M5SN1" + "dec5c48a-2564-4ec1-9f19-1de52be777ff_M9CH3_M9CH3" ], "Server-SB": [ - "Service-Bus-Resource-Provider/SN1" - ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" + "Service-Bus-Resource-Provider/CH3" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1198" ], "x-ms-correlation-request-id": [ - "bed2673c-81f2-4b8a-8d57-9388c5b5d64a" + "0c0313ca-9470-4ba6-8392-d36cc5cf4bc6" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T041757Z:bed2673c-81f2-4b8a-8d57-9388c5b5d64a" + "SOUTHINDIA:20211115T022839Z:0c0313ca-9470-4ba6-8392-d36cc5cf4bc6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -856,9 +859,6 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:17:56 GMT" - ], "Content-Length": [ "567" ], @@ -869,26 +869,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8823/providers/Microsoft.EventHub/namespaces/sdk-NS-3160/disasterRecoveryConfigs/sdk-NS-3160\",\r\n \"name\": \"sdk-NS-3160\",\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-8823/providers/Microsoft.EventHub/namespaces/sdk-NS-6100\",\r\n \"alternateName\": \"sdk-DisasterRecovery-9893\",\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-6839/providers/Microsoft.EventHub/namespaces/sdk-NS-7350/disasterRecoveryConfigs/sdk-NS-7350\",\r\n \"name\": \"sdk-NS-7350\",\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-6839/providers/Microsoft.EventHub/namespaces/sdk-NS-4107\",\r\n \"alternateName\": \"sdk-DisasterRecovery-3919\",\r\n \"role\": \"Primary\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8823/providers/Microsoft.EventHub/namespaces/sdk-NS-3160/disasterRecoveryConfigs/sdk-NS-3160?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItODgyMy9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTMxNjAvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLU5TLTMxNjA/YXBpLXZlcnNpb249MjAyMS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-6839/providers/Microsoft.EventHub/namespaces/sdk-NS-7350/disasterRecoveryConfigs/sdk-NS-7350?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNjgzOS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTczNTAvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLU5TLTczNTA/YXBpLXZlcnNpb249MjAyMS0xMS0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"partnerNamespace\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8823/providers/Microsoft.EventHub/namespaces/sdk-NS-6100\",\r\n \"alternateName\": \"sdk-DisasterRecovery-9893\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"partnerNamespace\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-6839/providers/Microsoft.EventHub/namespaces/sdk-NS-4107\",\r\n \"alternateName\": \"sdk-DisasterRecovery-3919\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "fc6827db-9b19-4847-9a44-66628bf1f691" + "0815ff6a-33f3-4aed-bb04-517e815bd382" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -901,27 +901,30 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:31:47 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "4730151f-ef09-40fa-b83b-7856f3c0e267_M5SN1_M5SN1" + "7e8ee263-3e21-4546-aa61-ee1730198ad0_M8CH3_M8CH3" ], "Server-SB": [ - "Service-Bus-Resource-Provider/SN1" - ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" + "Service-Bus-Resource-Provider/CH3" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1197" ], "x-ms-correlation-request-id": [ - "fa6c44d8-3907-4ec6-9ea0-b1be5b98c3ac" + "d17169ab-5d65-4248-b909-bb5577d1fb87" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T042106Z:fa6c44d8-3907-4ec6-9ea0-b1be5b98c3ac" + "SOUTHINDIA:20211115T023148Z:d17169ab-5d65-4248-b909-bb5577d1fb87" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -929,9 +932,6 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:21:05 GMT" - ], "Content-Length": [ "567" ], @@ -942,53 +942,56 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8823/providers/Microsoft.EventHub/namespaces/sdk-NS-3160/disasterRecoveryConfigs/sdk-NS-3160\",\r\n \"name\": \"sdk-NS-3160\",\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-8823/providers/Microsoft.EventHub/namespaces/sdk-NS-6100\",\r\n \"alternateName\": \"sdk-DisasterRecovery-9893\",\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-6839/providers/Microsoft.EventHub/namespaces/sdk-NS-7350/disasterRecoveryConfigs/sdk-NS-7350\",\r\n \"name\": \"sdk-NS-7350\",\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-6839/providers/Microsoft.EventHub/namespaces/sdk-NS-4107\",\r\n \"alternateName\": \"sdk-DisasterRecovery-3919\",\r\n \"role\": \"Primary\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8823/providers/Microsoft.EventHub/namespaces/sdk-NS-3160/disasterRecoveryConfigs/sdk-NS-3160?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItODgyMy9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTMxNjAvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLU5TLTMxNjA/YXBpLXZlcnNpb249MjAyMS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-6839/providers/Microsoft.EventHub/namespaces/sdk-NS-7350/disasterRecoveryConfigs/sdk-NS-7350?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNjgzOS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTczNTAvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLU5TLTczNTA/YXBpLXZlcnNpb249MjAyMS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4f561bec-2139-420f-b840-db054420e92c" + "5fc2fac0-83c2-4b2d-8860-3c1aa1e08f4b" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:29:09 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "c9dffadb-cd16-4447-ab20-c3f872aa7737_M5SN1_M5SN1" + "0023d5a2-e008-40fb-87a9-96dec39a7959_M9CH3_M9CH3" ], "Server-SB": [ - "Service-Bus-Resource-Provider/SN1" - ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" + "Service-Bus-Resource-Provider/CH3" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11990" ], "x-ms-correlation-request-id": [ - "7de4ac5b-2475-49a6-9395-4a156f378b3a" + "3030114b-e27f-41a2-8b16-98ab036b8073" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T041827Z:7de4ac5b-2475-49a6-9395-4a156f378b3a" + "SOUTHINDIA:20211115T022910Z:3030114b-e27f-41a2-8b16-98ab036b8073" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -996,9 +999,6 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:18:27 GMT" - ], "Content-Length": [ "567" ], @@ -1009,53 +1009,56 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8823/providers/Microsoft.EventHub/namespaces/sdk-NS-3160/disasterRecoveryConfigs/sdk-NS-3160\",\r\n \"name\": \"sdk-NS-3160\",\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-8823/providers/Microsoft.EventHub/namespaces/sdk-NS-6100\",\r\n \"alternateName\": \"sdk-DisasterRecovery-9893\",\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-6839/providers/Microsoft.EventHub/namespaces/sdk-NS-7350/disasterRecoveryConfigs/sdk-NS-7350\",\r\n \"name\": \"sdk-NS-7350\",\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-6839/providers/Microsoft.EventHub/namespaces/sdk-NS-4107\",\r\n \"alternateName\": \"sdk-DisasterRecovery-3919\",\r\n \"role\": \"Primary\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8823/providers/Microsoft.EventHub/namespaces/sdk-NS-3160/disasterRecoveryConfigs/sdk-NS-3160?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItODgyMy9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTMxNjAvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLU5TLTMxNjA/YXBpLXZlcnNpb249MjAyMS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-6839/providers/Microsoft.EventHub/namespaces/sdk-NS-7350/disasterRecoveryConfigs/sdk-NS-7350?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNjgzOS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTczNTAvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLU5TLTczNTA/YXBpLXZlcnNpb249MjAyMS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cc861a0b-5c1a-4788-aa9b-7f1661405150" + "7327a6e6-f33a-4d58-8620-d01c8f20d03d" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:29:11 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "8610160d-7422-4367-9b2b-2ab6e89d1d03_M5SN1_M5SN1" + "0fa2ce73-0a53-45b5-9a26-c67fbea80a0c_M9CH3_M9CH3" ], "Server-SB": [ - "Service-Bus-Resource-Provider/SN1" - ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" + "Service-Bus-Resource-Provider/CH3" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11987" ], "x-ms-correlation-request-id": [ - "e8afc56f-330f-47eb-ad3e-46fc3400e6c9" + "8257a94b-7a54-47d1-bac3-5075827df356" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T041828Z:e8afc56f-330f-47eb-ad3e-46fc3400e6c9" + "SOUTHINDIA:20211115T022912Z:8257a94b-7a54-47d1-bac3-5075827df356" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1063,9 +1066,6 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:18:28 GMT" - ], "Content-Length": [ "567" ], @@ -1076,53 +1076,56 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8823/providers/Microsoft.EventHub/namespaces/sdk-NS-3160/disasterRecoveryConfigs/sdk-NS-3160\",\r\n \"name\": \"sdk-NS-3160\",\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-8823/providers/Microsoft.EventHub/namespaces/sdk-NS-6100\",\r\n \"alternateName\": \"sdk-DisasterRecovery-9893\",\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-6839/providers/Microsoft.EventHub/namespaces/sdk-NS-7350/disasterRecoveryConfigs/sdk-NS-7350\",\r\n \"name\": \"sdk-NS-7350\",\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-6839/providers/Microsoft.EventHub/namespaces/sdk-NS-4107\",\r\n \"alternateName\": \"sdk-DisasterRecovery-3919\",\r\n \"role\": \"Primary\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8823/providers/Microsoft.EventHub/namespaces/sdk-NS-3160/disasterRecoveryConfigs/sdk-NS-3160?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItODgyMy9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTMxNjAvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLU5TLTMxNjA/YXBpLXZlcnNpb249MjAyMS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-6839/providers/Microsoft.EventHub/namespaces/sdk-NS-7350/disasterRecoveryConfigs/sdk-NS-7350?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNjgzOS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTczNTAvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLU5TLTczNTA/YXBpLXZlcnNpb249MjAyMS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f7955bfd-81e0-4001-bf21-777f653b0639" + "1a591a02-5825-4e02-98d4-efd95d678688" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:29:11 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "26b3eedf-2367-41f2-b7d4-64d03b3f74e2_M5SN1_M5SN1" + "7457d94f-b132-4903-8ad3-a85867c51fa0_M9CH3_M9CH3" ], "Server-SB": [ - "Service-Bus-Resource-Provider/SN1" - ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" + "Service-Bus-Resource-Provider/CH3" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11986" ], "x-ms-correlation-request-id": [ - "a22452ee-6430-4d25-831c-e1898cb7e167" + "7f3ab45f-8a9d-47b0-a07f-7c0436d755fb" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T041829Z:a22452ee-6430-4d25-831c-e1898cb7e167" + "SOUTHINDIA:20211115T022912Z:7f3ab45f-8a9d-47b0-a07f-7c0436d755fb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1130,9 +1133,6 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:18:29 GMT" - ], "Content-Length": [ "567" ], @@ -1143,53 +1143,56 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8823/providers/Microsoft.EventHub/namespaces/sdk-NS-3160/disasterRecoveryConfigs/sdk-NS-3160\",\r\n \"name\": \"sdk-NS-3160\",\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-8823/providers/Microsoft.EventHub/namespaces/sdk-NS-6100\",\r\n \"alternateName\": \"sdk-DisasterRecovery-9893\",\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-6839/providers/Microsoft.EventHub/namespaces/sdk-NS-7350/disasterRecoveryConfigs/sdk-NS-7350\",\r\n \"name\": \"sdk-NS-7350\",\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-6839/providers/Microsoft.EventHub/namespaces/sdk-NS-4107\",\r\n \"alternateName\": \"sdk-DisasterRecovery-3919\",\r\n \"role\": \"Primary\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8823/providers/Microsoft.EventHub/namespaces/sdk-NS-3160/disasterRecoveryConfigs/sdk-NS-3160?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItODgyMy9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTMxNjAvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLU5TLTMxNjA/YXBpLXZlcnNpb249MjAyMS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-6839/providers/Microsoft.EventHub/namespaces/sdk-NS-7350/disasterRecoveryConfigs/sdk-NS-7350?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNjgzOS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTczNTAvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLU5TLTczNTA/YXBpLXZlcnNpb249MjAyMS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0bd23e7f-25c1-4e3a-9b7c-ce7b504b547d" + "0698fc28-038a-4eb8-a61f-db190d37eb07" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:29:22 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "63c557a4-2641-48ea-a570-2e1b1a7439cc_M1SN1_M1SN1" + "26b54d4e-93eb-4397-9509-c964f364a54d_M9CH3_M9CH3" ], "Server-SB": [ - "Service-Bus-Resource-Provider/SN1" - ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" + "Service-Bus-Resource-Provider/CH3" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11985" ], "x-ms-correlation-request-id": [ - "40bbb529-5992-40ba-8534-03b737fb15f0" + "98083393-8331-41f6-a601-2e0283e26c48" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T041856Z:40bbb529-5992-40ba-8534-03b737fb15f0" + "SOUTHINDIA:20211115T022922Z:98083393-8331-41f6-a601-2e0283e26c48" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1197,9 +1200,6 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:18:56 GMT" - ], "Content-Length": [ "567" ], @@ -1210,53 +1210,56 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8823/providers/Microsoft.EventHub/namespaces/sdk-NS-3160/disasterRecoveryConfigs/sdk-NS-3160\",\r\n \"name\": \"sdk-NS-3160\",\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-8823/providers/Microsoft.EventHub/namespaces/sdk-NS-6100\",\r\n \"alternateName\": \"sdk-DisasterRecovery-9893\",\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-6839/providers/Microsoft.EventHub/namespaces/sdk-NS-7350/disasterRecoveryConfigs/sdk-NS-7350\",\r\n \"name\": \"sdk-NS-7350\",\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-6839/providers/Microsoft.EventHub/namespaces/sdk-NS-4107\",\r\n \"alternateName\": \"sdk-DisasterRecovery-3919\",\r\n \"role\": \"Primary\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8823/providers/Microsoft.EventHub/namespaces/sdk-NS-3160/disasterRecoveryConfigs/sdk-NS-3160?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItODgyMy9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTMxNjAvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLU5TLTMxNjA/YXBpLXZlcnNpb249MjAyMS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-6839/providers/Microsoft.EventHub/namespaces/sdk-NS-7350/disasterRecoveryConfigs/sdk-NS-7350?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNjgzOS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTczNTAvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLU5TLTczNTA/YXBpLXZlcnNpb249MjAyMS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "76d3f4a2-95a7-4545-9a99-907a451d7e44" + "c4136525-6fbe-4acb-8c5d-0e70c77ab4b4" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:29:32 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "5137a657-3008-4b7c-9066-e1798958fba6_M3SN1_M3SN1" + "28e733e9-23e2-4f08-95ea-376c61b4e477_M8CH3_M8CH3" ], "Server-SB": [ - "Service-Bus-Resource-Provider/SN1" - ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" + "Service-Bus-Resource-Provider/CH3" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11984" ], "x-ms-correlation-request-id": [ - "cd9aae01-474c-4fe5-a65d-39e4e821994d" + "6d5501f7-4883-43b8-be83-2809dbd98868" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T041906Z:cd9aae01-474c-4fe5-a65d-39e4e821994d" + "SOUTHINDIA:20211115T022933Z:6d5501f7-4883-43b8-be83-2809dbd98868" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1264,9 +1267,6 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:19:06 GMT" - ], "Content-Length": [ "567" ], @@ -1277,53 +1277,56 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8823/providers/Microsoft.EventHub/namespaces/sdk-NS-3160/disasterRecoveryConfigs/sdk-NS-3160\",\r\n \"name\": \"sdk-NS-3160\",\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-8823/providers/Microsoft.EventHub/namespaces/sdk-NS-6100\",\r\n \"alternateName\": \"sdk-DisasterRecovery-9893\",\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-6839/providers/Microsoft.EventHub/namespaces/sdk-NS-7350/disasterRecoveryConfigs/sdk-NS-7350\",\r\n \"name\": \"sdk-NS-7350\",\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-6839/providers/Microsoft.EventHub/namespaces/sdk-NS-4107\",\r\n \"alternateName\": \"sdk-DisasterRecovery-3919\",\r\n \"role\": \"Primary\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8823/providers/Microsoft.EventHub/namespaces/sdk-NS-3160/disasterRecoveryConfigs/sdk-NS-3160?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItODgyMy9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTMxNjAvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLU5TLTMxNjA/YXBpLXZlcnNpb249MjAyMS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-6839/providers/Microsoft.EventHub/namespaces/sdk-NS-7350/disasterRecoveryConfigs/sdk-NS-7350?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNjgzOS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTczNTAvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLU5TLTczNTA/YXBpLXZlcnNpb249MjAyMS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "03a533a3-b0a4-4248-81df-3fcbab8bef93" + "14e8291b-aef2-4966-8183-5b440036fea4" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:29:43 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "be4ee05d-4d36-4f88-b007-9c4212d12b83_M5SN1_M5SN1" + "ddb83277-de8d-424a-8bc1-3f301008ecd4_M8CH3_M8CH3" ], "Server-SB": [ - "Service-Bus-Resource-Provider/SN1" - ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" + "Service-Bus-Resource-Provider/CH3" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11983" ], "x-ms-correlation-request-id": [ - "8eaa494f-0c00-4fe9-9962-cc4dfc7a2401" + "5e31f25d-82cc-4a98-8e9c-e5f762d1aecc" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T041917Z:8eaa494f-0c00-4fe9-9962-cc4dfc7a2401" + "SOUTHINDIA:20211115T022943Z:5e31f25d-82cc-4a98-8e9c-e5f762d1aecc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1331,9 +1334,6 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:19:16 GMT" - ], "Content-Length": [ "567" ], @@ -1344,53 +1344,56 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8823/providers/Microsoft.EventHub/namespaces/sdk-NS-3160/disasterRecoveryConfigs/sdk-NS-3160\",\r\n \"name\": \"sdk-NS-3160\",\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-8823/providers/Microsoft.EventHub/namespaces/sdk-NS-6100\",\r\n \"alternateName\": \"sdk-DisasterRecovery-9893\",\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-6839/providers/Microsoft.EventHub/namespaces/sdk-NS-7350/disasterRecoveryConfigs/sdk-NS-7350\",\r\n \"name\": \"sdk-NS-7350\",\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-6839/providers/Microsoft.EventHub/namespaces/sdk-NS-4107\",\r\n \"alternateName\": \"sdk-DisasterRecovery-3919\",\r\n \"role\": \"Primary\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8823/providers/Microsoft.EventHub/namespaces/sdk-NS-3160/disasterRecoveryConfigs/sdk-NS-3160?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItODgyMy9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTMxNjAvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLU5TLTMxNjA/YXBpLXZlcnNpb249MjAyMS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-6839/providers/Microsoft.EventHub/namespaces/sdk-NS-7350/disasterRecoveryConfigs/sdk-NS-7350?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNjgzOS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTczNTAvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLU5TLTczNTA/YXBpLXZlcnNpb249MjAyMS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1989ecea-c850-4bf7-8452-e9025d4a062d" + "bb83658d-028d-48d6-89e1-8ca3617d98cf" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:29:53 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "b7c70379-152f-401c-abc8-f8d0298db44e_M5SN1_M5SN1" + "c03aed79-b782-4b69-99f2-ce109e1cef07_M8CH3_M8CH3" ], "Server-SB": [ - "Service-Bus-Resource-Provider/SN1" - ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" + "Service-Bus-Resource-Provider/CH3" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11982" ], "x-ms-correlation-request-id": [ - "58b3eaea-e749-4fc2-8cad-4eb63c8ab1e7" + "f65a8255-fff1-4844-8180-8da67d642ca4" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T041927Z:58b3eaea-e749-4fc2-8cad-4eb63c8ab1e7" + "SOUTHINDIA:20211115T022953Z:f65a8255-fff1-4844-8180-8da67d642ca4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1398,9 +1401,6 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:19:26 GMT" - ], "Content-Length": [ "567" ], @@ -1411,53 +1411,56 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8823/providers/Microsoft.EventHub/namespaces/sdk-NS-3160/disasterRecoveryConfigs/sdk-NS-3160\",\r\n \"name\": \"sdk-NS-3160\",\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-8823/providers/Microsoft.EventHub/namespaces/sdk-NS-6100\",\r\n \"alternateName\": \"sdk-DisasterRecovery-9893\",\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-6839/providers/Microsoft.EventHub/namespaces/sdk-NS-7350/disasterRecoveryConfigs/sdk-NS-7350\",\r\n \"name\": \"sdk-NS-7350\",\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-6839/providers/Microsoft.EventHub/namespaces/sdk-NS-4107\",\r\n \"alternateName\": \"sdk-DisasterRecovery-3919\",\r\n \"role\": \"Primary\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8823/providers/Microsoft.EventHub/namespaces/sdk-NS-3160/disasterRecoveryConfigs/sdk-NS-3160?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItODgyMy9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTMxNjAvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLU5TLTMxNjA/YXBpLXZlcnNpb249MjAyMS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-6839/providers/Microsoft.EventHub/namespaces/sdk-NS-7350/disasterRecoveryConfigs/sdk-NS-7350?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNjgzOS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTczNTAvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLU5TLTczNTA/YXBpLXZlcnNpb249MjAyMS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c509bb0b-9828-4ab4-84e3-b8541dd905ff" + "353d0e02-9f41-4b85-817f-3d6ad8768432" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:30:04 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "491b97bc-c6f7-4be9-a512-dca3c52e9c15_M5SN1_M5SN1" + "61eec9c1-7d19-4403-8583-4d7ef685e282_M8CH3_M8CH3" ], "Server-SB": [ - "Service-Bus-Resource-Provider/SN1" - ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" + "Service-Bus-Resource-Provider/CH3" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" + "11981" ], "x-ms-correlation-request-id": [ - "40adb06b-edbf-4f4a-9188-df557537f7ff" + "dfa3bd4e-6230-4279-8fad-db223f113061" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T041937Z:40adb06b-edbf-4f4a-9188-df557537f7ff" + "SOUTHINDIA:20211115T023004Z:dfa3bd4e-6230-4279-8fad-db223f113061" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1465,11 +1468,8 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:19:37 GMT" - ], "Content-Length": [ - "606" + "567" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1478,53 +1478,56 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8823/providers/Microsoft.EventHub/namespaces/sdk-NS-3160/disasterRecoveryConfigs/sdk-NS-3160\",\r\n \"name\": \"sdk-NS-3160\",\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-8823/providers/Microsoft.EventHub/namespaces/sdk-NS-6100\",\r\n \"alternateName\": \"sdk-DisasterRecovery-9893\",\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-6839/providers/Microsoft.EventHub/namespaces/sdk-NS-7350/disasterRecoveryConfigs/sdk-NS-7350\",\r\n \"name\": \"sdk-NS-7350\",\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-6839/providers/Microsoft.EventHub/namespaces/sdk-NS-4107\",\r\n \"alternateName\": \"sdk-DisasterRecovery-3919\",\r\n \"role\": \"Primary\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8823/providers/Microsoft.EventHub/namespaces/sdk-NS-3160/disasterRecoveryConfigs/sdk-NS-3160?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItODgyMy9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTMxNjAvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLU5TLTMxNjA/YXBpLXZlcnNpb249MjAyMS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-6839/providers/Microsoft.EventHub/namespaces/sdk-NS-7350/disasterRecoveryConfigs/sdk-NS-7350?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNjgzOS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTczNTAvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLU5TLTczNTA/YXBpLXZlcnNpb249MjAyMS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "72c96344-1f1b-4b72-8037-8199a054995b" + "203e190c-329f-41ce-8b71-964a78950a66" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:30:14 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "e97848de-3ae2-4cdf-8c79-92347acc92b1_M5SN1_M5SN1" + "192cd91b-1b51-45a1-871f-1a7b7e8977ec_M8CH3_M8CH3" ], "Server-SB": [ - "Service-Bus-Resource-Provider/SN1" - ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" + "Service-Bus-Resource-Provider/CH3" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" + "11980" ], "x-ms-correlation-request-id": [ - "c74bcf25-a013-4f5f-acde-03aa0e843cdb" + "1581842b-9ae1-4b02-9ebc-8b2a7da67d23" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T041948Z:c74bcf25-a013-4f5f-acde-03aa0e843cdb" + "SOUTHINDIA:20211115T023014Z:1581842b-9ae1-4b02-9ebc-8b2a7da67d23" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1532,11 +1535,8 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:19:47 GMT" - ], "Content-Length": [ - "567" + "606" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1545,53 +1545,56 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8823/providers/Microsoft.EventHub/namespaces/sdk-NS-3160/disasterRecoveryConfigs/sdk-NS-3160\",\r\n \"name\": \"sdk-NS-3160\",\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-8823/providers/Microsoft.EventHub/namespaces/sdk-NS-6100\",\r\n \"alternateName\": \"sdk-DisasterRecovery-9893\",\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-6839/providers/Microsoft.EventHub/namespaces/sdk-NS-7350/disasterRecoveryConfigs/sdk-NS-7350\",\r\n \"name\": \"sdk-NS-7350\",\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-6839/providers/Microsoft.EventHub/namespaces/sdk-NS-4107\",\r\n \"alternateName\": \"sdk-DisasterRecovery-3919\",\r\n \"role\": \"Primary\",\r\n \"type\": \"MetadataReplication\",\r\n \"pendingReplicationOperationsCount\": 0\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8823/providers/Microsoft.EventHub/namespaces/sdk-NS-3160/disasterRecoveryConfigs/sdk-NS-3160?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItODgyMy9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTMxNjAvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLU5TLTMxNjA/YXBpLXZlcnNpb249MjAyMS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-6839/providers/Microsoft.EventHub/namespaces/sdk-NS-7350/disasterRecoveryConfigs/sdk-NS-7350?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNjgzOS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTczNTAvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLU5TLTczNTA/YXBpLXZlcnNpb249MjAyMS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3d7da535-660f-4b13-84d2-9c45a9b748a2" + "f273aa4f-343f-49e1-99e7-4466beaded74" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:30:25 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "c2dc7d78-8087-43a2-b71a-8444567e1317_M5SN1_M5SN1" + "ccaf7799-9a1f-4db2-8688-7a063a68e7d0_M8CH3_M8CH3" ], "Server-SB": [ - "Service-Bus-Resource-Provider/SN1" - ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" + "Service-Bus-Resource-Provider/CH3" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" + "11979" ], "x-ms-correlation-request-id": [ - "68715770-a898-478d-b391-50dd18b3faeb" + "0e263220-3b74-4bf8-a1ba-aa7aca5a8aec" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T041958Z:68715770-a898-478d-b391-50dd18b3faeb" + "SOUTHINDIA:20211115T023026Z:0e263220-3b74-4bf8-a1ba-aa7aca5a8aec" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1599,9 +1602,6 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:19:57 GMT" - ], "Content-Length": [ "567" ], @@ -1612,53 +1612,56 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8823/providers/Microsoft.EventHub/namespaces/sdk-NS-3160/disasterRecoveryConfigs/sdk-NS-3160\",\r\n \"name\": \"sdk-NS-3160\",\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-8823/providers/Microsoft.EventHub/namespaces/sdk-NS-6100\",\r\n \"alternateName\": \"sdk-DisasterRecovery-9893\",\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-6839/providers/Microsoft.EventHub/namespaces/sdk-NS-7350/disasterRecoveryConfigs/sdk-NS-7350\",\r\n \"name\": \"sdk-NS-7350\",\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-6839/providers/Microsoft.EventHub/namespaces/sdk-NS-4107\",\r\n \"alternateName\": \"sdk-DisasterRecovery-3919\",\r\n \"role\": \"Primary\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8823/providers/Microsoft.EventHub/namespaces/sdk-NS-3160/disasterRecoveryConfigs/sdk-NS-3160?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItODgyMy9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTMxNjAvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLU5TLTMxNjA/YXBpLXZlcnNpb249MjAyMS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-6839/providers/Microsoft.EventHub/namespaces/sdk-NS-7350/disasterRecoveryConfigs/sdk-NS-7350?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNjgzOS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTczNTAvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLU5TLTczNTA/YXBpLXZlcnNpb249MjAyMS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "15835fd7-402a-451e-adbb-1e4cc5e5ee04" + "add81956-b17d-425e-85e9-bc9ff6ad7c80" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:30:38 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "198411ef-5579-4c24-926e-bbede3adbfae_M5SN1_M5SN1" + "c552ad17-7f75-4a23-a44e-dbc84eb5a799_M5CH3_M5CH3" ], "Server-SB": [ - "Service-Bus-Resource-Provider/SN1" - ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" + "Service-Bus-Resource-Provider/CH3" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11982" + "11978" ], "x-ms-correlation-request-id": [ - "cc6c44fe-537e-4171-8ebf-6c148f7aa113" + "96acab42-2ada-48af-83b3-541a30f200b2" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T042008Z:cc6c44fe-537e-4171-8ebf-6c148f7aa113" + "SOUTHINDIA:20211115T023038Z:96acab42-2ada-48af-83b3-541a30f200b2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1666,9 +1669,6 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:20:08 GMT" - ], "Content-Length": [ "567" ], @@ -1679,53 +1679,56 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8823/providers/Microsoft.EventHub/namespaces/sdk-NS-3160/disasterRecoveryConfigs/sdk-NS-3160\",\r\n \"name\": \"sdk-NS-3160\",\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-8823/providers/Microsoft.EventHub/namespaces/sdk-NS-6100\",\r\n \"alternateName\": \"sdk-DisasterRecovery-9893\",\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-6839/providers/Microsoft.EventHub/namespaces/sdk-NS-7350/disasterRecoveryConfigs/sdk-NS-7350\",\r\n \"name\": \"sdk-NS-7350\",\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-6839/providers/Microsoft.EventHub/namespaces/sdk-NS-4107\",\r\n \"alternateName\": \"sdk-DisasterRecovery-3919\",\r\n \"role\": \"Primary\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8823/providers/Microsoft.EventHub/namespaces/sdk-NS-3160/disasterRecoveryConfigs/sdk-NS-3160?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItODgyMy9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTMxNjAvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLU5TLTMxNjA/YXBpLXZlcnNpb249MjAyMS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-6839/providers/Microsoft.EventHub/namespaces/sdk-NS-7350/disasterRecoveryConfigs/sdk-NS-7350?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNjgzOS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTczNTAvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLU5TLTczNTA/YXBpLXZlcnNpb249MjAyMS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "236d3d96-d6cb-4a76-8f3f-a9d9fb4bb15d" + "7a6787ac-31be-4dcc-b29e-bee04bc66b3a" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:30:49 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "2d574b3f-3c82-43fc-9f6d-65d834339675_M5SN1_M5SN1" + "bb6d75b5-af69-4524-8aed-24e38860750b_M8CH3_M8CH3" ], "Server-SB": [ - "Service-Bus-Resource-Provider/SN1" - ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" + "Service-Bus-Resource-Provider/CH3" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11981" + "11977" ], "x-ms-correlation-request-id": [ - "adca498e-cc5c-4a5e-93d6-d62fede7907f" + "554e03d5-3418-4da0-b383-01eaae4a74af" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T042018Z:adca498e-cc5c-4a5e-93d6-d62fede7907f" + "SOUTHINDIA:20211115T023049Z:554e03d5-3418-4da0-b383-01eaae4a74af" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1733,9 +1736,6 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:20:18 GMT" - ], "Content-Length": [ "567" ], @@ -1746,53 +1746,56 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8823/providers/Microsoft.EventHub/namespaces/sdk-NS-3160/disasterRecoveryConfigs/sdk-NS-3160\",\r\n \"name\": \"sdk-NS-3160\",\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-8823/providers/Microsoft.EventHub/namespaces/sdk-NS-6100\",\r\n \"alternateName\": \"sdk-DisasterRecovery-9893\",\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-6839/providers/Microsoft.EventHub/namespaces/sdk-NS-7350/disasterRecoveryConfigs/sdk-NS-7350\",\r\n \"name\": \"sdk-NS-7350\",\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-6839/providers/Microsoft.EventHub/namespaces/sdk-NS-4107\",\r\n \"alternateName\": \"sdk-DisasterRecovery-3919\",\r\n \"role\": \"Primary\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8823/providers/Microsoft.EventHub/namespaces/sdk-NS-3160/disasterRecoveryConfigs/sdk-NS-3160?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItODgyMy9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTMxNjAvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLU5TLTMxNjA/YXBpLXZlcnNpb249MjAyMS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-6839/providers/Microsoft.EventHub/namespaces/sdk-NS-7350/disasterRecoveryConfigs/sdk-NS-7350?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNjgzOS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTczNTAvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLU5TLTczNTA/YXBpLXZlcnNpb249MjAyMS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d1be1f23-87dd-47ad-9584-28e79b3d4150" + "9c8c5275-9de2-4fe3-af63-224e93b8f9bb" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:31:00 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "855033aa-3951-435d-9ead-d7a9604b1ece_M5SN1_M5SN1" + "65a53f10-24f7-42b4-a2e3-e4afadebad49_M8CH3_M8CH3" ], "Server-SB": [ - "Service-Bus-Resource-Provider/SN1" - ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" + "Service-Bus-Resource-Provider/CH3" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11980" + "11976" ], "x-ms-correlation-request-id": [ - "d6baf50d-09db-4538-bebd-05bfbb7fcbde" + "f49f1b85-7624-4327-a398-f4993e9114fc" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T042029Z:d6baf50d-09db-4538-bebd-05bfbb7fcbde" + "SOUTHINDIA:20211115T023101Z:f49f1b85-7624-4327-a398-f4993e9114fc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1800,9 +1803,6 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:20:28 GMT" - ], "Content-Length": [ "567" ], @@ -1813,53 +1813,56 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8823/providers/Microsoft.EventHub/namespaces/sdk-NS-3160/disasterRecoveryConfigs/sdk-NS-3160\",\r\n \"name\": \"sdk-NS-3160\",\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-8823/providers/Microsoft.EventHub/namespaces/sdk-NS-6100\",\r\n \"alternateName\": \"sdk-DisasterRecovery-9893\",\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-6839/providers/Microsoft.EventHub/namespaces/sdk-NS-7350/disasterRecoveryConfigs/sdk-NS-7350\",\r\n \"name\": \"sdk-NS-7350\",\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-6839/providers/Microsoft.EventHub/namespaces/sdk-NS-4107\",\r\n \"alternateName\": \"sdk-DisasterRecovery-3919\",\r\n \"role\": \"Primary\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8823/providers/Microsoft.EventHub/namespaces/sdk-NS-3160/disasterRecoveryConfigs/sdk-NS-3160?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItODgyMy9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTMxNjAvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLU5TLTMxNjA/YXBpLXZlcnNpb249MjAyMS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-6839/providers/Microsoft.EventHub/namespaces/sdk-NS-7350/disasterRecoveryConfigs/sdk-NS-7350?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNjgzOS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTczNTAvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLU5TLTczNTA/YXBpLXZlcnNpb249MjAyMS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bd3f468b-2174-4344-aff6-3434dff34634" + "2cdc5c66-d7e7-41e7-b737-80bdbc26564f" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:31:10 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "bde046ef-f75d-440a-b7d2-8fa716458709_M5SN1_M5SN1" + "8d8f2610-582f-4ca1-a22c-5fda3621cd97_M8CH3_M8CH3" ], "Server-SB": [ - "Service-Bus-Resource-Provider/SN1" - ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" + "Service-Bus-Resource-Provider/CH3" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11979" + "11975" ], "x-ms-correlation-request-id": [ - "6645ba8c-746a-4928-9db5-6dfffddcd01a" + "05e36147-98d9-4a19-9e3a-8433b92861f5" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T042039Z:6645ba8c-746a-4928-9db5-6dfffddcd01a" + "SOUTHINDIA:20211115T023111Z:05e36147-98d9-4a19-9e3a-8433b92861f5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1867,9 +1870,6 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:20:38 GMT" - ], "Content-Length": [ "567" ], @@ -1880,53 +1880,56 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8823/providers/Microsoft.EventHub/namespaces/sdk-NS-3160/disasterRecoveryConfigs/sdk-NS-3160\",\r\n \"name\": \"sdk-NS-3160\",\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-8823/providers/Microsoft.EventHub/namespaces/sdk-NS-6100\",\r\n \"alternateName\": \"sdk-DisasterRecovery-9893\",\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-6839/providers/Microsoft.EventHub/namespaces/sdk-NS-7350/disasterRecoveryConfigs/sdk-NS-7350\",\r\n \"name\": \"sdk-NS-7350\",\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-6839/providers/Microsoft.EventHub/namespaces/sdk-NS-4107\",\r\n \"alternateName\": \"sdk-DisasterRecovery-3919\",\r\n \"role\": \"Primary\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8823/providers/Microsoft.EventHub/namespaces/sdk-NS-3160/disasterRecoveryConfigs/sdk-NS-3160?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItODgyMy9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTMxNjAvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLU5TLTMxNjA/YXBpLXZlcnNpb249MjAyMS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-6839/providers/Microsoft.EventHub/namespaces/sdk-NS-7350/disasterRecoveryConfigs/sdk-NS-7350?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNjgzOS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTczNTAvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLU5TLTczNTA/YXBpLXZlcnNpb249MjAyMS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "914f55b0-ec23-4dcc-a3b6-d9ad7b8e522b" + "de1a0dcc-8a16-4dcc-a8d0-c06602e199dd" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:31:21 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "6bc5890f-dea3-4af9-94c1-a4cf110303e5_M3SN1_M3SN1" + "8d1b664c-7e59-48ec-9aa5-f54ba4fa8e9c_M8CH3_M8CH3" ], "Server-SB": [ - "Service-Bus-Resource-Provider/SN1" - ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" + "Service-Bus-Resource-Provider/CH3" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11978" + "11974" ], "x-ms-correlation-request-id": [ - "2d0a178b-7b87-4732-81e7-40d19262b23d" + "ec16556d-b58b-442e-adc6-5a65b2d40c05" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T042049Z:2d0a178b-7b87-4732-81e7-40d19262b23d" + "SOUTHINDIA:20211115T023121Z:ec16556d-b58b-442e-adc6-5a65b2d40c05" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1934,9 +1937,6 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:20:48 GMT" - ], "Content-Length": [ "567" ], @@ -1947,53 +1947,56 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8823/providers/Microsoft.EventHub/namespaces/sdk-NS-3160/disasterRecoveryConfigs/sdk-NS-3160\",\r\n \"name\": \"sdk-NS-3160\",\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-8823/providers/Microsoft.EventHub/namespaces/sdk-NS-6100\",\r\n \"alternateName\": \"sdk-DisasterRecovery-9893\",\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-6839/providers/Microsoft.EventHub/namespaces/sdk-NS-7350/disasterRecoveryConfigs/sdk-NS-7350\",\r\n \"name\": \"sdk-NS-7350\",\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-6839/providers/Microsoft.EventHub/namespaces/sdk-NS-4107\",\r\n \"alternateName\": \"sdk-DisasterRecovery-3919\",\r\n \"role\": \"Primary\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8823/providers/Microsoft.EventHub/namespaces/sdk-NS-3160/disasterRecoveryConfigs/sdk-NS-3160?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItODgyMy9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTMxNjAvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLU5TLTMxNjA/YXBpLXZlcnNpb249MjAyMS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-6839/providers/Microsoft.EventHub/namespaces/sdk-NS-7350/disasterRecoveryConfigs/sdk-NS-7350?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNjgzOS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTczNTAvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLU5TLTczNTA/YXBpLXZlcnNpb249MjAyMS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9e173157-ab18-46d3-a873-de4f3967d9fb" + "bb67b718-528d-4d4a-8c48-64d5f0606af3" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:31:31 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "88fa8a64-0f79-4777-91b7-785070e82dc4_M5SN1_M5SN1" + "7e2aca1e-04ce-4aef-92a2-e61719198c4c_M8CH3_M8CH3" ], "Server-SB": [ - "Service-Bus-Resource-Provider/SN1" - ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" + "Service-Bus-Resource-Provider/CH3" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11977" + "11973" ], "x-ms-correlation-request-id": [ - "79117293-0327-43f1-abe9-2b57a336233a" + "1a6304e5-7cd5-4fe6-bb3a-40d36e7b1802" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T042059Z:79117293-0327-43f1-abe9-2b57a336233a" + "SOUTHINDIA:20211115T023131Z:1a6304e5-7cd5-4fe6-bb3a-40d36e7b1802" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2001,11 +2004,8 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:20:59 GMT" - ], "Content-Length": [ - "442" + "567" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2014,53 +2014,56 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8823/providers/Microsoft.EventHub/namespaces/sdk-NS-3160/disasterRecoveryConfigs/sdk-NS-3160\",\r\n \"name\": \"sdk-NS-3160\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/disasterrecoveryconfigs\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"partnerNamespace\": \"\",\r\n \"alternateName\": \"sdk-DisasterRecovery-9893\",\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-6839/providers/Microsoft.EventHub/namespaces/sdk-NS-7350/disasterRecoveryConfigs/sdk-NS-7350\",\r\n \"name\": \"sdk-NS-7350\",\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-6839/providers/Microsoft.EventHub/namespaces/sdk-NS-4107\",\r\n \"alternateName\": \"sdk-DisasterRecovery-3919\",\r\n \"role\": \"Primary\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8823/providers/Microsoft.EventHub/namespaces/sdk-NS-3160/disasterRecoveryConfigs/sdk-NS-3160?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItODgyMy9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTMxNjAvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLU5TLTMxNjA/YXBpLXZlcnNpb249MjAyMS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-6839/providers/Microsoft.EventHub/namespaces/sdk-NS-7350/disasterRecoveryConfigs/sdk-NS-7350?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNjgzOS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTczNTAvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLU5TLTczNTA/YXBpLXZlcnNpb249MjAyMS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "765981f7-4903-4011-bb40-4764ed8f18eb" + "f5346b10-180d-4d27-8e2b-69b236ab6ee4" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:31:41 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "28348780-e419-482e-970e-2d4fa61c94b5_M5SN1_M5SN1" + "431bb2f1-21bb-4a23-9436-76fb25c27440_M8CH3_M8CH3" ], "Server-SB": [ - "Service-Bus-Resource-Provider/SN1" - ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" + "Service-Bus-Resource-Provider/CH3" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11976" + "11972" ], "x-ms-correlation-request-id": [ - "18843d16-d226-4854-b459-b40a906678ab" + "9c2ea498-1199-4324-af3d-d7e688788491" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T042116Z:18843d16-d226-4854-b459-b40a906678ab" + "SOUTHINDIA:20211115T023142Z:9c2ea498-1199-4324-af3d-d7e688788491" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2068,11 +2071,8 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:21:15 GMT" - ], "Content-Length": [ - "567" + "442" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2081,53 +2081,56 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8823/providers/Microsoft.EventHub/namespaces/sdk-NS-3160/disasterRecoveryConfigs/sdk-NS-3160\",\r\n \"name\": \"sdk-NS-3160\",\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-8823/providers/Microsoft.EventHub/namespaces/sdk-NS-6100\",\r\n \"alternateName\": \"sdk-DisasterRecovery-9893\",\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-6839/providers/Microsoft.EventHub/namespaces/sdk-NS-7350/disasterRecoveryConfigs/sdk-NS-7350\",\r\n \"name\": \"sdk-NS-7350\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/disasterrecoveryconfigs\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"partnerNamespace\": \"\",\r\n \"alternateName\": \"sdk-DisasterRecovery-3919\",\r\n \"role\": \"PrimaryNotReplicating\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8823/providers/Microsoft.EventHub/namespaces/sdk-NS-3160/disasterRecoveryConfigs/sdk-NS-3160?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItODgyMy9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTMxNjAvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLU5TLTMxNjA/YXBpLXZlcnNpb249MjAyMS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-6839/providers/Microsoft.EventHub/namespaces/sdk-NS-7350/disasterRecoveryConfigs/sdk-NS-7350?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNjgzOS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTczNTAvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLU5TLTczNTA/YXBpLXZlcnNpb249MjAyMS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b033b6d5-09fa-4a5c-9275-13838ad29b0d" + "18179f63-7115-47e8-885f-7d6f1fc067ce" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:31:58 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "035cf476-a038-4dbd-8ddb-de8440020b9f_M5SN1_M5SN1" + "721e0ab4-0a7c-4a1d-a4c5-80558a134b08_M8CH3_M8CH3" ], "Server-SB": [ - "Service-Bus-Resource-Provider/SN1" - ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" + "Service-Bus-Resource-Provider/CH3" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11975" + "11971" ], "x-ms-correlation-request-id": [ - "98ef9386-b478-45f1-8e49-77af739bb245" + "e7cbdd09-9944-4f03-ab20-e0df53c9a7aa" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T042126Z:98ef9386-b478-45f1-8e49-77af739bb245" + "SOUTHINDIA:20211115T023158Z:e7cbdd09-9944-4f03-ab20-e0df53c9a7aa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2135,9 +2138,6 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:21:26 GMT" - ], "Content-Length": [ "567" ], @@ -2148,53 +2148,56 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8823/providers/Microsoft.EventHub/namespaces/sdk-NS-3160/disasterRecoveryConfigs/sdk-NS-3160\",\r\n \"name\": \"sdk-NS-3160\",\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-8823/providers/Microsoft.EventHub/namespaces/sdk-NS-6100\",\r\n \"alternateName\": \"sdk-DisasterRecovery-9893\",\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-6839/providers/Microsoft.EventHub/namespaces/sdk-NS-7350/disasterRecoveryConfigs/sdk-NS-7350\",\r\n \"name\": \"sdk-NS-7350\",\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-6839/providers/Microsoft.EventHub/namespaces/sdk-NS-4107\",\r\n \"alternateName\": \"sdk-DisasterRecovery-3919\",\r\n \"role\": \"Primary\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8823/providers/Microsoft.EventHub/namespaces/sdk-NS-3160/disasterRecoveryConfigs/sdk-NS-3160?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItODgyMy9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTMxNjAvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLU5TLTMxNjA/YXBpLXZlcnNpb249MjAyMS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-6839/providers/Microsoft.EventHub/namespaces/sdk-NS-7350/disasterRecoveryConfigs/sdk-NS-7350?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNjgzOS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTczNTAvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLU5TLTczNTA/YXBpLXZlcnNpb249MjAyMS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "18bb0424-c4d9-495c-aa57-c80cb7f54eae" + "c2922b28-f41e-4968-8666-a0fa9a053d9d" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:32:08 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "9dd16fbe-9710-4262-b998-eb79af7751dc_M5SN1_M5SN1" + "8e8b453a-f1ef-4836-86e5-d93a1d856cd4_M5CH3_M5CH3" ], "Server-SB": [ - "Service-Bus-Resource-Provider/SN1" - ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" + "Service-Bus-Resource-Provider/CH3" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11974" + "11970" ], "x-ms-correlation-request-id": [ - "366d774c-351b-4767-a376-e5211fbd222b" + "7ee1785e-571a-4cd1-84be-e9f82436048e" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T042137Z:366d774c-351b-4767-a376-e5211fbd222b" + "SOUTHINDIA:20211115T023209Z:7ee1785e-571a-4cd1-84be-e9f82436048e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2202,9 +2205,6 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:21:36 GMT" - ], "Content-Length": [ "567" ], @@ -2215,53 +2215,56 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8823/providers/Microsoft.EventHub/namespaces/sdk-NS-3160/disasterRecoveryConfigs/sdk-NS-3160\",\r\n \"name\": \"sdk-NS-3160\",\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-8823/providers/Microsoft.EventHub/namespaces/sdk-NS-6100\",\r\n \"alternateName\": \"sdk-DisasterRecovery-9893\",\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-6839/providers/Microsoft.EventHub/namespaces/sdk-NS-7350/disasterRecoveryConfigs/sdk-NS-7350\",\r\n \"name\": \"sdk-NS-7350\",\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-6839/providers/Microsoft.EventHub/namespaces/sdk-NS-4107\",\r\n \"alternateName\": \"sdk-DisasterRecovery-3919\",\r\n \"role\": \"Primary\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8823/providers/Microsoft.EventHub/namespaces/sdk-NS-3160/disasterRecoveryConfigs/sdk-NS-3160?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItODgyMy9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTMxNjAvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLU5TLTMxNjA/YXBpLXZlcnNpb249MjAyMS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-6839/providers/Microsoft.EventHub/namespaces/sdk-NS-7350/disasterRecoveryConfigs/sdk-NS-7350?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNjgzOS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTczNTAvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLU5TLTczNTA/YXBpLXZlcnNpb249MjAyMS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "16940e75-7110-4cd0-8e5a-f1c4293a7eb8" + "6d3f10b9-8a10-4769-9b7b-e0901a6d875f" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:32:18 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "f6c4dcef-9640-4e3d-9946-e77828d95f86_M5SN1_M5SN1" + "9d504137-eb0a-42f8-aa03-c42a15a9808f_M8CH3_M8CH3" ], "Server-SB": [ - "Service-Bus-Resource-Provider/SN1" - ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" + "Service-Bus-Resource-Provider/CH3" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11973" + "11969" ], "x-ms-correlation-request-id": [ - "623aa3f6-3c9f-4912-a40e-eb1acc3b8acd" + "fd27a2a7-21a4-4329-b052-4634312fdb9d" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T042147Z:623aa3f6-3c9f-4912-a40e-eb1acc3b8acd" + "SOUTHINDIA:20211115T023219Z:fd27a2a7-21a4-4329-b052-4634312fdb9d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2269,9 +2272,6 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:21:47 GMT" - ], "Content-Length": [ "567" ], @@ -2282,53 +2282,56 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8823/providers/Microsoft.EventHub/namespaces/sdk-NS-3160/disasterRecoveryConfigs/sdk-NS-3160\",\r\n \"name\": \"sdk-NS-3160\",\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-8823/providers/Microsoft.EventHub/namespaces/sdk-NS-6100\",\r\n \"alternateName\": \"sdk-DisasterRecovery-9893\",\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-6839/providers/Microsoft.EventHub/namespaces/sdk-NS-7350/disasterRecoveryConfigs/sdk-NS-7350\",\r\n \"name\": \"sdk-NS-7350\",\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-6839/providers/Microsoft.EventHub/namespaces/sdk-NS-4107\",\r\n \"alternateName\": \"sdk-DisasterRecovery-3919\",\r\n \"role\": \"Primary\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8823/providers/Microsoft.EventHub/namespaces/sdk-NS-3160/disasterRecoveryConfigs/sdk-NS-3160?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItODgyMy9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTMxNjAvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLU5TLTMxNjA/YXBpLXZlcnNpb249MjAyMS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-6839/providers/Microsoft.EventHub/namespaces/sdk-NS-7350/disasterRecoveryConfigs/sdk-NS-7350?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNjgzOS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTczNTAvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLU5TLTczNTA/YXBpLXZlcnNpb249MjAyMS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f1ce2b92-02c7-47c7-8665-a4bd22fcfd28" + "a20ca49e-71d2-4ed8-ae06-ee2fa8f364e1" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:32:28 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "c9608706-9b82-4201-90fa-6fb414b882b0_M5SN1_M5SN1" + "52ea035d-a953-4de9-81ef-86feeadd0aca_M8CH3_M8CH3" ], "Server-SB": [ - "Service-Bus-Resource-Provider/SN1" - ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" + "Service-Bus-Resource-Provider/CH3" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11972" + "11968" ], "x-ms-correlation-request-id": [ - "aa4a20da-182f-4aab-af75-9567cdecd4d8" + "990b04c8-efcc-4140-aec5-c254b2fb181e" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T042157Z:aa4a20da-182f-4aab-af75-9567cdecd4d8" + "SOUTHINDIA:20211115T023229Z:990b04c8-efcc-4140-aec5-c254b2fb181e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2336,9 +2339,6 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:21:57 GMT" - ], "Content-Length": [ "567" ], @@ -2349,53 +2349,56 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8823/providers/Microsoft.EventHub/namespaces/sdk-NS-3160/disasterRecoveryConfigs/sdk-NS-3160\",\r\n \"name\": \"sdk-NS-3160\",\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-8823/providers/Microsoft.EventHub/namespaces/sdk-NS-6100\",\r\n \"alternateName\": \"sdk-DisasterRecovery-9893\",\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-6839/providers/Microsoft.EventHub/namespaces/sdk-NS-7350/disasterRecoveryConfigs/sdk-NS-7350\",\r\n \"name\": \"sdk-NS-7350\",\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-6839/providers/Microsoft.EventHub/namespaces/sdk-NS-4107\",\r\n \"alternateName\": \"sdk-DisasterRecovery-3919\",\r\n \"role\": \"Primary\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8823/providers/Microsoft.EventHub/namespaces/sdk-NS-3160/disasterRecoveryConfigs/sdk-NS-3160?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItODgyMy9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTMxNjAvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLU5TLTMxNjA/YXBpLXZlcnNpb249MjAyMS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-6839/providers/Microsoft.EventHub/namespaces/sdk-NS-7350/disasterRecoveryConfigs/sdk-NS-7350?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNjgzOS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTczNTAvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLU5TLTczNTA/YXBpLXZlcnNpb249MjAyMS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bdc04a4a-8854-4b5e-ae09-127766dba7a8" + "996d672e-940e-487d-b17d-e886d7791554" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:32:40 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "5244383f-2345-47d2-b976-2dde06621daa_M4SN1_M4SN1" + "d7125c61-cee8-4626-9a4f-32bda22bd88d_M8CH3_M8CH3" ], "Server-SB": [ - "Service-Bus-Resource-Provider/SN1" - ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" + "Service-Bus-Resource-Provider/CH3" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11971" + "11967" ], "x-ms-correlation-request-id": [ - "d16fcf5d-8637-4e1b-bbfe-6bd5b4738e8b" + "d924923c-b3a8-41eb-8871-56d6b7dd781b" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T042207Z:d16fcf5d-8637-4e1b-bbfe-6bd5b4738e8b" + "SOUTHINDIA:20211115T023240Z:d924923c-b3a8-41eb-8871-56d6b7dd781b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2403,9 +2406,6 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:22:07 GMT" - ], "Content-Length": [ "567" ], @@ -2416,53 +2416,56 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8823/providers/Microsoft.EventHub/namespaces/sdk-NS-3160/disasterRecoveryConfigs/sdk-NS-3160\",\r\n \"name\": \"sdk-NS-3160\",\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-8823/providers/Microsoft.EventHub/namespaces/sdk-NS-6100\",\r\n \"alternateName\": \"sdk-DisasterRecovery-9893\",\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-6839/providers/Microsoft.EventHub/namespaces/sdk-NS-7350/disasterRecoveryConfigs/sdk-NS-7350\",\r\n \"name\": \"sdk-NS-7350\",\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-6839/providers/Microsoft.EventHub/namespaces/sdk-NS-4107\",\r\n \"alternateName\": \"sdk-DisasterRecovery-3919\",\r\n \"role\": \"Primary\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8823/providers/Microsoft.EventHub/namespaces/sdk-NS-3160/disasterRecoveryConfigs/sdk-NS-3160?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItODgyMy9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTMxNjAvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLU5TLTMxNjA/YXBpLXZlcnNpb249MjAyMS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-6839/providers/Microsoft.EventHub/namespaces/sdk-NS-7350/disasterRecoveryConfigs/sdk-NS-7350?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNjgzOS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTczNTAvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLU5TLTczNTA/YXBpLXZlcnNpb249MjAyMS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8aa64246-298e-466d-be74-09fa423080ce" + "88aa6192-0515-42db-8535-579aaa6b057d" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:32:50 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "d9992b36-0265-4f79-a347-9e9d91b853d5_M4SN1_M4SN1" + "6e0124d8-e76a-477b-8da3-ac56ae02d919_M8CH3_M8CH3" ], "Server-SB": [ - "Service-Bus-Resource-Provider/SN1" - ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" + "Service-Bus-Resource-Provider/CH3" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11970" + "11966" ], "x-ms-correlation-request-id": [ - "a1800c02-ec19-4a33-962e-18f31faacccc" + "d517138f-b640-4313-a23a-dab539b29490" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T042217Z:a1800c02-ec19-4a33-962e-18f31faacccc" + "SOUTHINDIA:20211115T023250Z:d517138f-b640-4313-a23a-dab539b29490" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2470,9 +2473,6 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:22:17 GMT" - ], "Content-Length": [ "567" ], @@ -2483,53 +2483,56 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8823/providers/Microsoft.EventHub/namespaces/sdk-NS-3160/disasterRecoveryConfigs/sdk-NS-3160\",\r\n \"name\": \"sdk-NS-3160\",\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-8823/providers/Microsoft.EventHub/namespaces/sdk-NS-6100\",\r\n \"alternateName\": \"sdk-DisasterRecovery-9893\",\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-6839/providers/Microsoft.EventHub/namespaces/sdk-NS-7350/disasterRecoveryConfigs/sdk-NS-7350\",\r\n \"name\": \"sdk-NS-7350\",\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-6839/providers/Microsoft.EventHub/namespaces/sdk-NS-4107\",\r\n \"alternateName\": \"sdk-DisasterRecovery-3919\",\r\n \"role\": \"Primary\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8823/providers/Microsoft.EventHub/namespaces/sdk-NS-3160/disasterRecoveryConfigs/sdk-NS-3160?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItODgyMy9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTMxNjAvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLU5TLTMxNjA/YXBpLXZlcnNpb249MjAyMS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-6839/providers/Microsoft.EventHub/namespaces/sdk-NS-7350/disasterRecoveryConfigs/sdk-NS-7350?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNjgzOS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTczNTAvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLU5TLTczNTA/YXBpLXZlcnNpb249MjAyMS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "db0cf796-e59c-4b6c-83df-5573213edfdb" + "705af663-43af-410c-b0ae-b9817b621501" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:33:00 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "e3ea464a-77cb-4385-afd7-5920c6f65ca7_M4SN1_M4SN1" + "00c48811-9e4b-497a-95d7-0cdc716eafcf_M8CH3_M8CH3" ], "Server-SB": [ - "Service-Bus-Resource-Provider/SN1" - ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" + "Service-Bus-Resource-Provider/CH3" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11969" + "11965" ], "x-ms-correlation-request-id": [ - "a32c3572-d5ad-4a1f-931e-553d023a4e61" + "1a2b9303-7086-4a34-88d2-0b593f405667" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T042228Z:a32c3572-d5ad-4a1f-931e-553d023a4e61" + "SOUTHINDIA:20211115T023300Z:1a2b9303-7086-4a34-88d2-0b593f405667" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2537,9 +2540,6 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:22:27 GMT" - ], "Content-Length": [ "567" ], @@ -2550,53 +2550,123 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8823/providers/Microsoft.EventHub/namespaces/sdk-NS-3160/disasterRecoveryConfigs/sdk-NS-3160\",\r\n \"name\": \"sdk-NS-3160\",\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-8823/providers/Microsoft.EventHub/namespaces/sdk-NS-6100\",\r\n \"alternateName\": \"sdk-DisasterRecovery-9893\",\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-6839/providers/Microsoft.EventHub/namespaces/sdk-NS-7350/disasterRecoveryConfigs/sdk-NS-7350\",\r\n \"name\": \"sdk-NS-7350\",\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-6839/providers/Microsoft.EventHub/namespaces/sdk-NS-4107\",\r\n \"alternateName\": \"sdk-DisasterRecovery-3919\",\r\n \"role\": \"Primary\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8823/providers/Microsoft.EventHub/namespaces/sdk-NS-3160/disasterRecoveryConfigs/sdk-NS-3160?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItODgyMy9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTMxNjAvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLU5TLTMxNjA/YXBpLXZlcnNpb249MjAyMS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-6839/providers/Microsoft.EventHub/namespaces/sdk-NS-7350/disasterRecoveryConfigs/sdk-NS-7350?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNjgzOS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTczNTAvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLU5TLTczNTA/YXBpLXZlcnNpb249MjAyMS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c5423d46-636d-4410-8ff4-80c1c892fb5d" + "ba9ccf1b-de49-4da7-98d2-6b78179366cc" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:33:10 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "9024f8bc-8821-4889-80d2-084f904304be_M4SN1_M4SN1" + "25383ad1-47c5-4905-ae0c-3a6ba3ebbad0_M8CH3_M8CH3" ], "Server-SB": [ - "Service-Bus-Resource-Provider/SN1" + "Service-Bus-Resource-Provider/CH3" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11964" + ], + "x-ms-correlation-request-id": [ + "a555e84f-b2fb-4499-a291-82a5ee46fb4e" + ], + "x-ms-routing-request-id": [ + "SOUTHINDIA:20211115T023311Z:a555e84f-b2fb-4499-a291-82a5ee46fb4e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "567" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-6839/providers/Microsoft.EventHub/namespaces/sdk-NS-7350/disasterRecoveryConfigs/sdk-NS-7350\",\r\n \"name\": \"sdk-NS-7350\",\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-6839/providers/Microsoft.EventHub/namespaces/sdk-NS-4107\",\r\n \"alternateName\": \"sdk-DisasterRecovery-3919\",\r\n \"role\": \"Primary\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-6839/providers/Microsoft.EventHub/namespaces/sdk-NS-7350/disasterRecoveryConfigs/sdk-NS-7350?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNjgzOS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTczNTAvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLU5TLTczNTA/YXBpLXZlcnNpb249MjAyMS0xMS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9a44e050-0ab7-4039-9a96-b4739857a4fd" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 15 Nov 2021 02:33:21 GMT" + ], + "Pragma": [ + "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/SN1", + "Service-Bus-Resource-Provider/CH3", "Microsoft-HTTPAPI/2.0" ], + "x-ms-request-id": [ + "01e6dd7e-cb7e-4d9b-9fd5-b589664adce6_M8CH3_M8CH3" + ], + "Server-SB": [ + "Service-Bus-Resource-Provider/CH3" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11968" + "11963" ], "x-ms-correlation-request-id": [ - "82b052cf-fd00-4fc2-93fc-719fa5166f76" + "c0d68041-cca3-4cb8-9780-6c669774ccf4" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T042238Z:82b052cf-fd00-4fc2-93fc-719fa5166f76" + "SOUTHINDIA:20211115T023321Z:c0d68041-cca3-4cb8-9780-6c669774ccf4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2604,9 +2674,6 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:22:38 GMT" - ], "Content-Length": [ "606" ], @@ -2617,53 +2684,56 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8823/providers/Microsoft.EventHub/namespaces/sdk-NS-3160/disasterRecoveryConfigs/sdk-NS-3160\",\r\n \"name\": \"sdk-NS-3160\",\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-8823/providers/Microsoft.EventHub/namespaces/sdk-NS-6100\",\r\n \"alternateName\": \"sdk-DisasterRecovery-9893\",\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-6839/providers/Microsoft.EventHub/namespaces/sdk-NS-7350/disasterRecoveryConfigs/sdk-NS-7350\",\r\n \"name\": \"sdk-NS-7350\",\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-6839/providers/Microsoft.EventHub/namespaces/sdk-NS-4107\",\r\n \"alternateName\": \"sdk-DisasterRecovery-3919\",\r\n \"role\": \"Primary\",\r\n \"type\": \"MetadataReplication\",\r\n \"pendingReplicationOperationsCount\": 0\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8823/providers/Microsoft.EventHub/namespaces/sdk-NS-6100/disasterRecoveryConfigs/sdk-NS-3160?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItODgyMy9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTYxMDAvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLU5TLTMxNjA/YXBpLXZlcnNpb249MjAyMS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-6839/providers/Microsoft.EventHub/namespaces/sdk-NS-4107/disasterRecoveryConfigs/sdk-NS-7350?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNjgzOS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTQxMDcvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLU5TLTczNTA/YXBpLXZlcnNpb249MjAyMS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "92f2cee2-32bf-44c2-84d0-137b1c8b30a5" + "edd6cb8e-f2f4-4657-b692-461f71010d6d" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:29:09 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "05ef6472-814f-4dab-9f8d-2edb201f1e88_M5SN1_M5SN1" + "4676a0bc-9063-40df-9999-81e2d98e7e86_M9CH3_M9CH3" ], "Server-SB": [ - "Service-Bus-Resource-Provider/SN1" - ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" + "Service-Bus-Resource-Provider/CH3" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11989" ], "x-ms-correlation-request-id": [ - "a38fbe69-c7a5-475d-8dc3-03134a4af26e" + "808a1935-13be-4385-999a-ad77b826f29d" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T041827Z:a38fbe69-c7a5-475d-8dc3-03134a4af26e" + "SOUTHINDIA:20211115T022910Z:808a1935-13be-4385-999a-ad77b826f29d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2671,9 +2741,6 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:18:27 GMT" - ], "Content-Length": [ "569" ], @@ -2684,53 +2751,56 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8823/providers/Microsoft.EventHub/namespaces/sdk-NS-6100/disasterRecoveryConfigs/sdk-NS-3160\",\r\n \"name\": \"sdk-NS-3160\",\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-8823/providers/Microsoft.EventHub/namespaces/sdk-NS-3160\",\r\n \"alternateName\": \"sdk-DisasterRecovery-9893\",\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-6839/providers/Microsoft.EventHub/namespaces/sdk-NS-4107/disasterRecoveryConfigs/sdk-NS-7350\",\r\n \"name\": \"sdk-NS-7350\",\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-6839/providers/Microsoft.EventHub/namespaces/sdk-NS-7350\",\r\n \"alternateName\": \"sdk-DisasterRecovery-3919\",\r\n \"role\": \"Secondary\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8823/providers/Microsoft.EventHub/namespaces/sdk-NS-6100/disasterRecoveryConfigs/sdk-NS-3160?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItODgyMy9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTYxMDAvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLU5TLTMxNjA/YXBpLXZlcnNpb249MjAyMS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-6839/providers/Microsoft.EventHub/namespaces/sdk-NS-4107/disasterRecoveryConfigs/sdk-NS-7350?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNjgzOS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTQxMDcvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLU5TLTczNTA/YXBpLXZlcnNpb249MjAyMS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "69537572-8634-40d0-9a0b-41494a714fcd" + "41145bd4-54d5-4128-b362-31522ade41e9" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:33:32 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "b6fd08ea-8f19-4128-b605-bcb48c0cfca1_M4SN1_M4SN1" + "d0c8921f-57d8-4775-a83b-3a682d466bea_M8CH3_M8CH3" ], "Server-SB": [ - "Service-Bus-Resource-Provider/SN1" - ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" + "Service-Bus-Resource-Provider/CH3" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11967" + "11962" ], "x-ms-correlation-request-id": [ - "42496c2d-8e9a-4979-9c74-94674f040309" + "f0b7d5ec-b622-4aa0-a293-73747090b709" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T042249Z:42496c2d-8e9a-4979-9c74-94674f040309" + "SOUTHINDIA:20211115T023332Z:f0b7d5ec-b622-4aa0-a293-73747090b709" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2738,9 +2808,6 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:22:48 GMT" - ], "Content-Length": [ "569" ], @@ -2751,53 +2818,56 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8823/providers/Microsoft.EventHub/namespaces/sdk-NS-6100/disasterRecoveryConfigs/sdk-NS-3160\",\r\n \"name\": \"sdk-NS-3160\",\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-8823/providers/Microsoft.EventHub/namespaces/sdk-NS-3160\",\r\n \"alternateName\": \"sdk-DisasterRecovery-9893\",\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-6839/providers/Microsoft.EventHub/namespaces/sdk-NS-4107/disasterRecoveryConfigs/sdk-NS-7350\",\r\n \"name\": \"sdk-NS-7350\",\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-6839/providers/Microsoft.EventHub/namespaces/sdk-NS-7350\",\r\n \"alternateName\": \"sdk-DisasterRecovery-3919\",\r\n \"role\": \"Secondary\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8823/providers/Microsoft.EventHub/namespaces/sdk-NS-6100/disasterRecoveryConfigs/sdk-NS-3160?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItODgyMy9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTYxMDAvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLU5TLTMxNjA/YXBpLXZlcnNpb249MjAyMS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-6839/providers/Microsoft.EventHub/namespaces/sdk-NS-4107/disasterRecoveryConfigs/sdk-NS-7350?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNjgzOS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTQxMDcvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLU5TLTczNTA/YXBpLXZlcnNpb249MjAyMS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a9e17f2a-032e-454b-9b14-36199ffcbd00" + "132529f2-04c8-40fa-abf3-4f5597e211b5" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:33:42 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "04b53c90-d775-4152-9e2b-30cc49966775_M4SN1_M4SN1" + "e95cd2a1-26b0-4d7a-acd0-eb7edfd96985_M8CH3_M8CH3" ], "Server-SB": [ - "Service-Bus-Resource-Provider/SN1" - ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" + "Service-Bus-Resource-Provider/CH3" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11966" + "11961" ], "x-ms-correlation-request-id": [ - "1b970af5-f329-4d13-8145-664eb8268484" + "bbcb1643-da0d-4c5b-966c-ea8239f7e707" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T042259Z:1b970af5-f329-4d13-8145-664eb8268484" + "SOUTHINDIA:20211115T023342Z:bbcb1643-da0d-4c5b-966c-ea8239f7e707" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2805,9 +2875,6 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:22:58 GMT" - ], "Content-Length": [ "569" ], @@ -2818,53 +2885,56 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8823/providers/Microsoft.EventHub/namespaces/sdk-NS-6100/disasterRecoveryConfigs/sdk-NS-3160\",\r\n \"name\": \"sdk-NS-3160\",\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-8823/providers/Microsoft.EventHub/namespaces/sdk-NS-3160\",\r\n \"alternateName\": \"sdk-DisasterRecovery-9893\",\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-6839/providers/Microsoft.EventHub/namespaces/sdk-NS-4107/disasterRecoveryConfigs/sdk-NS-7350\",\r\n \"name\": \"sdk-NS-7350\",\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-6839/providers/Microsoft.EventHub/namespaces/sdk-NS-7350\",\r\n \"alternateName\": \"sdk-DisasterRecovery-3919\",\r\n \"role\": \"Secondary\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8823/providers/Microsoft.EventHub/namespaces/sdk-NS-6100/disasterRecoveryConfigs/sdk-NS-3160?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItODgyMy9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTYxMDAvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLU5TLTMxNjA/YXBpLXZlcnNpb249MjAyMS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-6839/providers/Microsoft.EventHub/namespaces/sdk-NS-4107/disasterRecoveryConfigs/sdk-NS-7350?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNjgzOS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTQxMDcvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLU5TLTczNTA/YXBpLXZlcnNpb249MjAyMS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "be670826-f5c3-4ccb-b2b4-2766f10ea69c" + "ca64fad1-82dc-46bc-8e8d-2ae54d8a88ec" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:33:52 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "f416a59a-39a5-4c56-a1a9-c08a67af6d11_M4SN1_M4SN1" + "4382f7b8-8f97-460a-bda6-c5d6820239bf_M5CH3_M5CH3" ], "Server-SB": [ - "Service-Bus-Resource-Provider/SN1" - ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" + "Service-Bus-Resource-Provider/CH3" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11965" + "11960" ], "x-ms-correlation-request-id": [ - "64c655da-1a57-45b2-8b21-8bdeef96aeb1" + "bdbdce0e-0a98-44a4-9908-62c88a069730" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T042309Z:64c655da-1a57-45b2-8b21-8bdeef96aeb1" + "SOUTHINDIA:20211115T023353Z:bdbdce0e-0a98-44a4-9908-62c88a069730" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2872,9 +2942,6 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:23:09 GMT" - ], "Content-Length": [ "569" ], @@ -2885,53 +2952,56 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8823/providers/Microsoft.EventHub/namespaces/sdk-NS-6100/disasterRecoveryConfigs/sdk-NS-3160\",\r\n \"name\": \"sdk-NS-3160\",\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-8823/providers/Microsoft.EventHub/namespaces/sdk-NS-3160\",\r\n \"alternateName\": \"sdk-DisasterRecovery-9893\",\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-6839/providers/Microsoft.EventHub/namespaces/sdk-NS-4107/disasterRecoveryConfigs/sdk-NS-7350\",\r\n \"name\": \"sdk-NS-7350\",\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-6839/providers/Microsoft.EventHub/namespaces/sdk-NS-7350\",\r\n \"alternateName\": \"sdk-DisasterRecovery-3919\",\r\n \"role\": \"Secondary\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8823/providers/Microsoft.EventHub/namespaces/sdk-NS-6100/disasterRecoveryConfigs/sdk-NS-3160?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItODgyMy9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTYxMDAvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLU5TLTMxNjA/YXBpLXZlcnNpb249MjAyMS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-6839/providers/Microsoft.EventHub/namespaces/sdk-NS-4107/disasterRecoveryConfigs/sdk-NS-7350?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNjgzOS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTQxMDcvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLU5TLTczNTA/YXBpLXZlcnNpb249MjAyMS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "93a7e682-acc8-40e5-a374-c56b50e4a7b8" + "d6a5937d-c391-455c-abaf-f0e0ae3d5064" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:34:03 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "edcec64b-9922-478c-822b-35689a2fb992_M2SN1_M2SN1" + "f0165626-2d84-4c3a-8109-e5505496b06c_M8CH3_M8CH3" ], "Server-SB": [ - "Service-Bus-Resource-Provider/SN1" - ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" + "Service-Bus-Resource-Provider/CH3" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11964" + "11959" ], "x-ms-correlation-request-id": [ - "d8e07f0c-85dd-4246-a9b3-d0dcad086a24" + "e1754df9-f7b8-48e3-a4cd-d26fcab87825" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T042319Z:d8e07f0c-85dd-4246-a9b3-d0dcad086a24" + "SOUTHINDIA:20211115T023403Z:e1754df9-f7b8-48e3-a4cd-d26fcab87825" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2939,9 +3009,6 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:23:19 GMT" - ], "Content-Length": [ "569" ], @@ -2952,53 +3019,56 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8823/providers/Microsoft.EventHub/namespaces/sdk-NS-6100/disasterRecoveryConfigs/sdk-NS-3160\",\r\n \"name\": \"sdk-NS-3160\",\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-8823/providers/Microsoft.EventHub/namespaces/sdk-NS-3160\",\r\n \"alternateName\": \"sdk-DisasterRecovery-9893\",\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-6839/providers/Microsoft.EventHub/namespaces/sdk-NS-4107/disasterRecoveryConfigs/sdk-NS-7350\",\r\n \"name\": \"sdk-NS-7350\",\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-6839/providers/Microsoft.EventHub/namespaces/sdk-NS-7350\",\r\n \"alternateName\": \"sdk-DisasterRecovery-3919\",\r\n \"role\": \"Secondary\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8823/providers/Microsoft.EventHub/namespaces/sdk-NS-6100/disasterRecoveryConfigs/sdk-NS-3160?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItODgyMy9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTYxMDAvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLU5TLTMxNjA/YXBpLXZlcnNpb249MjAyMS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-6839/providers/Microsoft.EventHub/namespaces/sdk-NS-4107/disasterRecoveryConfigs/sdk-NS-7350?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNjgzOS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTQxMDcvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLU5TLTczNTA/YXBpLXZlcnNpb249MjAyMS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0b88981c-3f3e-4f19-9600-46cd61c210a0" + "f1d37e5b-bca3-44b9-8360-4fa11da1c8c3" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:34:13 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "00dbd8da-a04d-4bd1-8f5c-f56426270cf0_M4SN1_M4SN1" + "59325e05-2cee-4b3a-8e0f-ed3476d7bab7_M8CH3_M8CH3" ], "Server-SB": [ - "Service-Bus-Resource-Provider/SN1" - ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" + "Service-Bus-Resource-Provider/CH3" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11963" + "11958" ], "x-ms-correlation-request-id": [ - "02bf6109-8977-4391-93a9-7dfe49948d43" + "c3e3bc41-79bc-4f66-a636-59601b110e0d" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T042330Z:02bf6109-8977-4391-93a9-7dfe49948d43" + "SOUTHINDIA:20211115T023413Z:c3e3bc41-79bc-4f66-a636-59601b110e0d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3006,9 +3076,6 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:23:29 GMT" - ], "Content-Length": [ "569" ], @@ -3019,53 +3086,56 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8823/providers/Microsoft.EventHub/namespaces/sdk-NS-6100/disasterRecoveryConfigs/sdk-NS-3160\",\r\n \"name\": \"sdk-NS-3160\",\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-8823/providers/Microsoft.EventHub/namespaces/sdk-NS-3160\",\r\n \"alternateName\": \"sdk-DisasterRecovery-9893\",\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-6839/providers/Microsoft.EventHub/namespaces/sdk-NS-4107/disasterRecoveryConfigs/sdk-NS-7350\",\r\n \"name\": \"sdk-NS-7350\",\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-6839/providers/Microsoft.EventHub/namespaces/sdk-NS-7350\",\r\n \"alternateName\": \"sdk-DisasterRecovery-3919\",\r\n \"role\": \"Secondary\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8823/providers/Microsoft.EventHub/namespaces/sdk-NS-6100/disasterRecoveryConfigs/sdk-NS-3160?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItODgyMy9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTYxMDAvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLU5TLTMxNjA/YXBpLXZlcnNpb249MjAyMS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-6839/providers/Microsoft.EventHub/namespaces/sdk-NS-4107/disasterRecoveryConfigs/sdk-NS-7350?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNjgzOS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTQxMDcvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLU5TLTczNTA/YXBpLXZlcnNpb249MjAyMS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3f3952e8-f60b-4324-8457-2e9ca7e5e8dc" + "a0e22887-585d-4754-bf49-b6480db35ba3" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:34:23 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "8bd87b60-045b-4ef3-a9d7-fbe272fde4f7_M4SN1_M4SN1" + "0f1609de-70dc-45a4-8a64-2314b7811f79_M5CH3_M5CH3" ], "Server-SB": [ - "Service-Bus-Resource-Provider/SN1" - ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" + "Service-Bus-Resource-Provider/CH3" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11962" + "11957" ], "x-ms-correlation-request-id": [ - "b70893cd-8ca2-45ab-877b-df2a598202c6" + "e400592d-1fab-4714-8610-13a5c917f180" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T042340Z:b70893cd-8ca2-45ab-877b-df2a598202c6" + "SOUTHINDIA:20211115T023424Z:e400592d-1fab-4714-8610-13a5c917f180" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3073,9 +3143,6 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:23:39 GMT" - ], "Content-Length": [ "569" ], @@ -3086,53 +3153,56 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8823/providers/Microsoft.EventHub/namespaces/sdk-NS-6100/disasterRecoveryConfigs/sdk-NS-3160\",\r\n \"name\": \"sdk-NS-3160\",\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-8823/providers/Microsoft.EventHub/namespaces/sdk-NS-3160\",\r\n \"alternateName\": \"sdk-DisasterRecovery-9893\",\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-6839/providers/Microsoft.EventHub/namespaces/sdk-NS-4107/disasterRecoveryConfigs/sdk-NS-7350\",\r\n \"name\": \"sdk-NS-7350\",\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-6839/providers/Microsoft.EventHub/namespaces/sdk-NS-7350\",\r\n \"alternateName\": \"sdk-DisasterRecovery-3919\",\r\n \"role\": \"Secondary\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8823/providers/Microsoft.EventHub/namespaces/sdk-NS-6100/disasterRecoveryConfigs/sdk-NS-3160?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItODgyMy9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTYxMDAvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLU5TLTMxNjA/YXBpLXZlcnNpb249MjAyMS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-6839/providers/Microsoft.EventHub/namespaces/sdk-NS-4107/disasterRecoveryConfigs/sdk-NS-7350?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNjgzOS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTQxMDcvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLU5TLTczNTA/YXBpLXZlcnNpb249MjAyMS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fdb378d2-5bb1-4797-ad65-77f0b378e13c" + "ebc5d0b5-bd3f-486e-85b1-42cf88294661" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:34:34 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "82b8d708-3104-406e-b4ac-30119120ae53_M4SN1_M4SN1" + "558b57fc-2e0a-4a7c-ad0a-99eb159195f0_M5CH3_M5CH3" ], "Server-SB": [ - "Service-Bus-Resource-Provider/SN1" - ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" + "Service-Bus-Resource-Provider/CH3" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11961" + "11956" ], "x-ms-correlation-request-id": [ - "2a226642-1898-4a64-b059-2f4e1190f9cb" + "bbfd4fa5-108b-4416-9e01-1ddabcfbdc8d" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T042350Z:2a226642-1898-4a64-b059-2f4e1190f9cb" + "SOUTHINDIA:20211115T023434Z:bbfd4fa5-108b-4416-9e01-1ddabcfbdc8d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3140,9 +3210,6 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:23:49 GMT" - ], "Content-Length": [ "569" ], @@ -3153,53 +3220,56 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8823/providers/Microsoft.EventHub/namespaces/sdk-NS-6100/disasterRecoveryConfigs/sdk-NS-3160\",\r\n \"name\": \"sdk-NS-3160\",\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-8823/providers/Microsoft.EventHub/namespaces/sdk-NS-3160\",\r\n \"alternateName\": \"sdk-DisasterRecovery-9893\",\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-6839/providers/Microsoft.EventHub/namespaces/sdk-NS-4107/disasterRecoveryConfigs/sdk-NS-7350\",\r\n \"name\": \"sdk-NS-7350\",\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-6839/providers/Microsoft.EventHub/namespaces/sdk-NS-7350\",\r\n \"alternateName\": \"sdk-DisasterRecovery-3919\",\r\n \"role\": \"Secondary\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8823/providers/Microsoft.EventHub/namespaces/sdk-NS-6100/disasterRecoveryConfigs/sdk-NS-3160?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItODgyMy9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTYxMDAvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLU5TLTMxNjA/YXBpLXZlcnNpb249MjAyMS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-6839/providers/Microsoft.EventHub/namespaces/sdk-NS-4107/disasterRecoveryConfigs/sdk-NS-7350?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNjgzOS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTQxMDcvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLU5TLTczNTA/YXBpLXZlcnNpb249MjAyMS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "99d89413-7d3b-47f2-b4af-815537a4802e" + "9d1038d4-7c0e-459d-931e-38d4c8771aa4" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:34:44 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "437b8944-2911-43e3-9666-db5063b6a9bd_M4SN1_M4SN1" + "138d339c-9efb-4382-a51b-350224db7c41_M9CH3_M9CH3" ], "Server-SB": [ - "Service-Bus-Resource-Provider/SN1" - ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" + "Service-Bus-Resource-Provider/CH3" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11960" + "11955" ], "x-ms-correlation-request-id": [ - "bc05db15-2df8-4f76-9830-b1acf100e0ba" + "f554a158-8fc6-43f3-b662-70e91a9bfe84" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T042400Z:bc05db15-2df8-4f76-9830-b1acf100e0ba" + "SOUTHINDIA:20211115T023444Z:f554a158-8fc6-43f3-b662-70e91a9bfe84" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3207,9 +3277,6 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:23:59 GMT" - ], "Content-Length": [ "398" ], @@ -3220,53 +3287,56 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8823/providers/Microsoft.EventHub/namespaces/sdk-NS-6100/disasterRecoveryConfigs/sdk-NS-3160\",\r\n \"name\": \"sdk-NS-3160\",\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-6839/providers/Microsoft.EventHub/namespaces/sdk-NS-4107/disasterRecoveryConfigs/sdk-NS-7350\",\r\n \"name\": \"sdk-NS-7350\",\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/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8823/providers/Microsoft.EventHub/namespaces/sdk-NS-3160/disasterRecoveryConfigs/sdk-NS-3160/authorizationRules/sdk-Authrules-3981?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItODgyMy9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTMxNjAvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLU5TLTMxNjAvYXV0aG9yaXphdGlvblJ1bGVzL3Nkay1BdXRocnVsZXMtMzk4MT9hcGktdmVyc2lvbj0yMDIxLTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-6839/providers/Microsoft.EventHub/namespaces/sdk-NS-7350/disasterRecoveryConfigs/sdk-NS-7350/authorizationRules/sdk-Authrules-6590?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNjgzOS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTczNTAvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLU5TLTczNTAvYXV0aG9yaXphdGlvblJ1bGVzL3Nkay1BdXRocnVsZXMtNjU5MD9hcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e4d80701-b65c-4ae2-9e34-5faebc52f8f5" + "8eff5e0d-6a0a-409b-9a86-0defbd51ddc7" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:29:10 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "bba64f6f-9336-431b-ab94-ba3a29f94022_M5SN1_M5SN1" + "4f8856a6-e00d-4aa9-a3e6-88def91c33d8_M9CH3_M9CH3" ], "Server-SB": [ - "Service-Bus-Resource-Provider/SN1" - ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" + "Service-Bus-Resource-Provider/CH3" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11988" ], "x-ms-correlation-request-id": [ - "41cd1424-b867-43cf-a4cf-79f87b1e9356" + "844199f3-74d5-453d-b305-2235ec0aa5b4" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T041828Z:41cd1424-b867-43cf-a4cf-79f87b1e9356" + "SOUTHINDIA:20211115T022911Z:844199f3-74d5-453d-b305-2235ec0aa5b4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3274,9 +3344,6 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:18:27 GMT" - ], "Content-Length": [ "381" ], @@ -3287,53 +3354,56 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8823/providers/Microsoft.EventHub/namespaces/sdk-NS-3160/disasterRecoveryConfigs/sdk-NS-3160/authorizationRules/sdk-Authrules-3981\",\r\n \"name\": \"sdk-Authrules-3981\",\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-6839/providers/Microsoft.EventHub/namespaces/sdk-NS-7350/disasterRecoveryConfigs/sdk-NS-7350/authorizationRules/sdk-Authrules-6590\",\r\n \"name\": \"sdk-Authrules-6590\",\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/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8823/providers/Microsoft.EventHub/namespaces/sdk-NS-3160/disasterRecoveryConfigs/sdk-NS-3160/authorizationRules/sdk-Authrules-3981/listKeys?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItODgyMy9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTMxNjAvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLU5TLTMxNjAvYXV0aG9yaXphdGlvblJ1bGVzL3Nkay1BdXRocnVsZXMtMzk4MS9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDIxLTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-6839/providers/Microsoft.EventHub/namespaces/sdk-NS-7350/disasterRecoveryConfigs/sdk-NS-7350/authorizationRules/sdk-Authrules-6590/listKeys?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNjgzOS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTczNTAvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLU5TLTczNTAvYXV0aG9yaXphdGlvblJ1bGVzL3Nkay1BdXRocnVsZXMtNjU5MC9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a710b55d-3fad-4243-a3ad-afeb21d822c0" + "14aca793-6c0c-4210-af51-967c52ed862a" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:29:11 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "18eb870a-1f28-4d4a-a58e-c42a2623dfae_M5SN1_M5SN1" + "5c5a6e30-30b7-4fb5-8677-b404a9b66033_M9CH3_M9CH3" ], "Server-SB": [ - "Service-Bus-Resource-Provider/SN1" - ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" + "Service-Bus-Resource-Provider/CH3" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1196" ], "x-ms-correlation-request-id": [ - "4721f904-76a3-4d49-b241-7c9b14cde400" + "a3f3caed-ba36-41f5-bd19-7669f4945d79" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T041828Z:4721f904-76a3-4d49-b241-7c9b14cde400" + "SOUTHINDIA:20211115T022912Z:a3f3caed-ba36-41f5-bd19-7669f4945d79" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3341,9 +3411,6 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:18:28 GMT" - ], "Content-Length": [ "522" ], @@ -3354,53 +3421,56 @@ "-1" ] }, - "ResponseBody": "{\r\n \"aliasPrimaryConnectionString\": \"Endpoint=sb://sdk-ns-3160.servicebus.windows.net/;SharedAccessKeyName=sdk-Authrules-3981;SharedAccessKey=ya8OEXLHwK6ENu7qlaeCHDYR+GpRr+sfvTFSd2FwVao=\",\r\n \"aliasSecondaryConnectionString\": \"Endpoint=sb://sdk-ns-3160.servicebus.windows.net/;SharedAccessKeyName=sdk-Authrules-3981;SharedAccessKey=yO2W2ym0ZLeAv2x09pk/xIaSw3Jl806W4ZJc64mddfQ=\",\r\n \"primaryKey\": \"ya8OEXLHwK6ENu7qlaeCHDYR+GpRr+sfvTFSd2FwVao=\",\r\n \"secondaryKey\": \"yO2W2ym0ZLeAv2x09pk/xIaSw3Jl806W4ZJc64mddfQ=\",\r\n \"keyName\": \"sdk-Authrules-3981\"\r\n}", + "ResponseBody": "{\r\n \"aliasPrimaryConnectionString\": \"Endpoint=sb://sdk-ns-7350.servicebus.windows.net/;SharedAccessKeyName=sdk-Authrules-6590;SharedAccessKey=6aomke6/QdDS9vREavfXSYxJDodO8Uaho95oGRrpA2Q=\",\r\n \"aliasSecondaryConnectionString\": \"Endpoint=sb://sdk-ns-7350.servicebus.windows.net/;SharedAccessKeyName=sdk-Authrules-6590;SharedAccessKey=hDM7W/YJmcsnic8b/XdVbP9w3DaXhe2g/kIZOK0TY1k=\",\r\n \"primaryKey\": \"6aomke6/QdDS9vREavfXSYxJDodO8Uaho95oGRrpA2Q=\",\r\n \"secondaryKey\": \"hDM7W/YJmcsnic8b/XdVbP9w3DaXhe2g/kIZOK0TY1k=\",\r\n \"keyName\": \"sdk-Authrules-6590\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8823/providers/Microsoft.EventHub/namespaces/sdk-NS-3160/disasterRecoveryConfigs/sdk-NS-3160/breakPairing?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItODgyMy9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTMxNjAvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLU5TLTMxNjAvYnJlYWtQYWlyaW5nP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-6839/providers/Microsoft.EventHub/namespaces/sdk-NS-7350/disasterRecoveryConfigs/sdk-NS-7350/breakPairing?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNjgzOS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTczNTAvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLU5TLTczNTAvYnJlYWtQYWlyaW5nP2FwaS12ZXJzaW9uPTIwMjEtMTEtMDE=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5872b52a-7b2e-4f78-adce-6d2c70cb0d0b" + "bc8b0749-4bcb-4f68-8898-744b37673f25" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:30:14 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "c84a1364-5dd7-4dd7-b508-ff295c9a809d_M5SN1_M5SN1" + "07bc1dd2-3253-4bf5-9395-b0100bd1a458_M8CH3_M8CH3" ], "Server-SB": [ - "Service-Bus-Resource-Provider/SN1" - ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" + "Service-Bus-Resource-Provider/CH3" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1195" ], "x-ms-correlation-request-id": [ - "43388d15-6d72-45ee-beea-feac0f6df18c" + "fef3add3-95b5-40d4-ab17-9649cc4e99fc" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T041938Z:43388d15-6d72-45ee-beea-feac0f6df18c" + "SOUTHINDIA:20211115T023015Z:fef3add3-95b5-40d4-ab17-9649cc4e99fc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3408,63 +3478,63 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:19:37 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8823/providers/Microsoft.EventHub/namespaces/sdk-NS-6100/disasterRecoveryConfigs/sdk-NS-3160/failover?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItODgyMy9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTYxMDAvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLU5TLTMxNjAvZmFpbG92ZXI/YXBpLXZlcnNpb249MjAyMS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-6839/providers/Microsoft.EventHub/namespaces/sdk-NS-4107/disasterRecoveryConfigs/sdk-NS-7350/failover?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNjgzOS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTQxMDcvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLU5TLTczNTAvZmFpbG92ZXI/YXBpLXZlcnNpb249MjAyMS0xMS0wMQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "330be507-5a28-46a8-b1f7-05dcbd941ab9" + "8a614cbc-0a09-4a1f-8b07-ff8b7fed4cef" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:33:22 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "3b39d89b-684e-46d8-8a28-9c8a5f2d344c_M4SN1_M4SN1" + "e8871dc7-bc71-482b-b1d9-c89f8d57cfd8_M8CH3_M8CH3" ], "Server-SB": [ - "Service-Bus-Resource-Provider/SN1" - ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" + "Service-Bus-Resource-Provider/CH3" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1194" ], "x-ms-correlation-request-id": [ - "b1f31397-9133-4f42-96be-1e00c3c0b34f" + "082a7b9c-65e2-44fc-b356-ae5da9ba56ae" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T042239Z:b1f31397-9133-4f42-96be-1e00c3c0b34f" + "SOUTHINDIA:20211115T023322Z:082a7b9c-65e2-44fc-b356-ae5da9ba56ae" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3472,63 +3542,63 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:22:38 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8823/providers/Microsoft.EventHub/namespaces/sdk-NS-6100/disasterRecoveryConfigs?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItODgyMy9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTYxMDAvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-6839/providers/Microsoft.EventHub/namespaces/sdk-NS-4107/disasterRecoveryConfigs?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNjgzOS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTQxMDcvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3M/YXBpLXZlcnNpb249MjAyMS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "85807e3c-4d7f-4d55-93ad-114c74d5527f" + "e860f880-5a71-453b-a39e-144743a8981a" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:34:44 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "f55306a0-c9cf-4642-aeed-8a0c42c5397e_M4SN1_M4SN1" + "0e4fa387-2abd-4811-97ab-2c4d397daa55_M9CH3_M9CH3" ], "Server-SB": [ - "Service-Bus-Resource-Provider/SN1" - ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" + "Service-Bus-Resource-Provider/CH3" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11959" + "11954" ], "x-ms-correlation-request-id": [ - "0fc2f8dd-33e9-4385-9dd3-1edd7e336d74" + "32b6ea14-ff2c-4415-893f-45d69c2c2a44" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T042400Z:0fc2f8dd-33e9-4385-9dd3-1edd7e336d74" + "SOUTHINDIA:20211115T023445Z:32b6ea14-ff2c-4415-893f-45d69c2c2a44" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3536,9 +3606,6 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:23:59 GMT" - ], "Content-Length": [ "410" ], @@ -3549,53 +3616,56 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8823/providers/Microsoft.EventHub/namespaces/sdk-NS-6100/disasterRecoveryConfigs/sdk-NS-3160\",\r\n \"name\": \"sdk-NS-3160\",\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-6839/providers/Microsoft.EventHub/namespaces/sdk-NS-4107/disasterRecoveryConfigs/sdk-NS-7350\",\r\n \"name\": \"sdk-NS-7350\",\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/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8823/providers/Microsoft.EventHub/namespaces/sdk-NS-6100/disasterRecoveryConfigs/sdk-NS-3160?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItODgyMy9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTYxMDAvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLU5TLTMxNjA/YXBpLXZlcnNpb249MjAyMS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-6839/providers/Microsoft.EventHub/namespaces/sdk-NS-4107/disasterRecoveryConfigs/sdk-NS-7350?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNjgzOS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTQxMDcvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLU5TLTczNTA/YXBpLXZlcnNpb249MjAyMS0xMS0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b3818e3c-c2d5-48eb-b303-813d0d96aadc" + "c5d81af3-daa3-4dc6-936b-0af4e32d0ec0" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:34:45 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "34dc6d3d-81ac-4878-878b-da58953d069a_M4SN1_M4SN1" + "8cd1e06a-742f-47eb-8812-c789d837da64_M9CH3_M9CH3" ], "Server-SB": [ - "Service-Bus-Resource-Provider/SN1" - ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" + "Service-Bus-Resource-Provider/CH3" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" + "14998" ], "x-ms-correlation-request-id": [ - "a7dd23bd-422a-44b2-b900-1502d67ad659" + "1096735b-c02d-4519-9bf2-f936cbd055bb" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T042401Z:a7dd23bd-422a-44b2-b900-1502d67ad659" + "SOUTHINDIA:20211115T023445Z:1096735b-c02d-4519-9bf2-f936cbd055bb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3603,66 +3673,133 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:24:00 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8823/providers/Microsoft.EventHub/namespaces/sdk-NS-3160?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItODgyMy9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTMxNjA/YXBpLXZlcnNpb249MjAyMS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-6839/providers/Microsoft.EventHub/namespaces/sdk-NS-7350?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNjgzOS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTczNTA/YXBpLXZlcnNpb249MjAyMS0xMS0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e83dca01-ec91-43e9-9de0-f576158f9ec3" + "73a98793-c770-421c-a102-63d4185d931e" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:34:46 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8823/providers/Microsoft.EventHub/namespaces/sdk-NS-3160/operationresults/sdk-NS-3160?api-version=2021-06-01-preview" + "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-6839/providers/Microsoft.EventHub/namespaces/sdk-NS-7350/operationresults/sdk-NS-7350?api-version=2021-11-01" + ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "016e38b7-c3b0-4f07-acce-e77e1d50d9b3_M4SN1_M4SN1" + "12e59c0c-342c-4402-9107-4d95a855a26b_M9CH3_M9CH3" ], "Server-SB": [ - "Service-Bus-Resource-Provider/SN1" + "Service-Bus-Resource-Provider/CH3" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14997" + ], + "x-ms-correlation-request-id": [ + "d83bf327-710e-41f5-925c-4fdc1fc9a142" + ], + "x-ms-routing-request-id": [ + "SOUTHINDIA:20211115T023446Z:d83bf327-710e-41f5-925c-4fdc1fc9a142" + ], + "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-6839/providers/Microsoft.EventHub/namespaces/sdk-NS-4107?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNjgzOS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTQxMDc/YXBpLXZlcnNpb249MjAyMS0xMS0wMQ==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4d3f1a25-236d-40e9-aa05-dbc4567dbdf5" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 15 Nov 2021 02:34:46 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-6839/providers/Microsoft.EventHub/namespaces/sdk-NS-4107/operationresults/sdk-NS-4107?api-version=2021-11-01" ], "Server": [ - "Service-Bus-Resource-Provider/SN1", + "Service-Bus-Resource-Provider/CH3", "Microsoft-HTTPAPI/2.0" ], + "x-ms-request-id": [ + "9c4f0d8b-7f17-48ef-83ac-4c4b284c37d6_M9CH3_M9CH3" + ], + "Server-SB": [ + "Service-Bus-Resource-Provider/CH3" + ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14998" ], "x-ms-correlation-request-id": [ - "0c2ef4b7-20af-4460-b48b-94be4bc448bc" + "541463e7-789e-4f1a-91dc-89de3c8d912d" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T042402Z:0c2ef4b7-20af-4460-b48b-94be4bc448bc" + "SOUTHINDIA:20211115T023447Z:541463e7-789e-4f1a-91dc-89de3c8d912d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3670,14 +3807,11 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:24:01 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", @@ -3686,11 +3820,11 @@ ], "Names": { "DisasterRecoveryAlertnateNameCreateGetUpdateDelete": [ - "Default-EventHub-8823", - "sdk-NS-3160", - "sdk-NS-6100", - "sdk-Authrules-3981", - "sdk-DisasterRecovery-9893" + "Default-EventHub-6839", + "sdk-NS-7350", + "sdk-NS-4107", + "sdk-Authrules-6590", + "sdk-DisasterRecovery-3919" ] }, "Variables": { 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 e54b92aefeff..5209ce6df4ae 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,21 +1,21 @@ { "Entries": [ { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/Default-EventHub-6427?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlZ3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNjQyNz9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/Default-EventHub-5124?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlZ3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNTEyND9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "01759e3a-cff3-43f9-b7e6-acafd98e58e0" + "bce1f500-8a8f-4a55-9dd2-d78a641af19f" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", + "OSVersion/Microsoft.Windows.10.0.22000.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -23,11 +23,14 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 03:00:28 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1ERUZBVUxUOjJERVZFTlRIVUI6MkQ2NDI3LUFVU1RSQUxJQUVBU1QiLCJqb2JMb2NhdGlvbiI6ImF1c3RyYWxpYWVhc3QifQ?api-version=2015-11-01" + "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1ERUZBVUxUOjJERVZFTlRIVUI6MkQ1MTI0LUFVU1RSQUxJQUVBU1QiLCJqb2JMb2NhdGlvbiI6ImF1c3RyYWxpYWVhc3QifQ?api-version=2015-11-01" ], "Retry-After": [ "15" @@ -36,13 +39,13 @@ "14998" ], "x-ms-request-id": [ - "c874220d-9072-423f-954a-ad88d0566d44" + "40347792-ee99-4908-8672-c6b12d880f2f" ], "x-ms-correlation-request-id": [ - "c874220d-9072-423f-954a-ad88d0566d44" + "40347792-ee99-4908-8672-c6b12d880f2f" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210924T044418Z:c874220d-9072-423f-954a-ad88d0566d44" + "SOUTHINDIA:20211115T030028Z:40347792-ee99-4908-8672-c6b12d880f2f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -50,35 +53,32 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:44:17 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/Default-EventHub-5305?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlZ3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNTMwNT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/Default-EventHub-3186?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlZ3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMzE4Nj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"South Central US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "dfc489c9-2a81-480d-be11-37edd1d33540" + "727b74f1-f4fb-4493-830a-c37e3959aa1e" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", + "OSVersion/Microsoft.Windows.10.0.22000.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ], "Content-Type": [ @@ -92,6 +92,9 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 03:00:32 GMT" + ], "Pragma": [ "no-cache" ], @@ -99,13 +102,13 @@ "1199" ], "x-ms-request-id": [ - "0846fba5-9c93-4b8c-bc0f-99bbbb7383e8" + "c38aa560-d76d-423e-8265-9efa5606084f" ], "x-ms-correlation-request-id": [ - "0846fba5-9c93-4b8c-bc0f-99bbbb7383e8" + "c38aa560-d76d-423e-8265-9efa5606084f" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210924T044420Z:0846fba5-9c93-4b8c-bc0f-99bbbb7383e8" + "SOUTHINDIA:20211115T030032Z:c38aa560-d76d-423e-8265-9efa5606084f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -113,9 +116,6 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:44:19 GMT" - ], "Content-Length": [ "203" ], @@ -126,26 +126,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-5305\",\r\n \"name\": \"Default-EventHub-5305\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3186\",\r\n \"name\": \"Default-EventHub-3186\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-5305/providers/Microsoft.EventHub/namespaces/sdk-NS-6718?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNTMwNS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTY3MTg/YXBpLXZlcnNpb249MjAyMS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3186/providers/Microsoft.EventHub/namespaces/sdk-NS-9858?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMzE4Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTk4NTg/YXBpLXZlcnNpb249MjAyMS0xMS0wMQ==", "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": [ - "44eba3f3-cd71-4efb-ae84-efb460550d02" + "229cdf99-2267-4c99-a0b5-1054deea5424" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -158,27 +158,30 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 03:00:39 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "fd3c21f8-4eda-4603-b969-4de5686ce446_M7CH3_M7CH3" + "30fb9286-8f50-4b60-b8a4-51c4c8c069a1_M8CH3_M8CH3" ], "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], - "Server": [ - "Service-Bus-Resource-Provider/CH3", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "49" ], "x-ms-correlation-request-id": [ - "c67fba44-1448-48b6-a99c-805c74a10e27" + "f820da0f-a4f2-463e-89fc-9b86c9ea1e50" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210924T044423Z:c67fba44-1448-48b6-a99c-805c74a10e27" + "SOUTHINDIA:20211115T030040Z:f820da0f-a4f2-463e-89fc-9b86c9ea1e50" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -186,9 +189,6 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:44:23 GMT" - ], "Content-Length": [ "738" ], @@ -199,47 +199,50 @@ "-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-5305/providers/Microsoft.EventHub/namespaces/sdk-NS-6718\",\r\n \"name\": \"sdk-NS-6718\",\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 \"disableLocalAuth\": false,\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-6718\",\r\n \"createdAt\": \"2021-09-24T04:44:22.703Z\",\r\n \"updatedAt\": \"2021-09-24T04:44:22.703Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-6718.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-3186/providers/Microsoft.EventHub/namespaces/sdk-NS-9858\",\r\n \"name\": \"sdk-NS-9858\",\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 \"disableLocalAuth\": false,\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-9858\",\r\n \"createdAt\": \"2021-11-15T03:00:38.837Z\",\r\n \"updatedAt\": \"2021-11-15T03:00:38.837Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-9858.servicebus.windows.net:443/\",\r\n \"status\": \"Activating\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-5305/providers/Microsoft.EventHub/namespaces/sdk-NS-6718?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNTMwNS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTY3MTg/YXBpLXZlcnNpb249MjAyMS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3186/providers/Microsoft.EventHub/namespaces/sdk-NS-9858?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMzE4Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTk4NTg/YXBpLXZlcnNpb249MjAyMS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 03:01:10 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "6f38ba36-bd0c-4e1a-8ce5-801214a0afd0_M6CH3_M6CH3" + "175802cc-bb10-47aa-aeae-97df2d62b1c0_M11CH3_M11CH3" ], "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], - "Server": [ - "Service-Bus-Resource-Provider/CH3", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ "11999" ], "x-ms-correlation-request-id": [ - "1203bd7c-2ae5-47d9-84e4-99411d07aea9" + "5ab71e70-815b-4468-a9a5-c17c4e5532f6" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210924T044453Z:1203bd7c-2ae5-47d9-84e4-99411d07aea9" + "SOUTHINDIA:20211115T030111Z:5ab71e70-815b-4468-a9a5-c17c4e5532f6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -247,9 +250,6 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:44:53 GMT" - ], "Content-Length": [ "738" ], @@ -260,47 +260,50 @@ "-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-5305/providers/Microsoft.EventHub/namespaces/sdk-NS-6718\",\r\n \"name\": \"sdk-NS-6718\",\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 \"disableLocalAuth\": false,\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-6718\",\r\n \"createdAt\": \"2021-09-24T04:44:22.703Z\",\r\n \"updatedAt\": \"2021-09-24T04:44:22.703Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-6718.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-3186/providers/Microsoft.EventHub/namespaces/sdk-NS-9858\",\r\n \"name\": \"sdk-NS-9858\",\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 \"disableLocalAuth\": false,\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-9858\",\r\n \"createdAt\": \"2021-11-15T03:00:38.837Z\",\r\n \"updatedAt\": \"2021-11-15T03:00:38.837Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-9858.servicebus.windows.net:443/\",\r\n \"status\": \"Activating\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-5305/providers/Microsoft.EventHub/namespaces/sdk-NS-6718?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNTMwNS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTY3MTg/YXBpLXZlcnNpb249MjAyMS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3186/providers/Microsoft.EventHub/namespaces/sdk-NS-9858?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMzE4Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTk4NTg/YXBpLXZlcnNpb249MjAyMS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 03:01:40 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "f1874b2a-b55d-4658-b0d7-ca17bbb0adec_M4CH3_M4CH3" + "01a626ea-db12-4211-860d-403f0f4fc1a3_M8CH3_M8CH3" ], "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], - "Server": [ - "Service-Bus-Resource-Provider/CH3", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ "11998" ], "x-ms-correlation-request-id": [ - "97a8b1be-5a28-4fac-88ab-7be319989650" + "ef58d498-b7fb-4509-9e6a-22f00fe1585d" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210924T044523Z:97a8b1be-5a28-4fac-88ab-7be319989650" + "SOUTHINDIA:20211115T030141Z:ef58d498-b7fb-4509-9e6a-22f00fe1585d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -308,9 +311,6 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:45:23 GMT" - ], "Content-Length": [ "735" ], @@ -321,26 +321,26 @@ "-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-5305/providers/Microsoft.EventHub/namespaces/sdk-NS-6718\",\r\n \"name\": \"sdk-NS-6718\",\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 \"disableLocalAuth\": false,\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-6718\",\r\n \"createdAt\": \"2021-09-24T04:44:22.703Z\",\r\n \"updatedAt\": \"2021-09-24T04:45:09.25Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-6718.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-3186/providers/Microsoft.EventHub/namespaces/sdk-NS-9858\",\r\n \"name\": \"sdk-NS-9858\",\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 \"disableLocalAuth\": false,\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-9858\",\r\n \"createdAt\": \"2021-11-15T03:00:38.837Z\",\r\n \"updatedAt\": \"2021-11-15T03:01:27.07Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-9858.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-5305/providers/Microsoft.EventHub/namespaces/sdk-NS-7492?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNTMwNS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTc0OTI/YXBpLXZlcnNpb249MjAyMS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3186/providers/Microsoft.EventHub/namespaces/sdk-NS-7878?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMzE4Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTc4Nzg/YXBpLXZlcnNpb249MjAyMS0xMS0wMQ==", "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": [ - "0e76da82-c5d6-41f7-a98f-92f920ce8efa" + "f412e383-41ce-4df5-a37b-25d051427b39" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -353,27 +353,30 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 03:01:51 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "3700a349-b508-4d62-973b-1b610c7e312b_M1CH3_M1CH3" + "f434b469-d0a1-4da9-94eb-e07b0bb08e9a_M8CH3_M8CH3" ], "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], - "Server": [ - "Service-Bus-Resource-Provider/CH3", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "48" ], "x-ms-correlation-request-id": [ - "676cec01-f031-4e17-9e5a-c89e6d7c2c1d" + "616314d3-a870-4121-b9a3-736f10648348" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210924T044530Z:676cec01-f031-4e17-9e5a-c89e6d7c2c1d" + "SOUTHINDIA:20211115T030151Z:616314d3-a870-4121-b9a3-736f10648348" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -381,9 +384,6 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:45:30 GMT" - ], "Content-Length": [ "738" ], @@ -394,47 +394,50 @@ "-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-5305/providers/Microsoft.EventHub/namespaces/sdk-NS-7492\",\r\n \"name\": \"sdk-NS-7492\",\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 \"disableLocalAuth\": false,\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-7492\",\r\n \"createdAt\": \"2021-09-24T04:45:30.187Z\",\r\n \"updatedAt\": \"2021-09-24T04:45:30.187Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-7492.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-3186/providers/Microsoft.EventHub/namespaces/sdk-NS-7878\",\r\n \"name\": \"sdk-NS-7878\",\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 \"disableLocalAuth\": false,\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-7878\",\r\n \"createdAt\": \"2021-11-15T03:01:49.527Z\",\r\n \"updatedAt\": \"2021-11-15T03:01:49.527Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-7878.servicebus.windows.net:443/\",\r\n \"status\": \"Activating\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-5305/providers/Microsoft.EventHub/namespaces/sdk-NS-7492?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNTMwNS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTc0OTI/YXBpLXZlcnNpb249MjAyMS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3186/providers/Microsoft.EventHub/namespaces/sdk-NS-7878?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMzE4Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTc4Nzg/YXBpLXZlcnNpb249MjAyMS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 03:02:21 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "742ee0d6-d330-4b3e-922e-464034e3e248_M3CH3_M3CH3" + "45d715e1-1490-497d-b8f9-9feea349f03e_M8CH3_M8CH3" ], "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], - "Server": [ - "Service-Bus-Resource-Provider/CH3", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ "11997" ], "x-ms-correlation-request-id": [ - "aadd3221-c4f2-4c59-a039-f608032f33de" + "5e6206cb-4323-40dc-a9a4-7a3625461960" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210924T044600Z:aadd3221-c4f2-4c59-a039-f608032f33de" + "SOUTHINDIA:20211115T030222Z:5e6206cb-4323-40dc-a9a4-7a3625461960" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -442,9 +445,6 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:46:00 GMT" - ], "Content-Length": [ "738" ], @@ -455,47 +455,50 @@ "-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-5305/providers/Microsoft.EventHub/namespaces/sdk-NS-7492\",\r\n \"name\": \"sdk-NS-7492\",\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 \"disableLocalAuth\": false,\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-7492\",\r\n \"createdAt\": \"2021-09-24T04:45:30.187Z\",\r\n \"updatedAt\": \"2021-09-24T04:45:30.187Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-7492.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-3186/providers/Microsoft.EventHub/namespaces/sdk-NS-7878\",\r\n \"name\": \"sdk-NS-7878\",\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 \"disableLocalAuth\": false,\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-7878\",\r\n \"createdAt\": \"2021-11-15T03:01:49.527Z\",\r\n \"updatedAt\": \"2021-11-15T03:01:49.527Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-7878.servicebus.windows.net:443/\",\r\n \"status\": \"Activating\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-5305/providers/Microsoft.EventHub/namespaces/sdk-NS-7492?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNTMwNS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTc0OTI/YXBpLXZlcnNpb249MjAyMS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3186/providers/Microsoft.EventHub/namespaces/sdk-NS-7878?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMzE4Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTc4Nzg/YXBpLXZlcnNpb249MjAyMS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 03:02:51 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "a0be1b71-cdca-48e0-8771-fd699827e64d_M4CH3_M4CH3" + "6403d5c1-4932-4fdf-ba44-bf7cef509cd7_M8CH3_M8CH3" ], "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], - "Server": [ - "Service-Bus-Resource-Provider/CH3", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ "11996" ], "x-ms-correlation-request-id": [ - "07cdf11c-fa59-49c6-9016-6f7560fed00d" + "30cb9751-200f-4d87-a8c2-382648737830" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210924T044631Z:07cdf11c-fa59-49c6-9016-6f7560fed00d" + "SOUTHINDIA:20211115T030252Z:30cb9751-200f-4d87-a8c2-382648737830" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -503,9 +506,6 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:46:30 GMT" - ], "Content-Length": [ "736" ], @@ -516,26 +516,26 @@ "-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-5305/providers/Microsoft.EventHub/namespaces/sdk-NS-7492\",\r\n \"name\": \"sdk-NS-7492\",\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 \"disableLocalAuth\": false,\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-7492\",\r\n \"createdAt\": \"2021-09-24T04:45:30.187Z\",\r\n \"updatedAt\": \"2021-09-24T04:46:20.287Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-7492.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-3186/providers/Microsoft.EventHub/namespaces/sdk-NS-7878\",\r\n \"name\": \"sdk-NS-7878\",\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 \"disableLocalAuth\": false,\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-7878\",\r\n \"createdAt\": \"2021-11-15T03:01:49.527Z\",\r\n \"updatedAt\": \"2021-11-15T03:02:37.017Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-7878.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-5305/providers/Microsoft.EventHub/namespaces/sdk-NS-6718/authorizationRules/sdk-Authrules-1945?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNTMwNS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTY3MTgvYXV0aG9yaXphdGlvblJ1bGVzL3Nkay1BdXRocnVsZXMtMTk0NT9hcGktdmVyc2lvbj0yMDIxLTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3186/providers/Microsoft.EventHub/namespaces/sdk-NS-9858/authorizationRules/sdk-Authrules-9994?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMzE4Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTk4NTgvYXV0aG9yaXphdGlvblJ1bGVzL3Nkay1BdXRocnVsZXMtOTk5ND9hcGktdmVyc2lvbj0yMDIxLTExLTAx", "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": [ - "2e401a92-5cab-4944-8036-be7fc2757d3d" + "4f5f5582-dfac-4b4a-b251-eb78396096d9" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -548,27 +548,30 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 03:03:04 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "0d96bea4-5fd8-4944-9b62-7f1a7c28fb3c_M8CH3_M8CH3" + "ebe55cb7-eeb3-4798-932b-a4bf8cf52565_M8CH3_M8CH3" ], "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], - "Server": [ - "Service-Bus-Resource-Provider/CH3", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], "x-ms-correlation-request-id": [ - "842ff8f9-2c44-43fc-adf2-c5edacb7485b" + "184bf524-a0ec-4d8f-bf00-0ad4c7ecea47" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210924T044642Z:842ff8f9-2c44-43fc-adf2-c5edacb7485b" + "SOUTHINDIA:20211115T030304Z:184bf524-a0ec-4d8f-bf00-0ad4c7ecea47" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -576,9 +579,6 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:46:42 GMT" - ], "Content-Length": [ "345" ], @@ -589,53 +589,56 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-5305/providers/Microsoft.EventHub/namespaces/sdk-NS-6718/authorizationRules/sdk-Authrules-1945\",\r\n \"name\": \"sdk-Authrules-1945\",\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-3186/providers/Microsoft.EventHub/namespaces/sdk-NS-9858/authorizationRules/sdk-Authrules-9994\",\r\n \"name\": \"sdk-Authrules-9994\",\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/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-5305/providers/Microsoft.EventHub/namespaces/sdk-NS-6718/authorizationRules/sdk-Authrules-1945?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNTMwNS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTY3MTgvYXV0aG9yaXphdGlvblJ1bGVzL3Nkay1BdXRocnVsZXMtMTk0NT9hcGktdmVyc2lvbj0yMDIxLTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3186/providers/Microsoft.EventHub/namespaces/sdk-NS-9858/authorizationRules/sdk-Authrules-9994?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMzE4Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTk4NTgvYXV0aG9yaXphdGlvblJ1bGVzL3Nkay1BdXRocnVsZXMtOTk5ND9hcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "94e10d23-fae3-4d8a-afe5-5ee191d38c8a" + "522d7f46-ebf8-419d-8c82-5b96d727e329" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 03:03:04 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "81af612d-6c8b-4662-a254-a1e99223eb8e_M8CH3_M8CH3" + "5127ae83-fc9d-4a45-9610-e40539f28f4e_M8CH3_M8CH3" ], "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], - "Server": [ - "Service-Bus-Resource-Provider/CH3", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ "11995" ], "x-ms-correlation-request-id": [ - "3a18ef83-94c4-417a-a9e9-a6f907184446" + "ac3cd92f-2abe-4546-aa44-ea504882d7ac" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210924T044642Z:3a18ef83-94c4-417a-a9e9-a6f907184446" + "SOUTHINDIA:20211115T030305Z:ac3cd92f-2abe-4546-aa44-ea504882d7ac" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -643,9 +646,6 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:46:42 GMT" - ], "Content-Length": [ "345" ], @@ -656,53 +656,56 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-5305/providers/Microsoft.EventHub/namespaces/sdk-NS-6718/authorizationRules/sdk-Authrules-1945\",\r\n \"name\": \"sdk-Authrules-1945\",\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-3186/providers/Microsoft.EventHub/namespaces/sdk-NS-9858/authorizationRules/sdk-Authrules-9994\",\r\n \"name\": \"sdk-Authrules-9994\",\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/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-5305/providers/Microsoft.EventHub/namespaces/sdk-NS-6718/authorizationRules/sdk-Authrules-1945/listKeys?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNTMwNS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTY3MTgvYXV0aG9yaXphdGlvblJ1bGVzL3Nkay1BdXRocnVsZXMtMTk0NS9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDIxLTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3186/providers/Microsoft.EventHub/namespaces/sdk-NS-9858/authorizationRules/sdk-Authrules-9994/listKeys?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMzE4Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTk4NTgvYXV0aG9yaXphdGlvblJ1bGVzL3Nkay1BdXRocnVsZXMtOTk5NC9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "aa7d5e1c-3b84-4458-bad7-b06abdb002b2" + "7396b461-51e1-43cd-b04b-3d0705bd6554" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 03:03:05 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "0acb73c1-dce3-4727-816a-cea16ebe0d8d_M8CH3_M8CH3" + "946080b6-65ac-4b1a-8026-513bb12b659e_M8CH3_M8CH3" ], "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], - "Server": [ - "Service-Bus-Resource-Provider/CH3", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], "x-ms-correlation-request-id": [ - "166ca256-2669-464b-a566-b4a96ed9eb2e" + "902137fa-a295-4b26-9744-fd146bee21b4" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210924T044643Z:166ca256-2669-464b-a566-b4a96ed9eb2e" + "SOUTHINDIA:20211115T030306Z:902137fa-a295-4b26-9744-fd146bee21b4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -710,9 +713,6 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:46:43 GMT" - ], "Content-Length": [ "512" ], @@ -723,59 +723,62 @@ "-1" ] }, - "ResponseBody": "{\r\n \"primaryConnectionString\": \"Endpoint=sb://sdk-ns-6718.servicebus.windows.net/;SharedAccessKeyName=sdk-Authrules-1945;SharedAccessKey=Q9MAjzHbRQsG1XonChykYeJUZ8mov2tn0If/IKl9kKc=\",\r\n \"secondaryConnectionString\": \"Endpoint=sb://sdk-ns-6718.servicebus.windows.net/;SharedAccessKeyName=sdk-Authrules-1945;SharedAccessKey=gGvJu0PnUYQ9h8KcHF92MkuO3Sq4rFSdI2JxZPRNGzM=\",\r\n \"primaryKey\": \"Q9MAjzHbRQsG1XonChykYeJUZ8mov2tn0If/IKl9kKc=\",\r\n \"secondaryKey\": \"gGvJu0PnUYQ9h8KcHF92MkuO3Sq4rFSdI2JxZPRNGzM=\",\r\n \"keyName\": \"sdk-Authrules-1945\"\r\n}", + "ResponseBody": "{\r\n \"primaryConnectionString\": \"Endpoint=sb://sdk-ns-9858.servicebus.windows.net/;SharedAccessKeyName=sdk-Authrules-9994;SharedAccessKey=S6cxBoTnfaaOm8SoSMZ0COn11InjOOnJsQMW8iidogI=\",\r\n \"secondaryConnectionString\": \"Endpoint=sb://sdk-ns-9858.servicebus.windows.net/;SharedAccessKeyName=sdk-Authrules-9994;SharedAccessKey=5BIMUhy8sz0fOAZPMq4BWh3YaF1tPrM2cwQSKX3quZo=\",\r\n \"primaryKey\": \"S6cxBoTnfaaOm8SoSMZ0COn11InjOOnJsQMW8iidogI=\",\r\n \"secondaryKey\": \"5BIMUhy8sz0fOAZPMq4BWh3YaF1tPrM2cwQSKX3quZo=\",\r\n \"keyName\": \"sdk-Authrules-9994\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-5305/providers/Microsoft.EventHub/namespaces/sdk-NS-6718/disasterRecoveryConfigs/checkNameAvailability?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNTMwNS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTY3MTgvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3MvY2hlY2tOYW1lQXZhaWxhYmlsaXR5P2FwaS12ZXJzaW9uPTIwMjEtMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3186/providers/Microsoft.EventHub/namespaces/sdk-NS-9858/disasterRecoveryConfigs/checkNameAvailability?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMzE4Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTk4NTgvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3MvY2hlY2tOYW1lQXZhaWxhYmlsaXR5P2FwaS12ZXJzaW9uPTIwMjEtMTEtMDE=", "RequestMethod": "POST", - "RequestBody": "{\r\n \"name\": \"sdk-DisasterRecovery-860\"\r\n}", + "RequestBody": "{\r\n \"name\": \"sdk-DisasterRecovery-5399\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "f7e4c2da-f17b-4a80-9d22-5e31fcc645ec" + "acfdce89-4479-4ef1-ae5e-4107ffe0a5a8" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "42" + "43" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 03:03:06 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "31170806-50c8-402f-8ae1-5be2738f2d05_M8CH3_M8CH3" + "e3fd704a-41eb-4504-880a-059a688de482_M8CH3_M8CH3" ], "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], - "Server": [ - "Service-Bus-Resource-Provider/CH3", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-writes": [ "1198" ], "x-ms-correlation-request-id": [ - "8dd16be7-2321-4505-84ef-e5ad795354b9" + "58c36336-18b8-41e2-bb9d-7c475fcb533f" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210924T044643Z:8dd16be7-2321-4505-84ef-e5ad795354b9" + "SOUTHINDIA:20211115T030306Z:58c36336-18b8-41e2-bb9d-7c475fcb533f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -783,9 +786,6 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:46:43 GMT" - ], "Content-Length": [ "38" ], @@ -800,22 +800,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-5305/providers/Microsoft.EventHub/namespaces/sdk-NS-6718/disasterRecoveryConfigs/checkNameAvailability?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNTMwNS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTY3MTgvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3MvY2hlY2tOYW1lQXZhaWxhYmlsaXR5P2FwaS12ZXJzaW9uPTIwMjEtMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3186/providers/Microsoft.EventHub/namespaces/sdk-NS-9858/disasterRecoveryConfigs/checkNameAvailability?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMzE4Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTk4NTgvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3MvY2hlY2tOYW1lQXZhaWxhYmlsaXR5P2FwaS12ZXJzaW9uPTIwMjEtMTEtMDE=", "RequestMethod": "POST", - "RequestBody": "{\r\n \"name\": \"sdk-NS-6718\"\r\n}", + "RequestBody": "{\r\n \"name\": \"sdk-NS-9858\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "b5c986fd-4508-4a56-8197-ef927391759d" + "2aa836ca-a598-4ca6-a9e0-6667ee465dfa" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -828,27 +828,30 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 03:03:06 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "457ef40b-4651-405f-a3de-27ba87c0cc5c_M8CH3_M8CH3" + "700d5c7c-ef33-44d4-a346-acbc31a3b943_M8CH3_M8CH3" ], "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], - "Server": [ - "Service-Bus-Resource-Provider/CH3", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-writes": [ "1197" ], "x-ms-correlation-request-id": [ - "0a1fd22c-eadb-4dc5-952e-7aa7d440efbd" + "835bdc16-c389-4d31-a31b-92eca26528ce" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210924T044644Z:0a1fd22c-eadb-4dc5-952e-7aa7d440efbd" + "SOUTHINDIA:20211115T030307Z:835bdc16-c389-4d31-a31b-92eca26528ce" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -856,9 +859,6 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:46:44 GMT" - ], "Content-Length": [ "38" ], @@ -873,22 +873,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-5305/providers/Microsoft.EventHub/namespaces/sdk-NS-6718/disasterRecoveryConfigs/sdk-DisasterRecovery-860?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNTMwNS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTY3MTgvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLURpc2FzdGVyUmVjb3ZlcnktODYwP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3186/providers/Microsoft.EventHub/namespaces/sdk-NS-9858/disasterRecoveryConfigs/sdk-DisasterRecovery-5399?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMzE4Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTk4NTgvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLURpc2FzdGVyUmVjb3ZlcnktNTM5OT9hcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"partnerNamespace\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-5305/providers/Microsoft.EventHub/namespaces/sdk-NS-7492\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"partnerNamespace\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3186/providers/Microsoft.EventHub/namespaces/sdk-NS-7878\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "9846bbe9-8d24-469d-880e-a883ca9bc38b" + "207f400b-03b0-4674-8a4c-01d0d9dd8b6f" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -901,27 +901,30 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 03:03:14 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "6cb11e26-1252-464f-b8c3-1988eb78fe5a_M11CH3_M11CH3" + "b6b585ef-a7f3-4e30-80b6-52c351fd23b8_M8CH3_M8CH3" ], "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], - "Server": [ - "Service-Bus-Resource-Provider/CH3", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-writes": [ "1198" ], "x-ms-correlation-request-id": [ - "5b42ab3d-a103-4c87-8d8b-a27d955c72e0" + "4ae7262f-4aee-4d69-b356-37f4281d3dbb" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210924T044651Z:5b42ab3d-a103-4c87-8d8b-a27d955c72e0" + "SOUTHINDIA:20211115T030314Z:4ae7262f-4aee-4d69-b356-37f4281d3dbb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -929,11 +932,8 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:46:51 GMT" - ], "Content-Length": [ - "549" + "551" ], "Content-Type": [ "application/json; charset=utf-8" @@ -942,26 +942,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-5305/providers/Microsoft.EventHub/namespaces/sdk-NS-6718/disasterRecoveryConfigs/sdk-DisasterRecovery-860\",\r\n \"name\": \"sdk-DisasterRecovery-860\",\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-5305/providers/Microsoft.EventHub/namespaces/sdk-NS-7492\",\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-3186/providers/Microsoft.EventHub/namespaces/sdk-NS-9858/disasterRecoveryConfigs/sdk-DisasterRecovery-5399\",\r\n \"name\": \"sdk-DisasterRecovery-5399\",\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-3186/providers/Microsoft.EventHub/namespaces/sdk-NS-7878\",\r\n \"role\": \"Primary\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-5305/providers/Microsoft.EventHub/namespaces/sdk-NS-6718/disasterRecoveryConfigs/sdk-DisasterRecovery-860?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNTMwNS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTY3MTgvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLURpc2FzdGVyUmVjb3ZlcnktODYwP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3186/providers/Microsoft.EventHub/namespaces/sdk-NS-9858/disasterRecoveryConfigs/sdk-DisasterRecovery-5399?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMzE4Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTk4NTgvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLURpc2FzdGVyUmVjb3ZlcnktNTM5OT9hcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"partnerNamespace\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-5305/providers/Microsoft.EventHub/namespaces/sdk-NS-7492\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"partnerNamespace\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3186/providers/Microsoft.EventHub/namespaces/sdk-NS-7878\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "a82a6b31-d9d7-4901-a6d7-a3c00e122f38" + "23dd39f3-7f40-4dc4-8dd5-31937897f7f3" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -974,27 +974,30 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 03:06:33 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "88a332a4-0b71-4e6a-ad8d-4aac87d32e28_M3CH3_M3CH3" + "91488742-8d78-4178-b3f0-a97e05402a5e_M8CH3_M8CH3" ], "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], - "Server": [ - "Service-Bus-Resource-Provider/CH3", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-writes": [ "1197" ], "x-ms-correlation-request-id": [ - "26b32623-7239-431b-8313-e00c52b741de" + "a3189389-1ffa-4b4e-a409-aa99bf5a1fd2" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210924T044955Z:26b32623-7239-431b-8313-e00c52b741de" + "SOUTHINDIA:20211115T030633Z:a3189389-1ffa-4b4e-a409-aa99bf5a1fd2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1002,11 +1005,8 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:49:55 GMT" - ], "Content-Length": [ - "549" + "551" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1015,53 +1015,56 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-5305/providers/Microsoft.EventHub/namespaces/sdk-NS-6718/disasterRecoveryConfigs/sdk-DisasterRecovery-860\",\r\n \"name\": \"sdk-DisasterRecovery-860\",\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-5305/providers/Microsoft.EventHub/namespaces/sdk-NS-7492\",\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-3186/providers/Microsoft.EventHub/namespaces/sdk-NS-9858/disasterRecoveryConfigs/sdk-DisasterRecovery-5399\",\r\n \"name\": \"sdk-DisasterRecovery-5399\",\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-3186/providers/Microsoft.EventHub/namespaces/sdk-NS-7878\",\r\n \"role\": \"Primary\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-5305/providers/Microsoft.EventHub/namespaces/sdk-NS-6718/disasterRecoveryConfigs/sdk-DisasterRecovery-860?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNTMwNS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTY3MTgvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLURpc2FzdGVyUmVjb3ZlcnktODYwP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3186/providers/Microsoft.EventHub/namespaces/sdk-NS-9858/disasterRecoveryConfigs/sdk-DisasterRecovery-5399?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMzE4Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTk4NTgvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLURpc2FzdGVyUmVjb3ZlcnktNTM5OT9hcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "eb5ddb9a-c2b2-4f35-a420-d040d9b6e121" + "48d6982c-de62-474d-91b7-7a4c358fe142" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 03:03:44 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "7362f9ba-9bea-4aae-8ed9-04999d7dedaf_M0CH3_M0CH3" + "b509f8ee-6706-47fc-81f2-21752e238af2_M11CH3_M11CH3" ], "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], - "Server": [ - "Service-Bus-Resource-Provider/CH3", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ "11994" ], "x-ms-correlation-request-id": [ - "01d7fae5-dac9-4854-96fb-c795629026e2" + "df0e1e5e-480d-4403-bd5c-acc604184340" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210924T044722Z:01d7fae5-dac9-4854-96fb-c795629026e2" + "SOUTHINDIA:20211115T030344Z:df0e1e5e-480d-4403-bd5c-acc604184340" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1069,11 +1072,8 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:47:21 GMT" - ], "Content-Length": [ - "549" + "551" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1082,53 +1082,56 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-5305/providers/Microsoft.EventHub/namespaces/sdk-NS-6718/disasterRecoveryConfigs/sdk-DisasterRecovery-860\",\r\n \"name\": \"sdk-DisasterRecovery-860\",\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-5305/providers/Microsoft.EventHub/namespaces/sdk-NS-7492\",\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-3186/providers/Microsoft.EventHub/namespaces/sdk-NS-9858/disasterRecoveryConfigs/sdk-DisasterRecovery-5399\",\r\n \"name\": \"sdk-DisasterRecovery-5399\",\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-3186/providers/Microsoft.EventHub/namespaces/sdk-NS-7878\",\r\n \"role\": \"Primary\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-5305/providers/Microsoft.EventHub/namespaces/sdk-NS-6718/disasterRecoveryConfigs/sdk-DisasterRecovery-860?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNTMwNS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTY3MTgvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLURpc2FzdGVyUmVjb3ZlcnktODYwP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3186/providers/Microsoft.EventHub/namespaces/sdk-NS-9858/disasterRecoveryConfigs/sdk-DisasterRecovery-5399?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMzE4Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTk4NTgvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLURpc2FzdGVyUmVjb3ZlcnktNTM5OT9hcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9d3cf6ec-90a1-4603-bf65-ef75051c83fc" + "1f9f254a-00f0-47ee-bcab-21827219f073" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 03:03:47 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "934d981e-73b6-49b1-a720-76496f29258c_M0CH3_M0CH3" + "8b73d8a7-b59c-481c-a6f0-8d5e24411410_M11CH3_M11CH3" ], "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], - "Server": [ - "Service-Bus-Resource-Provider/CH3", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ "11991" ], "x-ms-correlation-request-id": [ - "7f54887a-7e3f-4ffe-9555-e8cb4dc0259a" + "2b7d1219-6102-4c52-b0b1-63653381c5c0" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210924T044724Z:7f54887a-7e3f-4ffe-9555-e8cb4dc0259a" + "SOUTHINDIA:20211115T030347Z:2b7d1219-6102-4c52-b0b1-63653381c5c0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1136,11 +1139,8 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:47:23 GMT" - ], "Content-Length": [ - "549" + "551" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1149,53 +1149,56 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-5305/providers/Microsoft.EventHub/namespaces/sdk-NS-6718/disasterRecoveryConfigs/sdk-DisasterRecovery-860\",\r\n \"name\": \"sdk-DisasterRecovery-860\",\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-5305/providers/Microsoft.EventHub/namespaces/sdk-NS-7492\",\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-3186/providers/Microsoft.EventHub/namespaces/sdk-NS-9858/disasterRecoveryConfigs/sdk-DisasterRecovery-5399\",\r\n \"name\": \"sdk-DisasterRecovery-5399\",\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-3186/providers/Microsoft.EventHub/namespaces/sdk-NS-7878\",\r\n \"role\": \"Primary\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-5305/providers/Microsoft.EventHub/namespaces/sdk-NS-6718/disasterRecoveryConfigs/sdk-DisasterRecovery-860?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNTMwNS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTY3MTgvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLURpc2FzdGVyUmVjb3ZlcnktODYwP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3186/providers/Microsoft.EventHub/namespaces/sdk-NS-9858/disasterRecoveryConfigs/sdk-DisasterRecovery-5399?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMzE4Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTk4NTgvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLURpc2FzdGVyUmVjb3ZlcnktNTM5OT9hcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b962543b-cc01-4f2c-893a-e3eeedc00094" + "12089dc4-c52d-4387-b596-6c0199585c57" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 03:03:57 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "945d3508-66d6-4755-9604-a19887239fe7_M1CH3_M1CH3" + "bb8bbe4a-9fd3-40df-91ab-5d103add276e_M11CH3_M11CH3" ], "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], - "Server": [ - "Service-Bus-Resource-Provider/CH3", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ "11990" ], "x-ms-correlation-request-id": [ - "32959717-9732-48a4-a236-19db5d27783e" + "c1aa396c-e28e-4591-9d9f-d43e5ef7dafc" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210924T044734Z:32959717-9732-48a4-a236-19db5d27783e" + "SOUTHINDIA:20211115T030357Z:c1aa396c-e28e-4591-9d9f-d43e5ef7dafc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1203,11 +1206,8 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:47:33 GMT" - ], "Content-Length": [ - "549" + "551" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1216,53 +1216,56 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-5305/providers/Microsoft.EventHub/namespaces/sdk-NS-6718/disasterRecoveryConfigs/sdk-DisasterRecovery-860\",\r\n \"name\": \"sdk-DisasterRecovery-860\",\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-5305/providers/Microsoft.EventHub/namespaces/sdk-NS-7492\",\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-3186/providers/Microsoft.EventHub/namespaces/sdk-NS-9858/disasterRecoveryConfigs/sdk-DisasterRecovery-5399\",\r\n \"name\": \"sdk-DisasterRecovery-5399\",\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-3186/providers/Microsoft.EventHub/namespaces/sdk-NS-7878\",\r\n \"role\": \"Primary\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-5305/providers/Microsoft.EventHub/namespaces/sdk-NS-6718/disasterRecoveryConfigs/sdk-DisasterRecovery-860?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNTMwNS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTY3MTgvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLURpc2FzdGVyUmVjb3ZlcnktODYwP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3186/providers/Microsoft.EventHub/namespaces/sdk-NS-9858/disasterRecoveryConfigs/sdk-DisasterRecovery-5399?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMzE4Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTk4NTgvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLURpc2FzdGVyUmVjb3ZlcnktNTM5OT9hcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5b1ef9e8-b51d-4b59-8223-235a9d453f89" + "cbf00dde-dd9e-4f2d-851a-60dd8aec8552" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 03:04:07 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "1402beb4-ce18-4756-a813-2f9f8f7b25ce_M1CH3_M1CH3" + "4a4be837-2eb5-467c-93bf-bf7e8b0b13d5_M11CH3_M11CH3" ], "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], - "Server": [ - "Service-Bus-Resource-Provider/CH3", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ "11989" ], "x-ms-correlation-request-id": [ - "1a0a8efd-f891-4867-8406-73b477fbf301" + "3778f3a3-a26b-44c2-97da-d3dec5d7e4e8" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210924T044744Z:1a0a8efd-f891-4867-8406-73b477fbf301" + "SOUTHINDIA:20211115T030408Z:3778f3a3-a26b-44c2-97da-d3dec5d7e4e8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1270,11 +1273,8 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:47:43 GMT" - ], "Content-Length": [ - "549" + "551" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1283,53 +1283,56 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-5305/providers/Microsoft.EventHub/namespaces/sdk-NS-6718/disasterRecoveryConfigs/sdk-DisasterRecovery-860\",\r\n \"name\": \"sdk-DisasterRecovery-860\",\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-5305/providers/Microsoft.EventHub/namespaces/sdk-NS-7492\",\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-3186/providers/Microsoft.EventHub/namespaces/sdk-NS-9858/disasterRecoveryConfigs/sdk-DisasterRecovery-5399\",\r\n \"name\": \"sdk-DisasterRecovery-5399\",\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-3186/providers/Microsoft.EventHub/namespaces/sdk-NS-7878\",\r\n \"role\": \"Primary\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-5305/providers/Microsoft.EventHub/namespaces/sdk-NS-6718/disasterRecoveryConfigs/sdk-DisasterRecovery-860?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNTMwNS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTY3MTgvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLURpc2FzdGVyUmVjb3ZlcnktODYwP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3186/providers/Microsoft.EventHub/namespaces/sdk-NS-9858/disasterRecoveryConfigs/sdk-DisasterRecovery-5399?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMzE4Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTk4NTgvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLURpc2FzdGVyUmVjb3ZlcnktNTM5OT9hcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "573fd8bf-2173-4a03-9839-ce7c4ddca4a6" + "1137764a-4197-4062-be4c-f4b1bd08db0f" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 03:04:17 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "1412310b-ad46-4af4-b777-1734509a7b49_M4CH3_M4CH3" + "1dce261a-aa70-4bff-ba90-76a1aba2f579_M11CH3_M11CH3" ], "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], - "Server": [ - "Service-Bus-Resource-Provider/CH3", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ "11988" ], "x-ms-correlation-request-id": [ - "b4898523-efa4-4aae-9ef4-92444e967070" + "49097049-e962-4153-bac3-a7c30c9c8e6b" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210924T044754Z:b4898523-efa4-4aae-9ef4-92444e967070" + "SOUTHINDIA:20211115T030418Z:49097049-e962-4153-bac3-a7c30c9c8e6b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1337,11 +1340,8 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:47:53 GMT" - ], "Content-Length": [ - "549" + "551" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1350,53 +1350,56 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-5305/providers/Microsoft.EventHub/namespaces/sdk-NS-6718/disasterRecoveryConfigs/sdk-DisasterRecovery-860\",\r\n \"name\": \"sdk-DisasterRecovery-860\",\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-5305/providers/Microsoft.EventHub/namespaces/sdk-NS-7492\",\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-3186/providers/Microsoft.EventHub/namespaces/sdk-NS-9858/disasterRecoveryConfigs/sdk-DisasterRecovery-5399\",\r\n \"name\": \"sdk-DisasterRecovery-5399\",\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-3186/providers/Microsoft.EventHub/namespaces/sdk-NS-7878\",\r\n \"role\": \"Primary\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-5305/providers/Microsoft.EventHub/namespaces/sdk-NS-6718/disasterRecoveryConfigs/sdk-DisasterRecovery-860?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNTMwNS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTY3MTgvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLURpc2FzdGVyUmVjb3ZlcnktODYwP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3186/providers/Microsoft.EventHub/namespaces/sdk-NS-9858/disasterRecoveryConfigs/sdk-DisasterRecovery-5399?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMzE4Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTk4NTgvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLURpc2FzdGVyUmVjb3ZlcnktNTM5OT9hcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ea9bf00d-f0ba-4ada-9174-e4abc731b051" + "fe9b59ae-b07d-4088-a7bd-c27938941d6e" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 03:04:28 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "3b5ba8da-8d1e-44b9-9b2d-b84f0745ee4e_M11CH3_M11CH3" + "95678fea-220d-4734-900e-6cf4764e9611_M11CH3_M11CH3" ], "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], - "Server": [ - "Service-Bus-Resource-Provider/CH3", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ "11987" ], "x-ms-correlation-request-id": [ - "7a666b38-e13d-4fd5-be7c-b7a1d0567c09" + "c55b8db7-a3b7-4ae3-a956-4a375f38db29" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210924T044804Z:7a666b38-e13d-4fd5-be7c-b7a1d0567c09" + "SOUTHINDIA:20211115T030428Z:c55b8db7-a3b7-4ae3-a956-4a375f38db29" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1404,11 +1407,8 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:48:04 GMT" - ], "Content-Length": [ - "549" + "551" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1417,53 +1417,56 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-5305/providers/Microsoft.EventHub/namespaces/sdk-NS-6718/disasterRecoveryConfigs/sdk-DisasterRecovery-860\",\r\n \"name\": \"sdk-DisasterRecovery-860\",\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-5305/providers/Microsoft.EventHub/namespaces/sdk-NS-7492\",\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-3186/providers/Microsoft.EventHub/namespaces/sdk-NS-9858/disasterRecoveryConfigs/sdk-DisasterRecovery-5399\",\r\n \"name\": \"sdk-DisasterRecovery-5399\",\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-3186/providers/Microsoft.EventHub/namespaces/sdk-NS-7878\",\r\n \"role\": \"Primary\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-5305/providers/Microsoft.EventHub/namespaces/sdk-NS-6718/disasterRecoveryConfigs/sdk-DisasterRecovery-860?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNTMwNS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTY3MTgvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLURpc2FzdGVyUmVjb3ZlcnktODYwP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3186/providers/Microsoft.EventHub/namespaces/sdk-NS-9858/disasterRecoveryConfigs/sdk-DisasterRecovery-5399?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMzE4Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTk4NTgvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLURpc2FzdGVyUmVjb3ZlcnktNTM5OT9hcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "19931cc5-e85a-4596-b5c7-710af30619f9" + "5d37e7fe-3394-4415-aee2-4fed18bf6075" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 03:04:38 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "f5fe87a4-7545-4177-bb24-316315604e9d_M4CH3_M4CH3" + "041e155f-a851-482a-87c6-941e04606d43_M8CH3_M8CH3" ], "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], - "Server": [ - "Service-Bus-Resource-Provider/CH3", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ "11986" ], "x-ms-correlation-request-id": [ - "623c52ee-2fe6-44d6-bf02-cf86b0382c8f" + "8cf59402-c8ea-47e9-9551-2c935088bcc2" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210924T044815Z:623c52ee-2fe6-44d6-bf02-cf86b0382c8f" + "SOUTHINDIA:20211115T030439Z:8cf59402-c8ea-47e9-9551-2c935088bcc2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1471,11 +1474,8 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:48:14 GMT" - ], "Content-Length": [ - "549" + "551" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1484,53 +1484,56 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-5305/providers/Microsoft.EventHub/namespaces/sdk-NS-6718/disasterRecoveryConfigs/sdk-DisasterRecovery-860\",\r\n \"name\": \"sdk-DisasterRecovery-860\",\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-5305/providers/Microsoft.EventHub/namespaces/sdk-NS-7492\",\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-3186/providers/Microsoft.EventHub/namespaces/sdk-NS-9858/disasterRecoveryConfigs/sdk-DisasterRecovery-5399\",\r\n \"name\": \"sdk-DisasterRecovery-5399\",\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-3186/providers/Microsoft.EventHub/namespaces/sdk-NS-7878\",\r\n \"role\": \"Primary\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-5305/providers/Microsoft.EventHub/namespaces/sdk-NS-6718/disasterRecoveryConfigs/sdk-DisasterRecovery-860?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNTMwNS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTY3MTgvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLURpc2FzdGVyUmVjb3ZlcnktODYwP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3186/providers/Microsoft.EventHub/namespaces/sdk-NS-9858/disasterRecoveryConfigs/sdk-DisasterRecovery-5399?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMzE4Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTk4NTgvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLURpc2FzdGVyUmVjb3ZlcnktNTM5OT9hcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5e201f26-827e-44dd-ba43-4c73fac4d931" + "4b788b66-b8ee-40cc-bd93-068388d762b3" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 03:04:50 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "39e77cf0-0f2b-4897-8dc0-f16746dcab24_M0CH3_M0CH3" + "1d12a112-22f0-446d-9cef-0ee1f9795db6_M8CH3_M8CH3" ], "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], - "Server": [ - "Service-Bus-Resource-Provider/CH3", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ "11985" ], "x-ms-correlation-request-id": [ - "21c1005f-9cf3-4902-84b6-228c887a0b34" + "91d80ac1-d681-4987-b8d4-d4848d85dc13" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210924T044825Z:21c1005f-9cf3-4902-84b6-228c887a0b34" + "SOUTHINDIA:20211115T030450Z:91d80ac1-d681-4987-b8d4-d4848d85dc13" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1538,11 +1541,8 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:48:25 GMT" - ], "Content-Length": [ - "588" + "590" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1551,53 +1551,56 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-5305/providers/Microsoft.EventHub/namespaces/sdk-NS-6718/disasterRecoveryConfigs/sdk-DisasterRecovery-860\",\r\n \"name\": \"sdk-DisasterRecovery-860\",\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-5305/providers/Microsoft.EventHub/namespaces/sdk-NS-7492\",\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-3186/providers/Microsoft.EventHub/namespaces/sdk-NS-9858/disasterRecoveryConfigs/sdk-DisasterRecovery-5399\",\r\n \"name\": \"sdk-DisasterRecovery-5399\",\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-3186/providers/Microsoft.EventHub/namespaces/sdk-NS-7878\",\r\n \"role\": \"Primary\",\r\n \"type\": \"MetadataReplication\",\r\n \"pendingReplicationOperationsCount\": 0\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-5305/providers/Microsoft.EventHub/namespaces/sdk-NS-6718/disasterRecoveryConfigs/sdk-DisasterRecovery-860?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNTMwNS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTY3MTgvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLURpc2FzdGVyUmVjb3ZlcnktODYwP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3186/providers/Microsoft.EventHub/namespaces/sdk-NS-9858/disasterRecoveryConfigs/sdk-DisasterRecovery-5399?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMzE4Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTk4NTgvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLURpc2FzdGVyUmVjb3ZlcnktNTM5OT9hcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7bd11e5f-3060-4b18-bf9d-f4fe23e7b9a7" + "ac9b358e-557f-44c9-aa6e-69b2f9c03eb7" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 03:04:51 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "62de721d-6e71-48a5-af86-1a05dc28ca0c_M0CH3_M0CH3" + "7c62bf00-fe7e-455f-b098-c4d291a94f0a_M8CH3_M8CH3" ], "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], - "Server": [ - "Service-Bus-Resource-Provider/CH3", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ "11984" ], "x-ms-correlation-request-id": [ - "10487c9c-471c-487d-9f59-1e2253170754" + "82e0a5aa-a97d-4b81-9471-2e6617c47b7c" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210924T044826Z:10487c9c-471c-487d-9f59-1e2253170754" + "SOUTHINDIA:20211115T030451Z:82e0a5aa-a97d-4b81-9471-2e6617c47b7c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1605,11 +1608,8 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:48:25 GMT" - ], "Content-Length": [ - "588" + "590" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1618,53 +1618,56 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-5305/providers/Microsoft.EventHub/namespaces/sdk-NS-6718/disasterRecoveryConfigs/sdk-DisasterRecovery-860\",\r\n \"name\": \"sdk-DisasterRecovery-860\",\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-5305/providers/Microsoft.EventHub/namespaces/sdk-NS-7492\",\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-3186/providers/Microsoft.EventHub/namespaces/sdk-NS-9858/disasterRecoveryConfigs/sdk-DisasterRecovery-5399\",\r\n \"name\": \"sdk-DisasterRecovery-5399\",\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-3186/providers/Microsoft.EventHub/namespaces/sdk-NS-7878\",\r\n \"role\": \"Primary\",\r\n \"type\": \"MetadataReplication\",\r\n \"pendingReplicationOperationsCount\": 0\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-5305/providers/Microsoft.EventHub/namespaces/sdk-NS-6718/disasterRecoveryConfigs/sdk-DisasterRecovery-860?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNTMwNS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTY3MTgvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLURpc2FzdGVyUmVjb3ZlcnktODYwP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3186/providers/Microsoft.EventHub/namespaces/sdk-NS-9858/disasterRecoveryConfigs/sdk-DisasterRecovery-5399?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMzE4Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTk4NTgvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLURpc2FzdGVyUmVjb3ZlcnktNTM5OT9hcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3d319324-b50f-4d7a-bede-5b96b70523d8" + "615a090e-0749-4449-9920-0917b0c5550b" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 03:05:02 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "9b009b65-cb17-4fb0-9123-a5856e8ab1e0_M6CH3_M6CH3" + "48fe8197-143d-4b1d-8b01-96cd97304c7c_M8CH3_M8CH3" ], "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], - "Server": [ - "Service-Bus-Resource-Provider/CH3", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ "11983" ], "x-ms-correlation-request-id": [ - "d5c5699f-71ab-45d9-be40-6ce96fed1750" + "5ad61d56-993c-4fad-b038-ff501b1bd560" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210924T044836Z:d5c5699f-71ab-45d9-be40-6ce96fed1750" + "SOUTHINDIA:20211115T030502Z:5ad61d56-993c-4fad-b038-ff501b1bd560" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1672,11 +1675,8 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:48:36 GMT" - ], "Content-Length": [ - "549" + "551" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1685,53 +1685,56 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-5305/providers/Microsoft.EventHub/namespaces/sdk-NS-6718/disasterRecoveryConfigs/sdk-DisasterRecovery-860\",\r\n \"name\": \"sdk-DisasterRecovery-860\",\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-5305/providers/Microsoft.EventHub/namespaces/sdk-NS-7492\",\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-3186/providers/Microsoft.EventHub/namespaces/sdk-NS-9858/disasterRecoveryConfigs/sdk-DisasterRecovery-5399\",\r\n \"name\": \"sdk-DisasterRecovery-5399\",\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-3186/providers/Microsoft.EventHub/namespaces/sdk-NS-7878\",\r\n \"role\": \"Primary\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-5305/providers/Microsoft.EventHub/namespaces/sdk-NS-6718/disasterRecoveryConfigs/sdk-DisasterRecovery-860?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNTMwNS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTY3MTgvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLURpc2FzdGVyUmVjb3ZlcnktODYwP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3186/providers/Microsoft.EventHub/namespaces/sdk-NS-9858/disasterRecoveryConfigs/sdk-DisasterRecovery-5399?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMzE4Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTk4NTgvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLURpc2FzdGVyUmVjb3ZlcnktNTM5OT9hcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "88baed4f-70ee-49b7-8f5f-16d6d807151f" + "73670205-90c5-4194-801f-a81f3c28ffde" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 03:05:12 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "e23fc2ed-a296-4674-8115-f3a5f2dfae19_M4CH3_M4CH3" + "d4ccdece-9fd3-477e-9011-0ddcca1e14df_M8CH3_M8CH3" ], "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], - "Server": [ - "Service-Bus-Resource-Provider/CH3", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ "11982" ], "x-ms-correlation-request-id": [ - "8f9535b9-e285-47c2-afd8-c6262f45a4e6" + "192d5365-1d29-42ef-a764-858cda933783" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210924T044847Z:8f9535b9-e285-47c2-afd8-c6262f45a4e6" + "SOUTHINDIA:20211115T030512Z:192d5365-1d29-42ef-a764-858cda933783" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1739,11 +1742,8 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:48:46 GMT" - ], "Content-Length": [ - "549" + "551" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1752,53 +1752,56 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-5305/providers/Microsoft.EventHub/namespaces/sdk-NS-6718/disasterRecoveryConfigs/sdk-DisasterRecovery-860\",\r\n \"name\": \"sdk-DisasterRecovery-860\",\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-5305/providers/Microsoft.EventHub/namespaces/sdk-NS-7492\",\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-3186/providers/Microsoft.EventHub/namespaces/sdk-NS-9858/disasterRecoveryConfigs/sdk-DisasterRecovery-5399\",\r\n \"name\": \"sdk-DisasterRecovery-5399\",\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-3186/providers/Microsoft.EventHub/namespaces/sdk-NS-7878\",\r\n \"role\": \"Primary\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-5305/providers/Microsoft.EventHub/namespaces/sdk-NS-6718/disasterRecoveryConfigs/sdk-DisasterRecovery-860?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNTMwNS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTY3MTgvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLURpc2FzdGVyUmVjb3ZlcnktODYwP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3186/providers/Microsoft.EventHub/namespaces/sdk-NS-9858/disasterRecoveryConfigs/sdk-DisasterRecovery-5399?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMzE4Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTk4NTgvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLURpc2FzdGVyUmVjb3ZlcnktNTM5OT9hcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "59239656-7218-4388-890b-0c463fdb45c5" + "38304859-7df7-4291-8062-25deb9881488" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 03:05:22 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "dbf564a3-717f-4351-9ae7-a3bea43cdd73_M4CH3_M4CH3" + "e831b34b-f308-45fb-bac1-9dee16772ccc_M8CH3_M8CH3" ], "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], - "Server": [ - "Service-Bus-Resource-Provider/CH3", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ "11981" ], "x-ms-correlation-request-id": [ - "67831e5c-ab57-428c-b0aa-54fb95d04aa2" + "2ab9dde4-1b58-456e-8d85-aab2a22077d0" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210924T044857Z:67831e5c-ab57-428c-b0aa-54fb95d04aa2" + "SOUTHINDIA:20211115T030523Z:2ab9dde4-1b58-456e-8d85-aab2a22077d0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1806,11 +1809,8 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:48:57 GMT" - ], "Content-Length": [ - "549" + "551" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1819,53 +1819,56 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-5305/providers/Microsoft.EventHub/namespaces/sdk-NS-6718/disasterRecoveryConfigs/sdk-DisasterRecovery-860\",\r\n \"name\": \"sdk-DisasterRecovery-860\",\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-5305/providers/Microsoft.EventHub/namespaces/sdk-NS-7492\",\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-3186/providers/Microsoft.EventHub/namespaces/sdk-NS-9858/disasterRecoveryConfigs/sdk-DisasterRecovery-5399\",\r\n \"name\": \"sdk-DisasterRecovery-5399\",\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-3186/providers/Microsoft.EventHub/namespaces/sdk-NS-7878\",\r\n \"role\": \"Primary\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-5305/providers/Microsoft.EventHub/namespaces/sdk-NS-6718/disasterRecoveryConfigs/sdk-DisasterRecovery-860?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNTMwNS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTY3MTgvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLURpc2FzdGVyUmVjb3ZlcnktODYwP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3186/providers/Microsoft.EventHub/namespaces/sdk-NS-9858/disasterRecoveryConfigs/sdk-DisasterRecovery-5399?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMzE4Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTk4NTgvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLURpc2FzdGVyUmVjb3ZlcnktNTM5OT9hcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6e94b968-33ca-4890-b53e-4a8ccf7d1d42" + "d378c219-5662-4ac7-8705-8ca7190c8aac" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 03:05:33 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "657ed8e6-9382-41a2-a210-66b922391650_M10CH3_M10CH3" + "9c9cf02c-a921-4b0c-a3aa-ebce74616a82_M8CH3_M8CH3" ], "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], - "Server": [ - "Service-Bus-Resource-Provider/CH3", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ "11980" ], "x-ms-correlation-request-id": [ - "caf4da1a-2a4c-44f0-9c27-369f8f4ffd20" + "e589da2d-7de1-4de7-8ead-a6e64e7c0106" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210924T044907Z:caf4da1a-2a4c-44f0-9c27-369f8f4ffd20" + "SOUTHINDIA:20211115T030533Z:e589da2d-7de1-4de7-8ead-a6e64e7c0106" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1873,11 +1876,8 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:49:07 GMT" - ], "Content-Length": [ - "549" + "551" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1886,53 +1886,56 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-5305/providers/Microsoft.EventHub/namespaces/sdk-NS-6718/disasterRecoveryConfigs/sdk-DisasterRecovery-860\",\r\n \"name\": \"sdk-DisasterRecovery-860\",\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-5305/providers/Microsoft.EventHub/namespaces/sdk-NS-7492\",\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-3186/providers/Microsoft.EventHub/namespaces/sdk-NS-9858/disasterRecoveryConfigs/sdk-DisasterRecovery-5399\",\r\n \"name\": \"sdk-DisasterRecovery-5399\",\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-3186/providers/Microsoft.EventHub/namespaces/sdk-NS-7878\",\r\n \"role\": \"Primary\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-5305/providers/Microsoft.EventHub/namespaces/sdk-NS-6718/disasterRecoveryConfigs/sdk-DisasterRecovery-860?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNTMwNS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTY3MTgvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLURpc2FzdGVyUmVjb3ZlcnktODYwP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3186/providers/Microsoft.EventHub/namespaces/sdk-NS-9858/disasterRecoveryConfigs/sdk-DisasterRecovery-5399?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMzE4Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTk4NTgvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLURpc2FzdGVyUmVjb3ZlcnktNTM5OT9hcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e514077a-5056-4251-8c37-d36de230fd01" + "61b2cce0-5d5d-4799-8512-acb9ee67ea32" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 03:05:43 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "e2dd3b59-de1a-435b-951e-cb9ace92c4d0_M4CH3_M4CH3" + "2c44212a-d424-4d8f-8661-581d842b52bf_M8CH3_M8CH3" ], "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], - "Server": [ - "Service-Bus-Resource-Provider/CH3", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ "11979" ], "x-ms-correlation-request-id": [ - "602a54d9-57b8-4c46-a331-3d49c29d14f8" + "9b82e031-450c-45ac-ba2e-b2c97c05d37b" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210924T044918Z:602a54d9-57b8-4c46-a331-3d49c29d14f8" + "SOUTHINDIA:20211115T030544Z:9b82e031-450c-45ac-ba2e-b2c97c05d37b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1940,11 +1943,8 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:49:17 GMT" - ], "Content-Length": [ - "549" + "551" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1953,53 +1953,56 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-5305/providers/Microsoft.EventHub/namespaces/sdk-NS-6718/disasterRecoveryConfigs/sdk-DisasterRecovery-860\",\r\n \"name\": \"sdk-DisasterRecovery-860\",\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-5305/providers/Microsoft.EventHub/namespaces/sdk-NS-7492\",\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-3186/providers/Microsoft.EventHub/namespaces/sdk-NS-9858/disasterRecoveryConfigs/sdk-DisasterRecovery-5399\",\r\n \"name\": \"sdk-DisasterRecovery-5399\",\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-3186/providers/Microsoft.EventHub/namespaces/sdk-NS-7878\",\r\n \"role\": \"Primary\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-5305/providers/Microsoft.EventHub/namespaces/sdk-NS-6718/disasterRecoveryConfigs/sdk-DisasterRecovery-860?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNTMwNS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTY3MTgvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLURpc2FzdGVyUmVjb3ZlcnktODYwP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3186/providers/Microsoft.EventHub/namespaces/sdk-NS-9858/disasterRecoveryConfigs/sdk-DisasterRecovery-5399?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMzE4Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTk4NTgvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLURpc2FzdGVyUmVjb3ZlcnktNTM5OT9hcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9ad8f104-53ae-49ca-9c4e-449aacd3cc94" + "5d086226-3b5c-4552-bcb6-eded2785b8bb" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 03:05:53 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "72e3ab70-e1fd-4e7d-b3bc-ca43fd8c838a_M4CH3_M4CH3" + "f80a7643-4ed1-4f8f-8d36-90e1deacd7ef_M8CH3_M8CH3" ], "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], - "Server": [ - "Service-Bus-Resource-Provider/CH3", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ "11978" ], "x-ms-correlation-request-id": [ - "64054a42-5d12-47f9-87aa-7d1f50c72381" + "4e3d5acf-9291-4fc3-be70-8aab46db7ccc" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210924T044928Z:64054a42-5d12-47f9-87aa-7d1f50c72381" + "SOUTHINDIA:20211115T030554Z:4e3d5acf-9291-4fc3-be70-8aab46db7ccc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2007,11 +2010,8 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:49:27 GMT" - ], "Content-Length": [ - "549" + "551" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2020,53 +2020,56 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-5305/providers/Microsoft.EventHub/namespaces/sdk-NS-6718/disasterRecoveryConfigs/sdk-DisasterRecovery-860\",\r\n \"name\": \"sdk-DisasterRecovery-860\",\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-5305/providers/Microsoft.EventHub/namespaces/sdk-NS-7492\",\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-3186/providers/Microsoft.EventHub/namespaces/sdk-NS-9858/disasterRecoveryConfigs/sdk-DisasterRecovery-5399\",\r\n \"name\": \"sdk-DisasterRecovery-5399\",\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-3186/providers/Microsoft.EventHub/namespaces/sdk-NS-7878\",\r\n \"role\": \"Primary\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-5305/providers/Microsoft.EventHub/namespaces/sdk-NS-6718/disasterRecoveryConfigs/sdk-DisasterRecovery-860?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNTMwNS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTY3MTgvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLURpc2FzdGVyUmVjb3ZlcnktODYwP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3186/providers/Microsoft.EventHub/namespaces/sdk-NS-9858/disasterRecoveryConfigs/sdk-DisasterRecovery-5399?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMzE4Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTk4NTgvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLURpc2FzdGVyUmVjb3ZlcnktNTM5OT9hcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c679b582-3055-4ed7-acd0-b3c3936eb06f" + "5a991a57-8aac-4283-9bfa-82fdf9f35939" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 03:06:04 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "b93cadd0-bbbd-4d86-b5c3-4a0d6334f9b2_M5CH3_M5CH3" + "a40152f6-8608-43e0-8060-cf2a8c31d227_M8CH3_M8CH3" ], "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], - "Server": [ - "Service-Bus-Resource-Provider/CH3", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ "11977" ], "x-ms-correlation-request-id": [ - "e357154c-556a-4238-9823-e56c0368e917" + "5de81de2-b9c7-4919-b0de-a5feea480f70" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210924T044938Z:e357154c-556a-4238-9823-e56c0368e917" + "SOUTHINDIA:20211115T030604Z:5de81de2-b9c7-4919-b0de-a5feea480f70" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2074,11 +2077,8 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:49:37 GMT" - ], "Content-Length": [ - "549" + "551" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2087,53 +2087,56 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-5305/providers/Microsoft.EventHub/namespaces/sdk-NS-6718/disasterRecoveryConfigs/sdk-DisasterRecovery-860\",\r\n \"name\": \"sdk-DisasterRecovery-860\",\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-5305/providers/Microsoft.EventHub/namespaces/sdk-NS-7492\",\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-3186/providers/Microsoft.EventHub/namespaces/sdk-NS-9858/disasterRecoveryConfigs/sdk-DisasterRecovery-5399\",\r\n \"name\": \"sdk-DisasterRecovery-5399\",\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-3186/providers/Microsoft.EventHub/namespaces/sdk-NS-7878\",\r\n \"role\": \"Primary\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-5305/providers/Microsoft.EventHub/namespaces/sdk-NS-6718/disasterRecoveryConfigs/sdk-DisasterRecovery-860?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNTMwNS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTY3MTgvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLURpc2FzdGVyUmVjb3ZlcnktODYwP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3186/providers/Microsoft.EventHub/namespaces/sdk-NS-9858/disasterRecoveryConfigs/sdk-DisasterRecovery-5399?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMzE4Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTk4NTgvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLURpc2FzdGVyUmVjb3ZlcnktNTM5OT9hcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "31cfa7bc-d80f-4550-9065-ac1daa4c27ab" + "2f6c3b2e-f4fa-4295-b425-19c4eab28bdd" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 03:06:15 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "3fb079e9-a241-4141-a848-f8144fdcb555_M5CH3_M5CH3" + "899c6c73-96d1-4cd0-b0d1-9e024d9ea917_M0SN1_M0SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" - ], - "Server": [ - "Service-Bus-Resource-Provider/CH3", - "Microsoft-HTTPAPI/2.0" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11976" ], "x-ms-correlation-request-id": [ - "8c6d17e9-802c-4a7f-91f3-5e46773967c2" + "a3a0baf3-82b8-4519-a55a-ce2db2adc45d" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210924T044948Z:8c6d17e9-802c-4a7f-91f3-5e46773967c2" + "SOUTHINDIA:20211115T030616Z:a3a0baf3-82b8-4519-a55a-ce2db2adc45d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2141,11 +2144,8 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:49:48 GMT" - ], "Content-Length": [ - "424" + "551" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2154,53 +2154,56 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-5305/providers/Microsoft.EventHub/namespaces/sdk-NS-6718/disasterRecoveryConfigs/sdk-DisasterRecovery-860\",\r\n \"name\": \"sdk-DisasterRecovery-860\",\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-3186/providers/Microsoft.EventHub/namespaces/sdk-NS-9858/disasterRecoveryConfigs/sdk-DisasterRecovery-5399\",\r\n \"name\": \"sdk-DisasterRecovery-5399\",\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-3186/providers/Microsoft.EventHub/namespaces/sdk-NS-7878\",\r\n \"role\": \"Primary\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-5305/providers/Microsoft.EventHub/namespaces/sdk-NS-6718/disasterRecoveryConfigs/sdk-DisasterRecovery-860?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNTMwNS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTY3MTgvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLURpc2FzdGVyUmVjb3ZlcnktODYwP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3186/providers/Microsoft.EventHub/namespaces/sdk-NS-9858/disasterRecoveryConfigs/sdk-DisasterRecovery-5399?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMzE4Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTk4NTgvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLURpc2FzdGVyUmVjb3ZlcnktNTM5OT9hcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "324a1266-aefb-40ff-b0b0-84b686d2705d" + "33125775-32b7-427b-9bd7-f19695eceaf5" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 03:06:26 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "d83854e0-9fdc-4f94-9529-9c32537432f4_M5CH3_M5CH3" + "57828672-1d6e-439a-a9f0-8ad88bbb3360_M8CH3_M8CH3" ], "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], - "Server": [ - "Service-Bus-Resource-Provider/CH3", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ "11975" ], "x-ms-correlation-request-id": [ - "9018003c-a758-4fda-b335-6faa49b47faa" + "b808362f-8be4-49c7-b4e6-adb6477c34ba" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210924T045005Z:9018003c-a758-4fda-b335-6faa49b47faa" + "SOUTHINDIA:20211115T030626Z:b808362f-8be4-49c7-b4e6-adb6477c34ba" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2208,11 +2211,8 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:50:05 GMT" - ], "Content-Length": [ - "549" + "426" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2221,53 +2221,56 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-5305/providers/Microsoft.EventHub/namespaces/sdk-NS-6718/disasterRecoveryConfigs/sdk-DisasterRecovery-860\",\r\n \"name\": \"sdk-DisasterRecovery-860\",\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-5305/providers/Microsoft.EventHub/namespaces/sdk-NS-7492\",\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-3186/providers/Microsoft.EventHub/namespaces/sdk-NS-9858/disasterRecoveryConfigs/sdk-DisasterRecovery-5399\",\r\n \"name\": \"sdk-DisasterRecovery-5399\",\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/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-5305/providers/Microsoft.EventHub/namespaces/sdk-NS-6718/disasterRecoveryConfigs/sdk-DisasterRecovery-860?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNTMwNS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTY3MTgvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLURpc2FzdGVyUmVjb3ZlcnktODYwP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3186/providers/Microsoft.EventHub/namespaces/sdk-NS-9858/disasterRecoveryConfigs/sdk-DisasterRecovery-5399?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMzE4Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTk4NTgvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLURpc2FzdGVyUmVjb3ZlcnktNTM5OT9hcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a9da86af-31bf-499f-8eed-2cb1b14ae4ba" + "b8c85068-c0bc-4aea-b8fa-9667ce54b2b3" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 03:06:43 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "bafd49d0-11ab-4494-bffe-31a0fbea488a_M5CH3_M5CH3" + "9baf346f-7133-4b54-85e0-2e5171f542b9_M8CH3_M8CH3" ], "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], - "Server": [ - "Service-Bus-Resource-Provider/CH3", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ "11974" ], "x-ms-correlation-request-id": [ - "e22fd36e-97c8-47cb-9eeb-3a6e5e5adf96" + "c016d519-1e28-414b-8166-fc7c2f0478fd" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210924T045005Z:e22fd36e-97c8-47cb-9eeb-3a6e5e5adf96" + "SOUTHINDIA:20211115T030643Z:c016d519-1e28-414b-8166-fc7c2f0478fd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2275,11 +2278,8 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:50:05 GMT" - ], "Content-Length": [ - "549" + "551" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2288,53 +2288,56 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-5305/providers/Microsoft.EventHub/namespaces/sdk-NS-6718/disasterRecoveryConfigs/sdk-DisasterRecovery-860\",\r\n \"name\": \"sdk-DisasterRecovery-860\",\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-5305/providers/Microsoft.EventHub/namespaces/sdk-NS-7492\",\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-3186/providers/Microsoft.EventHub/namespaces/sdk-NS-9858/disasterRecoveryConfigs/sdk-DisasterRecovery-5399\",\r\n \"name\": \"sdk-DisasterRecovery-5399\",\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-3186/providers/Microsoft.EventHub/namespaces/sdk-NS-7878\",\r\n \"role\": \"Primary\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-5305/providers/Microsoft.EventHub/namespaces/sdk-NS-6718/disasterRecoveryConfigs/sdk-DisasterRecovery-860?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNTMwNS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTY3MTgvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLURpc2FzdGVyUmVjb3ZlcnktODYwP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3186/providers/Microsoft.EventHub/namespaces/sdk-NS-9858/disasterRecoveryConfigs/sdk-DisasterRecovery-5399?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMzE4Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTk4NTgvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLURpc2FzdGVyUmVjb3ZlcnktNTM5OT9hcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1c65771e-4cb0-472d-8675-093a12414adb" + "58f88f9c-b123-4f7c-84d9-22e0deb1fb42" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 03:06:43 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "dc4b0c1d-7059-481e-908e-b8d1d8d59822_M2CH3_M2CH3" + "6c885a18-9a75-45ab-a3bd-f6daa828a7bc_M8CH3_M8CH3" ], "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], - "Server": [ - "Service-Bus-Resource-Provider/CH3", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ "11973" ], "x-ms-correlation-request-id": [ - "9ed69729-827f-4960-9cf9-e6906eb8a026" + "da158410-f6d1-43fb-bf06-25001584379b" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210924T045016Z:9ed69729-827f-4960-9cf9-e6906eb8a026" + "SOUTHINDIA:20211115T030643Z:da158410-f6d1-43fb-bf06-25001584379b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2342,11 +2345,8 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:50:15 GMT" - ], "Content-Length": [ - "549" + "551" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2355,53 +2355,56 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-5305/providers/Microsoft.EventHub/namespaces/sdk-NS-6718/disasterRecoveryConfigs/sdk-DisasterRecovery-860\",\r\n \"name\": \"sdk-DisasterRecovery-860\",\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-5305/providers/Microsoft.EventHub/namespaces/sdk-NS-7492\",\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-3186/providers/Microsoft.EventHub/namespaces/sdk-NS-9858/disasterRecoveryConfigs/sdk-DisasterRecovery-5399\",\r\n \"name\": \"sdk-DisasterRecovery-5399\",\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-3186/providers/Microsoft.EventHub/namespaces/sdk-NS-7878\",\r\n \"role\": \"Primary\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-5305/providers/Microsoft.EventHub/namespaces/sdk-NS-6718/disasterRecoveryConfigs/sdk-DisasterRecovery-860?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNTMwNS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTY3MTgvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLURpc2FzdGVyUmVjb3ZlcnktODYwP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3186/providers/Microsoft.EventHub/namespaces/sdk-NS-9858/disasterRecoveryConfigs/sdk-DisasterRecovery-5399?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMzE4Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTk4NTgvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLURpc2FzdGVyUmVjb3ZlcnktNTM5OT9hcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a0a7bbff-7883-41e8-a855-f0fb74c8b64d" + "0b120f3c-a30e-4b83-9822-b678177de3a2" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 03:06:53 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "c5c0ed41-b7a3-4fe9-8ea3-9e94132f6d09_M4CH3_M4CH3" + "4b308401-d95e-43b8-8379-933f9469034c_M8CH3_M8CH3" ], "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], - "Server": [ - "Service-Bus-Resource-Provider/CH3", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ "11972" ], "x-ms-correlation-request-id": [ - "01b2e794-bea7-4c7c-94e1-9c7d0dea7b5c" + "8efc20a9-840f-43d9-af75-ee6d59169b32" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210924T045026Z:01b2e794-bea7-4c7c-94e1-9c7d0dea7b5c" + "SOUTHINDIA:20211115T030654Z:8efc20a9-840f-43d9-af75-ee6d59169b32" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2409,11 +2412,8 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:50:26 GMT" - ], "Content-Length": [ - "549" + "551" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2422,53 +2422,56 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-5305/providers/Microsoft.EventHub/namespaces/sdk-NS-6718/disasterRecoveryConfigs/sdk-DisasterRecovery-860\",\r\n \"name\": \"sdk-DisasterRecovery-860\",\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-5305/providers/Microsoft.EventHub/namespaces/sdk-NS-7492\",\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-3186/providers/Microsoft.EventHub/namespaces/sdk-NS-9858/disasterRecoveryConfigs/sdk-DisasterRecovery-5399\",\r\n \"name\": \"sdk-DisasterRecovery-5399\",\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-3186/providers/Microsoft.EventHub/namespaces/sdk-NS-7878\",\r\n \"role\": \"Primary\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-5305/providers/Microsoft.EventHub/namespaces/sdk-NS-6718/disasterRecoveryConfigs/sdk-DisasterRecovery-860?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNTMwNS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTY3MTgvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLURpc2FzdGVyUmVjb3ZlcnktODYwP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3186/providers/Microsoft.EventHub/namespaces/sdk-NS-9858/disasterRecoveryConfigs/sdk-DisasterRecovery-5399?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMzE4Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTk4NTgvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLURpc2FzdGVyUmVjb3ZlcnktNTM5OT9hcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d505abcd-58ac-444e-b748-4ed10b74e060" + "cf1777e5-1372-48b2-9e21-c378e7c2cb88" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 03:07:04 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "e5e4bc27-cd35-4251-98b9-720c4cf4bac5_M4CH3_M4CH3" + "7dc5b90a-4f2d-489c-aab5-1821da4bc95c_M8CH3_M8CH3" ], "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], - "Server": [ - "Service-Bus-Resource-Provider/CH3", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ "11971" ], "x-ms-correlation-request-id": [ - "ebe7d710-f60c-4801-b8ee-f9e2e0c17b87" + "623b9f5d-3ed0-4971-90e8-88bae944e1fe" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210924T045036Z:ebe7d710-f60c-4801-b8ee-f9e2e0c17b87" + "SOUTHINDIA:20211115T030704Z:623b9f5d-3ed0-4971-90e8-88bae944e1fe" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2476,11 +2479,8 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:50:36 GMT" - ], "Content-Length": [ - "549" + "551" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2489,53 +2489,56 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-5305/providers/Microsoft.EventHub/namespaces/sdk-NS-6718/disasterRecoveryConfigs/sdk-DisasterRecovery-860\",\r\n \"name\": \"sdk-DisasterRecovery-860\",\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-5305/providers/Microsoft.EventHub/namespaces/sdk-NS-7492\",\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-3186/providers/Microsoft.EventHub/namespaces/sdk-NS-9858/disasterRecoveryConfigs/sdk-DisasterRecovery-5399\",\r\n \"name\": \"sdk-DisasterRecovery-5399\",\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-3186/providers/Microsoft.EventHub/namespaces/sdk-NS-7878\",\r\n \"role\": \"Primary\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-5305/providers/Microsoft.EventHub/namespaces/sdk-NS-6718/disasterRecoveryConfigs/sdk-DisasterRecovery-860?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNTMwNS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTY3MTgvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLURpc2FzdGVyUmVjb3ZlcnktODYwP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3186/providers/Microsoft.EventHub/namespaces/sdk-NS-9858/disasterRecoveryConfigs/sdk-DisasterRecovery-5399?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMzE4Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTk4NTgvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLURpc2FzdGVyUmVjb3ZlcnktNTM5OT9hcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "dd7b86a2-05ec-432b-8ca5-a2a951d1e48b" + "09a10269-bd86-4403-ac95-e611607757bc" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 03:07:14 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "ee006912-e186-4ef7-a6bd-cb207d1a45d8_M8CH3_M8CH3" + "d6da34ed-9eaa-45aa-a506-0df817a2238e_M0SN1_M0SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" - ], - "Server": [ - "Service-Bus-Resource-Provider/CH3", - "Microsoft-HTTPAPI/2.0" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11970" ], "x-ms-correlation-request-id": [ - "5d1ac7b3-96f4-4685-925f-6e94a5868fda" + "67f36165-8c5c-422b-8216-619d052f1fa6" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210924T045047Z:5d1ac7b3-96f4-4685-925f-6e94a5868fda" + "SOUTHINDIA:20211115T030715Z:67f36165-8c5c-422b-8216-619d052f1fa6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2543,11 +2546,8 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:50:46 GMT" - ], "Content-Length": [ - "549" + "551" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2556,53 +2556,56 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-5305/providers/Microsoft.EventHub/namespaces/sdk-NS-6718/disasterRecoveryConfigs/sdk-DisasterRecovery-860\",\r\n \"name\": \"sdk-DisasterRecovery-860\",\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-5305/providers/Microsoft.EventHub/namespaces/sdk-NS-7492\",\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-3186/providers/Microsoft.EventHub/namespaces/sdk-NS-9858/disasterRecoveryConfigs/sdk-DisasterRecovery-5399\",\r\n \"name\": \"sdk-DisasterRecovery-5399\",\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-3186/providers/Microsoft.EventHub/namespaces/sdk-NS-7878\",\r\n \"role\": \"Primary\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-5305/providers/Microsoft.EventHub/namespaces/sdk-NS-6718/disasterRecoveryConfigs/sdk-DisasterRecovery-860?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNTMwNS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTY3MTgvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLURpc2FzdGVyUmVjb3ZlcnktODYwP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3186/providers/Microsoft.EventHub/namespaces/sdk-NS-9858/disasterRecoveryConfigs/sdk-DisasterRecovery-5399?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMzE4Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTk4NTgvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLURpc2FzdGVyUmVjb3ZlcnktNTM5OT9hcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0790ee16-54ef-4579-8154-9c6c2dc7d174" + "fe9fa627-8844-4c22-99d4-e15502985733" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 03:07:25 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "d0e71632-1eb9-4e5e-9907-cb745ab0e9b2_M8CH3_M8CH3" + "1075cab3-1f1c-4bb4-925a-e98650b97817_M8CH3_M8CH3" ], "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], - "Server": [ - "Service-Bus-Resource-Provider/CH3", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ "11969" ], "x-ms-correlation-request-id": [ - "236377be-ffa8-4203-acad-2fcd98f81200" + "fab4d35e-05f3-4dbc-a3de-ffbdf52bd5fc" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210924T045057Z:236377be-ffa8-4203-acad-2fcd98f81200" + "SOUTHINDIA:20211115T030725Z:fab4d35e-05f3-4dbc-a3de-ffbdf52bd5fc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2610,11 +2613,8 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:50:56 GMT" - ], "Content-Length": [ - "549" + "551" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2623,53 +2623,56 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-5305/providers/Microsoft.EventHub/namespaces/sdk-NS-6718/disasterRecoveryConfigs/sdk-DisasterRecovery-860\",\r\n \"name\": \"sdk-DisasterRecovery-860\",\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-5305/providers/Microsoft.EventHub/namespaces/sdk-NS-7492\",\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-3186/providers/Microsoft.EventHub/namespaces/sdk-NS-9858/disasterRecoveryConfigs/sdk-DisasterRecovery-5399\",\r\n \"name\": \"sdk-DisasterRecovery-5399\",\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-3186/providers/Microsoft.EventHub/namespaces/sdk-NS-7878\",\r\n \"role\": \"Primary\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-5305/providers/Microsoft.EventHub/namespaces/sdk-NS-6718/disasterRecoveryConfigs/sdk-DisasterRecovery-860?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNTMwNS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTY3MTgvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLURpc2FzdGVyUmVjb3ZlcnktODYwP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3186/providers/Microsoft.EventHub/namespaces/sdk-NS-9858/disasterRecoveryConfigs/sdk-DisasterRecovery-5399?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMzE4Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTk4NTgvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLURpc2FzdGVyUmVjb3ZlcnktNTM5OT9hcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "479b86c5-d9d8-46ad-8de3-8f3992ca88e6" + "c7625ff1-7c59-4e59-abb6-f7dbf4a1216a" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 03:07:35 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "9b8ec38f-00bd-4e84-a811-6f540071c7ea_M10CH3_M10CH3" + "60bd3163-21b3-4579-b1db-aa98654b1333_M8CH3_M8CH3" ], "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], - "Server": [ - "Service-Bus-Resource-Provider/CH3", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ "11968" ], "x-ms-correlation-request-id": [ - "12a8c0b7-4f13-41a4-9540-379a6812b5dd" + "4826d3c3-4d9b-4ff1-a923-d73c79d5d9e4" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210924T045107Z:12a8c0b7-4f13-41a4-9540-379a6812b5dd" + "SOUTHINDIA:20211115T030735Z:4826d3c3-4d9b-4ff1-a923-d73c79d5d9e4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2677,11 +2680,8 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:51:06 GMT" - ], "Content-Length": [ - "549" + "551" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2690,53 +2690,56 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-5305/providers/Microsoft.EventHub/namespaces/sdk-NS-6718/disasterRecoveryConfigs/sdk-DisasterRecovery-860\",\r\n \"name\": \"sdk-DisasterRecovery-860\",\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-5305/providers/Microsoft.EventHub/namespaces/sdk-NS-7492\",\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-3186/providers/Microsoft.EventHub/namespaces/sdk-NS-9858/disasterRecoveryConfigs/sdk-DisasterRecovery-5399\",\r\n \"name\": \"sdk-DisasterRecovery-5399\",\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-3186/providers/Microsoft.EventHub/namespaces/sdk-NS-7878\",\r\n \"role\": \"Primary\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-5305/providers/Microsoft.EventHub/namespaces/sdk-NS-6718/disasterRecoveryConfigs/sdk-DisasterRecovery-860?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNTMwNS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTY3MTgvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLURpc2FzdGVyUmVjb3ZlcnktODYwP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3186/providers/Microsoft.EventHub/namespaces/sdk-NS-9858/disasterRecoveryConfigs/sdk-DisasterRecovery-5399?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMzE4Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTk4NTgvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLURpc2FzdGVyUmVjb3ZlcnktNTM5OT9hcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ae9a757e-61d2-40dc-a5a2-e6a6b75618c9" + "cb7b1080-8fc8-4ae6-a346-80bac3ad20eb" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 03:07:46 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "fa2d28a2-46b3-416b-a0e6-4d1130715e1b_M6SN1_M6SN1" + "93e3bc1b-05b8-49f0-981b-35e56cb6299e_M8CH3_M8CH3" ], "Server-SB": [ - "Service-Bus-Resource-Provider/SN1" - ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" + "Service-Bus-Resource-Provider/CH3" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11967" ], "x-ms-correlation-request-id": [ - "a3e8389b-0ea3-4226-841a-93572fc7c80a" + "0113d60c-dd77-4015-a653-de05adbc3a4e" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210924T045118Z:a3e8389b-0ea3-4226-841a-93572fc7c80a" + "SOUTHINDIA:20211115T030746Z:0113d60c-dd77-4015-a653-de05adbc3a4e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2744,11 +2747,8 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:51:17 GMT" - ], "Content-Length": [ - "588" + "551" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2757,53 +2757,56 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-5305/providers/Microsoft.EventHub/namespaces/sdk-NS-6718/disasterRecoveryConfigs/sdk-DisasterRecovery-860\",\r\n \"name\": \"sdk-DisasterRecovery-860\",\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-5305/providers/Microsoft.EventHub/namespaces/sdk-NS-7492\",\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-3186/providers/Microsoft.EventHub/namespaces/sdk-NS-9858/disasterRecoveryConfigs/sdk-DisasterRecovery-5399\",\r\n \"name\": \"sdk-DisasterRecovery-5399\",\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-3186/providers/Microsoft.EventHub/namespaces/sdk-NS-7878\",\r\n \"role\": \"Primary\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-5305/providers/Microsoft.EventHub/namespaces/sdk-NS-6718/disasterRecoveryConfigs/sdk-DisasterRecovery-860?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNTMwNS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTY3MTgvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLURpc2FzdGVyUmVjb3ZlcnktODYwP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3186/providers/Microsoft.EventHub/namespaces/sdk-NS-9858/disasterRecoveryConfigs/sdk-DisasterRecovery-5399?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMzE4Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTk4NTgvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLURpc2FzdGVyUmVjb3ZlcnktNTM5OT9hcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e2428247-c4b5-41c2-a964-2d53ffd6945d" + "b1b4b6c8-fe3a-4bd6-abc3-aa4c4fa5ace7" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Pragma": [ + "Date": [ + "Mon, 15 Nov 2021 03:07:56 GMT" + ], + "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "b0c01345-e2b1-4d0a-81f7-dde01f3d26b7_M1SN1_M1SN1" + "53887c3b-8219-4250-8dc4-0f1c1397c2ce_M0SN1_M0SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ "11966" ], "x-ms-correlation-request-id": [ - "f478dcac-c94b-416e-99d2-c0183716edaa" + "35a0c835-676a-4272-bbae-5711714449cd" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210924T045129Z:f478dcac-c94b-416e-99d2-c0183716edaa" + "SOUTHINDIA:20211115T030756Z:35a0c835-676a-4272-bbae-5711714449cd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2811,11 +2814,8 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:51:28 GMT" - ], "Content-Length": [ - "588" + "551" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2824,53 +2824,56 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-5305/providers/Microsoft.EventHub/namespaces/sdk-NS-6718/disasterRecoveryConfigs/sdk-DisasterRecovery-860\",\r\n \"name\": \"sdk-DisasterRecovery-860\",\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-5305/providers/Microsoft.EventHub/namespaces/sdk-NS-7492\",\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-3186/providers/Microsoft.EventHub/namespaces/sdk-NS-9858/disasterRecoveryConfigs/sdk-DisasterRecovery-5399\",\r\n \"name\": \"sdk-DisasterRecovery-5399\",\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-3186/providers/Microsoft.EventHub/namespaces/sdk-NS-7878\",\r\n \"role\": \"Primary\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-5305/providers/Microsoft.EventHub/namespaces/sdk-NS-7492/disasterRecoveryConfigs/sdk-DisasterRecovery-860?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNTMwNS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTc0OTIvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLURpc2FzdGVyUmVjb3ZlcnktODYwP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3186/providers/Microsoft.EventHub/namespaces/sdk-NS-9858/disasterRecoveryConfigs/sdk-DisasterRecovery-5399?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMzE4Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTk4NTgvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLURpc2FzdGVyUmVjb3ZlcnktNTM5OT9hcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "02a59918-9925-40d5-8ff7-ceec491a4ad1" + "e0683858-5e83-4df1-ab46-5873b8611554" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 03:08:07 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "97bbd149-a49f-4431-a191-2d10c4d9cc99_M0CH3_M0CH3" + "7b73b57c-387a-446e-b97f-04d694ea5042_M0SN1_M0SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" - ], - "Server": [ - "Service-Bus-Resource-Provider/CH3", - "Microsoft-HTTPAPI/2.0" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11965" ], "x-ms-correlation-request-id": [ - "1c138529-d566-4ee1-8495-fb67b1c416e6" + "b8078d8f-c3c4-4923-be23-38a97296ef08" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210924T044722Z:1c138529-d566-4ee1-8495-fb67b1c416e6" + "SOUTHINDIA:20211115T030807Z:b8078d8f-c3c4-4923-be23-38a97296ef08" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2878,11 +2881,8 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:47:21 GMT" - ], "Content-Length": [ - "551" + "590" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2891,53 +2891,56 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-5305/providers/Microsoft.EventHub/namespaces/sdk-NS-7492/disasterRecoveryConfigs/sdk-DisasterRecovery-860\",\r\n \"name\": \"sdk-DisasterRecovery-860\",\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-5305/providers/Microsoft.EventHub/namespaces/sdk-NS-6718\",\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-3186/providers/Microsoft.EventHub/namespaces/sdk-NS-9858/disasterRecoveryConfigs/sdk-DisasterRecovery-5399\",\r\n \"name\": \"sdk-DisasterRecovery-5399\",\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-3186/providers/Microsoft.EventHub/namespaces/sdk-NS-7878\",\r\n \"role\": \"Primary\",\r\n \"type\": \"MetadataReplication\",\r\n \"pendingReplicationOperationsCount\": 0\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-5305/providers/Microsoft.EventHub/namespaces/sdk-NS-7492/disasterRecoveryConfigs/sdk-DisasterRecovery-860?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNTMwNS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTc0OTIvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLURpc2FzdGVyUmVjb3ZlcnktODYwP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3186/providers/Microsoft.EventHub/namespaces/sdk-NS-9858/disasterRecoveryConfigs/sdk-DisasterRecovery-5399?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMzE4Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTk4NTgvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLURpc2FzdGVyUmVjb3ZlcnktNTM5OT9hcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "97c10024-08b6-4139-8b9b-2f985ceee746" + "acbfd33b-efed-4c80-b4fc-41556f35568b" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 03:08:18 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "9c66cd79-66f2-4a24-a704-fed29cf68fd6_M1SN1_M1SN1" + "2934bdc5-9fdf-4362-b711-db1d6306e907_M0SN1_M0SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11965" + "11964" ], "x-ms-correlation-request-id": [ - "6a903944-e2c1-4964-b3c6-832b3d84a9bf" + "dd372b3c-19fb-48e2-b1d0-cf8c8d1295b3" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210924T045140Z:6a903944-e2c1-4964-b3c6-832b3d84a9bf" + "SOUTHINDIA:20211115T030818Z:dd372b3c-19fb-48e2-b1d0-cf8c8d1295b3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2945,11 +2948,8 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:51:39 GMT" - ], "Content-Length": [ - "551" + "590" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2958,53 +2958,56 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-5305/providers/Microsoft.EventHub/namespaces/sdk-NS-7492/disasterRecoveryConfigs/sdk-DisasterRecovery-860\",\r\n \"name\": \"sdk-DisasterRecovery-860\",\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-5305/providers/Microsoft.EventHub/namespaces/sdk-NS-6718\",\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-3186/providers/Microsoft.EventHub/namespaces/sdk-NS-9858/disasterRecoveryConfigs/sdk-DisasterRecovery-5399\",\r\n \"name\": \"sdk-DisasterRecovery-5399\",\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-3186/providers/Microsoft.EventHub/namespaces/sdk-NS-7878\",\r\n \"role\": \"Primary\",\r\n \"type\": \"MetadataReplication\",\r\n \"pendingReplicationOperationsCount\": 0\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-5305/providers/Microsoft.EventHub/namespaces/sdk-NS-7492/disasterRecoveryConfigs/sdk-DisasterRecovery-860?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNTMwNS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTc0OTIvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLURpc2FzdGVyUmVjb3ZlcnktODYwP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3186/providers/Microsoft.EventHub/namespaces/sdk-NS-7878/disasterRecoveryConfigs/sdk-DisasterRecovery-5399?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMzE4Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTc4NzgvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLURpc2FzdGVyUmVjb3ZlcnktNTM5OT9hcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "80dc5670-3d7c-4520-a9b4-833dbb97ccf9" + "ed38fc6d-3281-4389-8a05-15a9beb90366" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 03:03:45 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "5aeaa762-478e-4104-98f1-5c99b76fa65e_M6SN1_M6SN1" + "afb4b889-b0ae-4628-9708-2a92c5742dd1_M11CH3_M11CH3" ], "Server-SB": [ - "Service-Bus-Resource-Provider/SN1" - ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" + "Service-Bus-Resource-Provider/CH3" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11964" + "11993" ], "x-ms-correlation-request-id": [ - "14713ece-1d19-4f00-9851-c18428d25d18" + "a50e4e3f-6195-4efa-884e-23630758a842" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210924T045150Z:14713ece-1d19-4f00-9851-c18428d25d18" + "SOUTHINDIA:20211115T030345Z:a50e4e3f-6195-4efa-884e-23630758a842" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3012,11 +3015,8 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:51:49 GMT" - ], "Content-Length": [ - "551" + "553" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3025,53 +3025,56 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-5305/providers/Microsoft.EventHub/namespaces/sdk-NS-7492/disasterRecoveryConfigs/sdk-DisasterRecovery-860\",\r\n \"name\": \"sdk-DisasterRecovery-860\",\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-5305/providers/Microsoft.EventHub/namespaces/sdk-NS-6718\",\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-3186/providers/Microsoft.EventHub/namespaces/sdk-NS-7878/disasterRecoveryConfigs/sdk-DisasterRecovery-5399\",\r\n \"name\": \"sdk-DisasterRecovery-5399\",\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-3186/providers/Microsoft.EventHub/namespaces/sdk-NS-9858\",\r\n \"role\": \"Secondary\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-5305/providers/Microsoft.EventHub/namespaces/sdk-NS-7492/disasterRecoveryConfigs/sdk-DisasterRecovery-860?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNTMwNS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTc0OTIvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLURpc2FzdGVyUmVjb3ZlcnktODYwP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3186/providers/Microsoft.EventHub/namespaces/sdk-NS-7878/disasterRecoveryConfigs/sdk-DisasterRecovery-5399?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMzE4Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTc4NzgvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLURpc2FzdGVyUmVjb3ZlcnktNTM5OT9hcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "17b9a9b5-32dd-4813-8714-d171f141446b" + "2e1e23d5-7a36-4874-9bd0-8f70b8e17e07" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 03:08:29 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "5a322bf8-5bd2-46fc-aa69-16ef765b2ea2_M7SN1_M7SN1" + "d245592d-24e9-400c-878f-fc10aca91524_M0SN1_M0SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ "11963" ], "x-ms-correlation-request-id": [ - "5d0c6e13-db95-45aa-87c8-8bf01b945122" + "d0306043-9e58-4e8e-bb03-d74c256dc13d" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210924T045200Z:5d0c6e13-db95-45aa-87c8-8bf01b945122" + "SOUTHINDIA:20211115T030830Z:d0306043-9e58-4e8e-bb03-d74c256dc13d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3079,11 +3082,8 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:52:00 GMT" - ], "Content-Length": [ - "551" + "553" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3092,53 +3092,56 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-5305/providers/Microsoft.EventHub/namespaces/sdk-NS-7492/disasterRecoveryConfigs/sdk-DisasterRecovery-860\",\r\n \"name\": \"sdk-DisasterRecovery-860\",\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-5305/providers/Microsoft.EventHub/namespaces/sdk-NS-6718\",\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-3186/providers/Microsoft.EventHub/namespaces/sdk-NS-7878/disasterRecoveryConfigs/sdk-DisasterRecovery-5399\",\r\n \"name\": \"sdk-DisasterRecovery-5399\",\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-3186/providers/Microsoft.EventHub/namespaces/sdk-NS-9858\",\r\n \"role\": \"Secondary\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-5305/providers/Microsoft.EventHub/namespaces/sdk-NS-7492/disasterRecoveryConfigs/sdk-DisasterRecovery-860?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNTMwNS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTc0OTIvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLURpc2FzdGVyUmVjb3ZlcnktODYwP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3186/providers/Microsoft.EventHub/namespaces/sdk-NS-7878/disasterRecoveryConfigs/sdk-DisasterRecovery-5399?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMzE4Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTc4NzgvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLURpc2FzdGVyUmVjb3ZlcnktNTM5OT9hcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "046418e4-7312-49c7-a4ed-70b0c0fec75e" + "7b5b1b68-b6ee-4287-be81-6b219595ad50" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 03:08:39 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "b4a1d7d7-be32-4be3-8b35-ee653f6a7cbc_M3SN1_M3SN1" + "59a55068-8a19-4e3f-a1c5-dd0d301b2ec2_M0SN1_M0SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ "11962" ], "x-ms-correlation-request-id": [ - "dd02f2ca-6436-42d4-8789-9379bf5e74be" + "ab30aa46-851a-48d2-a2ac-92f3b0caea22" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210924T045211Z:dd02f2ca-6436-42d4-8789-9379bf5e74be" + "SOUTHINDIA:20211115T030840Z:ab30aa46-851a-48d2-a2ac-92f3b0caea22" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3146,11 +3149,8 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:52:10 GMT" - ], "Content-Length": [ - "551" + "553" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3159,53 +3159,56 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-5305/providers/Microsoft.EventHub/namespaces/sdk-NS-7492/disasterRecoveryConfigs/sdk-DisasterRecovery-860\",\r\n \"name\": \"sdk-DisasterRecovery-860\",\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-5305/providers/Microsoft.EventHub/namespaces/sdk-NS-6718\",\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-3186/providers/Microsoft.EventHub/namespaces/sdk-NS-7878/disasterRecoveryConfigs/sdk-DisasterRecovery-5399\",\r\n \"name\": \"sdk-DisasterRecovery-5399\",\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-3186/providers/Microsoft.EventHub/namespaces/sdk-NS-9858\",\r\n \"role\": \"Secondary\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-5305/providers/Microsoft.EventHub/namespaces/sdk-NS-7492/disasterRecoveryConfigs/sdk-DisasterRecovery-860?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNTMwNS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTc0OTIvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLURpc2FzdGVyUmVjb3ZlcnktODYwP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3186/providers/Microsoft.EventHub/namespaces/sdk-NS-7878/disasterRecoveryConfigs/sdk-DisasterRecovery-5399?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMzE4Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTc4NzgvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLURpc2FzdGVyUmVjb3ZlcnktNTM5OT9hcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "eaf4848c-73bc-459a-a43f-bbba86243e29" + "a3c011cf-ad4f-4479-8c76-68b870a88810" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 03:08:50 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "4080cf19-6806-4c88-bde8-5fbf8b71dc05_M0SN1_M0SN1" + "6b524923-077b-4b67-be47-71caf840cb03_M0SN1_M0SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ "11961" ], "x-ms-correlation-request-id": [ - "6f3b8ab6-2cd8-45fa-be0e-d9710bb9f72c" + "392e640a-0005-4971-92ab-35c017044330" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210924T045221Z:6f3b8ab6-2cd8-45fa-be0e-d9710bb9f72c" + "SOUTHINDIA:20211115T030850Z:392e640a-0005-4971-92ab-35c017044330" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3213,11 +3216,8 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:52:21 GMT" - ], "Content-Length": [ - "551" + "553" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3226,53 +3226,56 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-5305/providers/Microsoft.EventHub/namespaces/sdk-NS-7492/disasterRecoveryConfigs/sdk-DisasterRecovery-860\",\r\n \"name\": \"sdk-DisasterRecovery-860\",\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-5305/providers/Microsoft.EventHub/namespaces/sdk-NS-6718\",\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-3186/providers/Microsoft.EventHub/namespaces/sdk-NS-7878/disasterRecoveryConfigs/sdk-DisasterRecovery-5399\",\r\n \"name\": \"sdk-DisasterRecovery-5399\",\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-3186/providers/Microsoft.EventHub/namespaces/sdk-NS-9858\",\r\n \"role\": \"Secondary\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-5305/providers/Microsoft.EventHub/namespaces/sdk-NS-7492/disasterRecoveryConfigs/sdk-DisasterRecovery-860?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNTMwNS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTc0OTIvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLURpc2FzdGVyUmVjb3ZlcnktODYwP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3186/providers/Microsoft.EventHub/namespaces/sdk-NS-7878/disasterRecoveryConfigs/sdk-DisasterRecovery-5399?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMzE4Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTc4NzgvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLURpc2FzdGVyUmVjb3ZlcnktNTM5OT9hcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9aae8e03-4514-4d23-b760-8bc7372a8aeb" + "cf9d3c0f-6031-4f3d-adc9-fbb552233534" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 03:09:00 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "a8dd3b46-61d4-4603-aa85-76679fc39cf7_M6SN1_M6SN1" + "21c3b319-e93a-4522-94c5-36e6ccda1502_M0SN1_M0SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ "11960" ], "x-ms-correlation-request-id": [ - "30901c02-456a-4f1d-9387-15fb64785a1d" + "94c2aa9f-4ba1-4320-aaa1-b51bf605c8e7" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210924T045231Z:30901c02-456a-4f1d-9387-15fb64785a1d" + "SOUTHINDIA:20211115T030901Z:94c2aa9f-4ba1-4320-aaa1-b51bf605c8e7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3280,11 +3283,8 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:52:31 GMT" - ], "Content-Length": [ - "551" + "553" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3293,53 +3293,56 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-5305/providers/Microsoft.EventHub/namespaces/sdk-NS-7492/disasterRecoveryConfigs/sdk-DisasterRecovery-860\",\r\n \"name\": \"sdk-DisasterRecovery-860\",\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-5305/providers/Microsoft.EventHub/namespaces/sdk-NS-6718\",\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-3186/providers/Microsoft.EventHub/namespaces/sdk-NS-7878/disasterRecoveryConfigs/sdk-DisasterRecovery-5399\",\r\n \"name\": \"sdk-DisasterRecovery-5399\",\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-3186/providers/Microsoft.EventHub/namespaces/sdk-NS-9858\",\r\n \"role\": \"Secondary\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-5305/providers/Microsoft.EventHub/namespaces/sdk-NS-7492/disasterRecoveryConfigs/sdk-DisasterRecovery-860?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNTMwNS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTc0OTIvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLURpc2FzdGVyUmVjb3ZlcnktODYwP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3186/providers/Microsoft.EventHub/namespaces/sdk-NS-7878/disasterRecoveryConfigs/sdk-DisasterRecovery-5399?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMzE4Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTc4NzgvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLURpc2FzdGVyUmVjb3ZlcnktNTM5OT9hcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9641a8d8-d0c1-46cc-a07f-2d3e39e3a229" + "11b249ab-3c03-4af1-a2cf-2a5ac5752020" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 03:09:10 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "025120ba-947e-45b8-8f3a-c65843b9888c_M6SN1_M6SN1" + "e6817d36-76b2-4080-a029-08eaded7d601_M0SN1_M0SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ "11959" ], "x-ms-correlation-request-id": [ - "3e44c6e0-06e7-4f55-b451-c21dfe8a1fbb" + "a1d5bc51-d00f-4b5b-ac4b-1f29c360753a" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210924T045242Z:3e44c6e0-06e7-4f55-b451-c21dfe8a1fbb" + "SOUTHINDIA:20211115T030911Z:a1d5bc51-d00f-4b5b-ac4b-1f29c360753a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3347,11 +3350,8 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:52:41 GMT" - ], "Content-Length": [ - "551" + "553" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3360,53 +3360,123 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-5305/providers/Microsoft.EventHub/namespaces/sdk-NS-7492/disasterRecoveryConfigs/sdk-DisasterRecovery-860\",\r\n \"name\": \"sdk-DisasterRecovery-860\",\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-5305/providers/Microsoft.EventHub/namespaces/sdk-NS-6718\",\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-3186/providers/Microsoft.EventHub/namespaces/sdk-NS-7878/disasterRecoveryConfigs/sdk-DisasterRecovery-5399\",\r\n \"name\": \"sdk-DisasterRecovery-5399\",\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-3186/providers/Microsoft.EventHub/namespaces/sdk-NS-9858\",\r\n \"role\": \"Secondary\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-5305/providers/Microsoft.EventHub/namespaces/sdk-NS-7492/disasterRecoveryConfigs/sdk-DisasterRecovery-860?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNTMwNS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTc0OTIvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLURpc2FzdGVyUmVjb3ZlcnktODYwP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3186/providers/Microsoft.EventHub/namespaces/sdk-NS-7878/disasterRecoveryConfigs/sdk-DisasterRecovery-5399?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMzE4Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTc4NzgvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLURpc2FzdGVyUmVjb3ZlcnktNTM5OT9hcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fa2c7c05-49cd-475d-8c3c-a69f2cf2cf6e" + "5a0a9ecc-d38e-4472-b7d2-9fe6ae988069" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 03:09:22 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "bcdc23ea-8ff2-4bd2-a7df-64b1d57aa092_M3SN1_M3SN1" + "37b3eccf-a9a7-42ee-bd05-789de3802ea1_M0SN1_M0SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11958" + ], + "x-ms-correlation-request-id": [ + "f2062a03-4cff-459d-929b-eb1a7ea664c9" + ], + "x-ms-routing-request-id": [ + "SOUTHINDIA:20211115T030922Z:f2062a03-4cff-459d-929b-eb1a7ea664c9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "553" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3186/providers/Microsoft.EventHub/namespaces/sdk-NS-7878/disasterRecoveryConfigs/sdk-DisasterRecovery-5399\",\r\n \"name\": \"sdk-DisasterRecovery-5399\",\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-3186/providers/Microsoft.EventHub/namespaces/sdk-NS-9858\",\r\n \"role\": \"Secondary\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3186/providers/Microsoft.EventHub/namespaces/sdk-NS-7878/disasterRecoveryConfigs/sdk-DisasterRecovery-5399?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMzE4Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTc4NzgvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLURpc2FzdGVyUmVjb3ZlcnktNTM5OT9hcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "eec99065-9137-4931-824c-e9a0a02a3560" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 15 Nov 2021 03:09:32 GMT" + ], + "Pragma": [ + "no-cache" + ], "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], + "x-ms-request-id": [ + "11d69863-2072-4390-a477-f98bce31290e_M0SN1_M0SN1" + ], + "Server-SB": [ + "Service-Bus-Resource-Provider/SN1" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11958" + "11957" ], "x-ms-correlation-request-id": [ - "cde181cd-259b-47fa-b439-765ef2179aeb" + "4cd04434-2c4b-4bae-8f2a-152546b5a168" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210924T045252Z:cde181cd-259b-47fa-b439-765ef2179aeb" + "SOUTHINDIA:20211115T030932Z:4cd04434-2c4b-4bae-8f2a-152546b5a168" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3414,11 +3484,8 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:52:51 GMT" - ], "Content-Length": [ - "424" + "553" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3427,53 +3494,123 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-5305/providers/Microsoft.EventHub/namespaces/sdk-NS-7492/disasterRecoveryConfigs/sdk-DisasterRecovery-860\",\r\n \"name\": \"sdk-DisasterRecovery-860\",\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-3186/providers/Microsoft.EventHub/namespaces/sdk-NS-7878/disasterRecoveryConfigs/sdk-DisasterRecovery-5399\",\r\n \"name\": \"sdk-DisasterRecovery-5399\",\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-3186/providers/Microsoft.EventHub/namespaces/sdk-NS-9858\",\r\n \"role\": \"Secondary\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-5305/providers/Microsoft.EventHub/namespaces/sdk-NS-6718/disasterRecoveryConfigs/sdk-DisasterRecovery-860/authorizationRules/sdk-Authrules-1945?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNTMwNS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTY3MTgvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLURpc2FzdGVyUmVjb3ZlcnktODYwL2F1dGhvcml6YXRpb25SdWxlcy9zZGstQXV0aHJ1bGVzLTE5NDU/YXBpLXZlcnNpb249MjAyMS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3186/providers/Microsoft.EventHub/namespaces/sdk-NS-7878/disasterRecoveryConfigs/sdk-DisasterRecovery-5399?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMzE4Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTc4NzgvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLURpc2FzdGVyUmVjb3ZlcnktNTM5OT9hcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "407ff9c4-b7dd-43c4-93cd-f74378b825e6" + "78deb3ce-c8c3-4cc7-9b5d-1233fa2da139" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 03:09:42 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "7f36d14b-0b04-4e00-abd6-5ad33d30feaf_M0CH3_M0CH3" + "5f650b08-03e3-4a16-a8ba-3ffb3105fd7e_M0SN1_M0SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11956" + ], + "x-ms-correlation-request-id": [ + "1b73ed58-9eb0-4a54-be23-81a67bc07ef1" + ], + "x-ms-routing-request-id": [ + "SOUTHINDIA:20211115T030942Z:1b73ed58-9eb0-4a54-be23-81a67bc07ef1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "426" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3186/providers/Microsoft.EventHub/namespaces/sdk-NS-7878/disasterRecoveryConfigs/sdk-DisasterRecovery-5399\",\r\n \"name\": \"sdk-DisasterRecovery-5399\",\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/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3186/providers/Microsoft.EventHub/namespaces/sdk-NS-9858/disasterRecoveryConfigs/sdk-DisasterRecovery-5399/authorizationRules/sdk-Authrules-9994?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMzE4Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTk4NTgvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLURpc2FzdGVyUmVjb3ZlcnktNTM5OS9hdXRob3JpemF0aW9uUnVsZXMvc2RrLUF1dGhydWxlcy05OTk0P2FwaS12ZXJzaW9uPTIwMjEtMTEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "db12a7ae-ce3c-4969-91a9-64a25926e7a3" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 15 Nov 2021 03:03:46 GMT" + ], + "Pragma": [ + "no-cache" ], "Server": [ "Service-Bus-Resource-Provider/CH3", "Microsoft-HTTPAPI/2.0" ], + "x-ms-request-id": [ + "9b26fc8e-2301-465e-94ac-a97fb98d17a9_M11CH3_M11CH3" + ], + "Server-SB": [ + "Service-Bus-Resource-Provider/CH3" + ], "x-ms-ratelimit-remaining-subscription-reads": [ "11992" ], "x-ms-correlation-request-id": [ - "8e294196-72de-4a95-b3c6-2ba822cb0023" + "54151e61-627b-427d-ada0-992a9b576434" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210924T044723Z:8e294196-72de-4a95-b3c6-2ba822cb0023" + "SOUTHINDIA:20211115T030346Z:54151e61-627b-427d-ada0-992a9b576434" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3481,11 +3618,8 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:47:22 GMT" - ], "Content-Length": [ - "394" + "395" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3494,53 +3628,56 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-5305/providers/Microsoft.EventHub/namespaces/sdk-NS-6718/disasterRecoveryConfigs/sdk-DisasterRecovery-860/authorizationRules/sdk-Authrules-1945\",\r\n \"name\": \"sdk-Authrules-1945\",\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-3186/providers/Microsoft.EventHub/namespaces/sdk-NS-9858/disasterRecoveryConfigs/sdk-DisasterRecovery-5399/authorizationRules/sdk-Authrules-9994\",\r\n \"name\": \"sdk-Authrules-9994\",\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/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-5305/providers/Microsoft.EventHub/namespaces/sdk-NS-6718/disasterRecoveryConfigs/sdk-DisasterRecovery-860/authorizationRules/sdk-Authrules-1945/listKeys?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNTMwNS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTY3MTgvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLURpc2FzdGVyUmVjb3ZlcnktODYwL2F1dGhvcml6YXRpb25SdWxlcy9zZGstQXV0aHJ1bGVzLTE5NDUvbGlzdEtleXM/YXBpLXZlcnNpb249MjAyMS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3186/providers/Microsoft.EventHub/namespaces/sdk-NS-9858/disasterRecoveryConfigs/sdk-DisasterRecovery-5399/authorizationRules/sdk-Authrules-9994/listKeys?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMzE4Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTk4NTgvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLURpc2FzdGVyUmVjb3ZlcnktNTM5OS9hdXRob3JpemF0aW9uUnVsZXMvc2RrLUF1dGhydWxlcy05OTk0L2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMjEtMTEtMDE=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "eb6009b3-2776-448b-b597-c053bfad7d19" + "e39ad6d2-257d-4c56-815a-9c101ab35844" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 03:03:46 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "1c8b07a2-c124-48fe-a211-08ac23947392_M0CH3_M0CH3" + "200d4eb7-4e60-4b10-a71e-1d564ce720db_M11CH3_M11CH3" ], "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], - "Server": [ - "Service-Bus-Resource-Provider/CH3", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-writes": [ "1196" ], "x-ms-correlation-request-id": [ - "cc718a55-7d68-4c91-bccb-7833cbf8cbb4" + "9befbb08-6f79-4ad4-8178-60026f655208" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210924T044723Z:cc718a55-7d68-4c91-bccb-7833cbf8cbb4" + "SOUTHINDIA:20211115T030346Z:9befbb08-6f79-4ad4-8178-60026f655208" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3548,11 +3685,8 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:47:23 GMT" - ], "Content-Length": [ - "548" + "550" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3561,53 +3695,56 @@ "-1" ] }, - "ResponseBody": "{\r\n \"aliasPrimaryConnectionString\": \"Endpoint=sb://sdk-disasterrecovery-860.servicebus.windows.net/;SharedAccessKeyName=sdk-Authrules-1945;SharedAccessKey=Q9MAjzHbRQsG1XonChykYeJUZ8mov2tn0If/IKl9kKc=\",\r\n \"aliasSecondaryConnectionString\": \"Endpoint=sb://sdk-disasterrecovery-860.servicebus.windows.net/;SharedAccessKeyName=sdk-Authrules-1945;SharedAccessKey=gGvJu0PnUYQ9h8KcHF92MkuO3Sq4rFSdI2JxZPRNGzM=\",\r\n \"primaryKey\": \"Q9MAjzHbRQsG1XonChykYeJUZ8mov2tn0If/IKl9kKc=\",\r\n \"secondaryKey\": \"gGvJu0PnUYQ9h8KcHF92MkuO3Sq4rFSdI2JxZPRNGzM=\",\r\n \"keyName\": \"sdk-Authrules-1945\"\r\n}", + "ResponseBody": "{\r\n \"aliasPrimaryConnectionString\": \"Endpoint=sb://sdk-disasterrecovery-5399.servicebus.windows.net/;SharedAccessKeyName=sdk-Authrules-9994;SharedAccessKey=S6cxBoTnfaaOm8SoSMZ0COn11InjOOnJsQMW8iidogI=\",\r\n \"aliasSecondaryConnectionString\": \"Endpoint=sb://sdk-disasterrecovery-5399.servicebus.windows.net/;SharedAccessKeyName=sdk-Authrules-9994;SharedAccessKey=5BIMUhy8sz0fOAZPMq4BWh3YaF1tPrM2cwQSKX3quZo=\",\r\n \"primaryKey\": \"S6cxBoTnfaaOm8SoSMZ0COn11InjOOnJsQMW8iidogI=\",\r\n \"secondaryKey\": \"5BIMUhy8sz0fOAZPMq4BWh3YaF1tPrM2cwQSKX3quZo=\",\r\n \"keyName\": \"sdk-Authrules-9994\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-5305/providers/Microsoft.EventHub/namespaces/sdk-NS-6718/disasterRecoveryConfigs/sdk-DisasterRecovery-860/breakPairing?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNTMwNS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTY3MTgvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLURpc2FzdGVyUmVjb3ZlcnktODYwL2JyZWFrUGFpcmluZz9hcGktdmVyc2lvbj0yMDIxLTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3186/providers/Microsoft.EventHub/namespaces/sdk-NS-9858/disasterRecoveryConfigs/sdk-DisasterRecovery-5399/breakPairing?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMzE4Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTk4NTgvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLURpc2FzdGVyUmVjb3ZlcnktNTM5OS9icmVha1BhaXJpbmc/YXBpLXZlcnNpb249MjAyMS0xMS0wMQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e6764a72-a532-4e7a-8a2a-0aa28f7585fd" + "5bbc5fbd-70df-4a22-bba5-c77424903504" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 03:04:51 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "f1bafbd7-869c-4226-9e28-5021e3972666_M0CH3_M0CH3" + "9c92599c-efea-438a-8421-732ae3c61654_M8CH3_M8CH3" ], "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], - "Server": [ - "Service-Bus-Resource-Provider/CH3", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-writes": [ "1195" ], "x-ms-correlation-request-id": [ - "c3052fd6-a16c-41c4-a4b2-510ed8a3ed89" + "0b46dba5-412f-4e6a-b5a5-fa298ef8e2b8" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210924T044826Z:c3052fd6-a16c-41c4-a4b2-510ed8a3ed89" + "SOUTHINDIA:20211115T030452Z:0b46dba5-412f-4e6a-b5a5-fa298ef8e2b8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3615,63 +3752,63 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:48:26 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-5305/providers/Microsoft.EventHub/namespaces/sdk-NS-7492/disasterRecoveryConfigs/sdk-DisasterRecovery-860/failover?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNTMwNS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTc0OTIvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLURpc2FzdGVyUmVjb3ZlcnktODYwL2ZhaWxvdmVyP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3186/providers/Microsoft.EventHub/namespaces/sdk-NS-7878/disasterRecoveryConfigs/sdk-DisasterRecovery-5399/failover?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMzE4Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTc4NzgvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLURpc2FzdGVyUmVjb3ZlcnktNTM5OS9mYWlsb3Zlcj9hcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "11b852a0-25af-43e8-b5f4-d42f6767e49f" + "6f44b7d2-dd26-4151-bd87-b93a72ee322f" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 03:08:19 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "03d4ed5f-b33e-47bf-80e0-a1e44e78c38d_M1SN1_M1SN1" + "de4e52b1-32cd-477f-959b-a15054174c8f_M0SN1_M0SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-writes": [ "1194" ], "x-ms-correlation-request-id": [ - "04cecc1d-290e-4c56-b334-ba2e68ad4f91" + "7dfb0b4a-c255-4cab-b71d-bd7922c63ed1" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210924T045129Z:04cecc1d-290e-4c56-b334-ba2e68ad4f91" + "SOUTHINDIA:20211115T030819Z:7dfb0b4a-c255-4cab-b71d-bd7922c63ed1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3679,63 +3816,63 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:51:28 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-5305/providers/Microsoft.EventHub/namespaces/sdk-NS-7492/disasterRecoveryConfigs?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNTMwNS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTc0OTIvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3186/providers/Microsoft.EventHub/namespaces/sdk-NS-7878/disasterRecoveryConfigs?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMzE4Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTc4NzgvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3M/YXBpLXZlcnNpb249MjAyMS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "12bc8ceb-a675-4c19-b671-35404374f92c" + "17a722c9-c99b-451a-8291-fbe515764a2c" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 03:09:42 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "17f62cf9-d35f-4ab8-a3d2-6e370c10dd66_M3SN1_M3SN1" + "7fd2fc56-c3da-4355-b60d-d66d48f07ff8_M0SN1_M0SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11957" + "11955" ], "x-ms-correlation-request-id": [ - "27b79250-5d2b-4d85-a3f5-0b5f8a0b7021" + "ffa6f313-13ba-4ce5-8e12-e811a7d89a87" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210924T045252Z:27b79250-5d2b-4d85-a3f5-0b5f8a0b7021" + "SOUTHINDIA:20211115T030943Z:ffa6f313-13ba-4ce5-8e12-e811a7d89a87" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3743,11 +3880,8 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:52:52 GMT" - ], "Content-Length": [ - "436" + "438" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3756,53 +3890,56 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-5305/providers/Microsoft.EventHub/namespaces/sdk-NS-7492/disasterRecoveryConfigs/sdk-DisasterRecovery-860\",\r\n \"name\": \"sdk-DisasterRecovery-860\",\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3186/providers/Microsoft.EventHub/namespaces/sdk-NS-7878/disasterRecoveryConfigs/sdk-DisasterRecovery-5399\",\r\n \"name\": \"sdk-DisasterRecovery-5399\",\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/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-5305/providers/Microsoft.EventHub/namespaces/sdk-NS-7492/disasterRecoveryConfigs/sdk-DisasterRecovery-860?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNTMwNS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTc0OTIvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLURpc2FzdGVyUmVjb3ZlcnktODYwP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3186/providers/Microsoft.EventHub/namespaces/sdk-NS-7878/disasterRecoveryConfigs/sdk-DisasterRecovery-5399?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMzE4Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTc4NzgvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLURpc2FzdGVyUmVjb3ZlcnktNTM5OT9hcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "812d8c0d-39d3-4d59-8802-9d0bffc016be" + "3c9eb412-69b7-4c17-bded-fb32d0c168f2" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 03:09:43 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "9b329e5b-881e-4461-b695-e61056f9dcf0_M3SN1_M3SN1" + "fec290d1-9d07-4d15-91ef-fc3e9c4f0b74_M0SN1_M0SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" + "14997" ], "x-ms-correlation-request-id": [ - "536e7a12-13bf-4c60-9574-09f755b5ebac" + "1b566e76-5034-44d9-8a08-ab2d4a5702b3" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210924T045253Z:536e7a12-13bf-4c60-9574-09f755b5ebac" + "SOUTHINDIA:20211115T030943Z:1b566e76-5034-44d9-8a08-ab2d4a5702b3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3810,66 +3947,66 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:52:52 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-5305/providers/Microsoft.EventHub/namespaces/sdk-NS-6718?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNTMwNS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTY3MTg/YXBpLXZlcnNpb249MjAyMS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3186/providers/Microsoft.EventHub/namespaces/sdk-NS-9858?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMzE4Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTk4NTg/YXBpLXZlcnNpb249MjAyMS0xMS0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a2032044-8453-475e-9703-a0f7de14e43a" + "35b05817-ecb2-4702-9342-04c1e1a5b2e8" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 03:09:45 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-5305/providers/Microsoft.EventHub/namespaces/sdk-NS-6718/operationresults/sdk-NS-6718?api-version=2021-06-01-preview" + "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3186/providers/Microsoft.EventHub/namespaces/sdk-NS-9858/operationresults/sdk-NS-9858?api-version=2021-11-01" + ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "977e67ce-ab4a-4a5a-afb4-fb26af9bea46_M3SN1_M3SN1" + "5f253191-86ef-4477-b2df-ccbb81006d5c_M2CH3_M2CH3" ], "Server-SB": [ - "Service-Bus-Resource-Provider/SN1" - ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" + "Service-Bus-Resource-Provider/CH3" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14998" + "14999" ], "x-ms-correlation-request-id": [ - "22137316-1ce6-40df-a601-bebd6247879d" + "5b953ceb-1d91-4d47-b319-2a90de68350b" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210924T045254Z:22137316-1ce6-40df-a601-bebd6247879d" + "SOUTHINDIA:20211115T030945Z:5b953ceb-1d91-4d47-b319-2a90de68350b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3877,62 +4014,66 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:52:53 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/Default-EventHub-5305?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlZ3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNTMwNT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3186/providers/Microsoft.EventHub/namespaces/sdk-NS-7878?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMzE4Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTc4Nzg/YXBpLXZlcnNpb249MjAyMS0xMS0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ca5d6f79-a7d3-47a5-84d4-634c309a3bff" + "c53f56d4-3d3e-45ba-b5c9-1cea1ebb0d19" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 03:09:45 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1ERUZBVUxUOjJERVZFTlRIVUI6MkQ1MzA1LVNPVVRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJzb3V0aGNlbnRyYWx1cyJ9?api-version=2015-11-01" - ], - "Retry-After": [ - "15" + "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3186/providers/Microsoft.EventHub/namespaces/sdk-NS-7878/operationresults/sdk-NS-7878?api-version=2021-11-01" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "4d0812fd-a1d2-4b4e-bae5-686f20ff1b33" + "62fd738b-06fb-4e55-947d-4657cf2d305c_M0SN1_M0SN1" + ], + "Server-SB": [ + "Service-Bus-Resource-Provider/SN1" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14996" ], "x-ms-correlation-request-id": [ - "4d0812fd-a1d2-4b4e-bae5-686f20ff1b33" + "8a9e92e7-c52d-41a7-8f7f-a750edba4e4a" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T045254Z:4d0812fd-a1d2-4b4e-bae5-686f20ff1b33" + "SOUTHINDIA:20211115T030946Z:8a9e92e7-c52d-41a7-8f7f-a750edba4e4a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3940,14 +4081,11 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:52:53 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", @@ -3956,11 +4094,11 @@ ], "Names": { "DisasterRecoveryCreateGetUpdateDelete": [ - "Default-EventHub-5305", - "sdk-NS-6718", - "sdk-NS-7492", - "sdk-Authrules-1945", - "sdk-DisasterRecovery-860" + "Default-EventHub-3186", + "sdk-NS-9858", + "sdk-NS-7878", + "sdk-Authrules-9994", + "sdk-DisasterRecovery-5399" ] }, "Variables": { 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 4f775be4fcf3..ef10aa51d563 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 @@ -7,15 +7,15 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "20194547-9760-4deb-8480-c86fb36cb556" + "cfffec34-c1f5-45c8-accc-788448b0d5ca" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", + "OSVersion/Microsoft.Windows.10.0.22000.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -23,6 +23,9 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:58:15 GMT" + ], "Pragma": [ "no-cache" ], @@ -30,13 +33,13 @@ "11999" ], "x-ms-request-id": [ - "6c038ed4-2efa-4822-a7d7-45a20df8d78a" + "d35f8111-2e4d-409d-893d-ff82525f4526" ], "x-ms-correlation-request-id": [ - "6c038ed4-2efa-4822-a7d7-45a20df8d78a" + "d35f8111-2e4d-409d-893d-ff82525f4526" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210924T044202Z:6c038ed4-2efa-4822-a7d7-45a20df8d78a" + "SOUTHINDIA:20211115T025816Z:d35f8111-2e4d-409d-893d-ff82525f4526" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -44,38 +47,35 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:42:01 GMT" + "Content-Length": [ + "4451" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" - ], - "Content-Length": [ - "4274" ] }, - "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 \"Jio India West\",\r\n \"West US 3\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"UAE Central\",\r\n \"Norway West\",\r\n \"Sweden Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01-preview\",\r\n \"2021-01-01-preview\",\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 \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"UAE Central\",\r\n \"Norway West\",\r\n \"Sweden 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 \"2021-06-01-preview\",\r\n \"2021-01-01-preview\",\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 },\r\n {\r\n \"resourceType\": \"namespaces/networkrulesets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-06-01-preview\",\r\n \"2021-01-01-preview\",\r\n \"2018-01-01-preview\",\r\n \"2017-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/privateEndpointConnections\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-06-01-preview\",\r\n \"2021-01-01-preview\",\r\n \"2018-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/eventhubs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-06-01-preview\",\r\n \"2021-01-01-preview\",\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 },\r\n {\r\n \"resourceType\": \"namespaces/eventhubs/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-06-01-preview\",\r\n \"2021-01-01-preview\",\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 },\r\n {\r\n \"resourceType\": \"namespaces/eventhubs/consumergroups\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-06-01-preview\",\r\n \"2021-01-01-preview\",\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 },\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 \"2021-06-01-preview\",\r\n \"2021-01-01-preview\",\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 },\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 \"2021-06-01-preview\",\r\n \"2021-01-01-preview\",\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 },\r\n {\r\n \"resourceType\": \"namespaces/disasterrecoveryconfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-06-01-preview\",\r\n \"2021-01-01-preview\",\r\n \"2018-01-01-preview\",\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 \"2021-06-01-preview\",\r\n \"2021-01-01-preview\",\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 },\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}", + "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 \"Jio India West\",\r\n \"West US 3\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"UAE Central\",\r\n \"Norway West\",\r\n \"Sweden Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-11-01\",\r\n \"2021-06-01-preview\",\r\n \"2021-01-01-preview\",\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 \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"UAE Central\",\r\n \"Norway West\",\r\n \"Sweden Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-11-01\",\r\n \"2021-06-01-preview\",\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 \"2021-11-01\",\r\n \"2021-06-01-preview\",\r\n \"2021-01-01-preview\",\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 },\r\n {\r\n \"resourceType\": \"namespaces/networkrulesets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-11-01\",\r\n \"2021-06-01-preview\",\r\n \"2021-01-01-preview\",\r\n \"2018-01-01-preview\",\r\n \"2017-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/privateEndpointConnections\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-11-01\",\r\n \"2021-06-01-preview\",\r\n \"2021-01-01-preview\",\r\n \"2018-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/eventhubs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-11-01\",\r\n \"2021-06-01-preview\",\r\n \"2021-01-01-preview\",\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 },\r\n {\r\n \"resourceType\": \"namespaces/eventhubs/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-11-01\",\r\n \"2021-06-01-preview\",\r\n \"2021-01-01-preview\",\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 },\r\n {\r\n \"resourceType\": \"namespaces/eventhubs/consumergroups\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-11-01\",\r\n \"2021-06-01-preview\",\r\n \"2021-01-01-preview\",\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 },\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 \"2021-11-01\",\r\n \"2021-06-01-preview\",\r\n \"2021-01-01-preview\",\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 },\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 \"2021-11-01\",\r\n \"2021-06-01-preview\",\r\n \"2021-01-01-preview\",\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 },\r\n {\r\n \"resourceType\": \"namespaces/disasterrecoveryconfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-11-01\",\r\n \"2021-06-01-preview\",\r\n \"2021-01-01-preview\",\r\n \"2018-01-01-preview\",\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 \"2021-11-01\",\r\n \"2021-06-01-preview\",\r\n \"2021-01-01-preview\",\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 },\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/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/Default-EventHub-6427?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlZ3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNjQyNz9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/Default-EventHub-5124?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlZ3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNTEyND9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"Australia East\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "4456aae5-fedf-4184-9297-e72e017f14a2" + "b0d88eb9-1230-4fa9-9af0-b433d10541d8" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", + "OSVersion/Microsoft.Windows.10.0.22000.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ], "Content-Type": [ @@ -89,20 +89,23 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:58:18 GMT" + ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1198" ], "x-ms-request-id": [ - "4892701e-aa79-4e6b-9aa6-01ace9a68886" + "b053760c-6e0d-487e-8148-643af37c26b2" ], "x-ms-correlation-request-id": [ - "4892701e-aa79-4e6b-9aa6-01ace9a68886" + "b053760c-6e0d-487e-8148-643af37c26b2" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210924T044205Z:4892701e-aa79-4e6b-9aa6-01ace9a68886" + "SOUTHINDIA:20211115T025818Z:b053760c-6e0d-487e-8148-643af37c26b2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -110,9 +113,6 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:42:04 GMT" - ], "Content-Length": [ "202" ], @@ -123,26 +123,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-6427\",\r\n \"name\": \"Default-EventHub-6427\",\r\n \"location\": \"australiaeast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-5124\",\r\n \"name\": \"Default-EventHub-5124\",\r\n \"location\": \"australiaeast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-6427/providers/Microsoft.EventHub/namespaces/sdk-NS-7270?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNjQyNy9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTcyNzA/YXBpLXZlcnNpb249MjAyMS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-5124/providers/Microsoft.EventHub/namespaces/sdk-NS-3517?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNTEyNC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTM1MTc/YXBpLXZlcnNpb249MjAyMS0xMS0wMQ==", "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": [ - "95f251b8-d69c-43c7-96aa-9438058298f4" + "226160e2-af53-428b-8979-9f2c2b10b5d9" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -155,27 +155,30 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:58:23 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "952c0a5c-29ee-43a3-b94d-e1d3081107b3_M0CH3_M0CH3" + "845805ca-c1d2-4d76-8a9a-67a0aed2a8c6_M8CH3_M8CH3" ], "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], - "Server": [ - "Service-Bus-Resource-Provider/CH3", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "49" ], "x-ms-correlation-request-id": [ - "888858b8-7cc2-48ea-be3f-9d3a30ada46f" + "e7e25d34-cc04-4e0d-8b51-8480b57779b7" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210924T044213Z:888858b8-7cc2-48ea-be3f-9d3a30ada46f" + "SOUTHINDIA:20211115T025824Z:e7e25d34-cc04-4e0d-8b51-8480b57779b7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -183,9 +186,6 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:42:12 GMT" - ], "Content-Length": [ "736" ], @@ -196,47 +196,50 @@ "-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-6427/providers/Microsoft.EventHub/namespaces/sdk-NS-7270\",\r\n \"name\": \"sdk-NS-7270\",\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 \"disableLocalAuth\": false,\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-7270\",\r\n \"createdAt\": \"2021-09-24T04:42:11.387Z\",\r\n \"updatedAt\": \"2021-09-24T04:42:11.387Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-7270.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-5124/providers/Microsoft.EventHub/namespaces/sdk-NS-3517\",\r\n \"name\": \"sdk-NS-3517\",\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 \"disableLocalAuth\": false,\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-3517\",\r\n \"createdAt\": \"2021-11-15T02:58:23.187Z\",\r\n \"updatedAt\": \"2021-11-15T02:58:23.187Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-3517.servicebus.windows.net:443/\",\r\n \"status\": \"Activating\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-6427/providers/Microsoft.EventHub/namespaces/sdk-NS-7270?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNjQyNy9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTcyNzA/YXBpLXZlcnNpb249MjAyMS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-5124/providers/Microsoft.EventHub/namespaces/sdk-NS-3517?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNTEyNC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTM1MTc/YXBpLXZlcnNpb249MjAyMS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:58:54 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "245a2142-a3db-40cb-8ea3-0f54fe507242_M0CH3_M0CH3" + "06d18478-3bcc-461b-bdea-0df7f98b1a54_M8CH3_M8CH3" ], "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], - "Server": [ - "Service-Bus-Resource-Provider/CH3", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ "11999" ], "x-ms-correlation-request-id": [ - "043d1dee-58de-44d3-9929-a7c8b281f7ca" + "320dc30c-6ba5-43fa-b1d0-c12682504d2c" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210924T044243Z:043d1dee-58de-44d3-9929-a7c8b281f7ca" + "SOUTHINDIA:20211115T025855Z:320dc30c-6ba5-43fa-b1d0-c12682504d2c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -244,9 +247,6 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:42:42 GMT" - ], "Content-Length": [ "736" ], @@ -257,47 +257,50 @@ "-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-6427/providers/Microsoft.EventHub/namespaces/sdk-NS-7270\",\r\n \"name\": \"sdk-NS-7270\",\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 \"disableLocalAuth\": false,\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-7270\",\r\n \"createdAt\": \"2021-09-24T04:42:11.387Z\",\r\n \"updatedAt\": \"2021-09-24T04:42:11.387Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-7270.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-5124/providers/Microsoft.EventHub/namespaces/sdk-NS-3517\",\r\n \"name\": \"sdk-NS-3517\",\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 \"disableLocalAuth\": false,\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-3517\",\r\n \"createdAt\": \"2021-11-15T02:58:23.187Z\",\r\n \"updatedAt\": \"2021-11-15T02:58:23.187Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-3517.servicebus.windows.net:443/\",\r\n \"status\": \"Activating\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-6427/providers/Microsoft.EventHub/namespaces/sdk-NS-7270?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNjQyNy9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTcyNzA/YXBpLXZlcnNpb249MjAyMS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-5124/providers/Microsoft.EventHub/namespaces/sdk-NS-3517?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNTEyNC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTM1MTc/YXBpLXZlcnNpb249MjAyMS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:59:25 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "cd259da7-5c37-4c16-9a21-3869a2ab5645_M1SN1_M1SN1" + "aaa9cf90-ef13-4f2c-9097-e449f37c7cf4_M2CH3_M2CH3" ], "Server-SB": [ - "Service-Bus-Resource-Provider/SN1" - ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" + "Service-Bus-Resource-Provider/CH3" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11998" ], "x-ms-correlation-request-id": [ - "7a2e12fc-24a1-4787-b766-cf857e9f3b97" + "dc1abd99-0e20-48d5-bd4b-0d0a0a48b69a" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210924T044313Z:7a2e12fc-24a1-4787-b766-cf857e9f3b97" + "SOUTHINDIA:20211115T025926Z:dc1abd99-0e20-48d5-bd4b-0d0a0a48b69a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -305,11 +308,8 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:43:13 GMT" - ], "Content-Length": [ - "734" + "733" ], "Content-Type": [ "application/json; charset=utf-8" @@ -318,26 +318,26 @@ "-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-6427/providers/Microsoft.EventHub/namespaces/sdk-NS-7270\",\r\n \"name\": \"sdk-NS-7270\",\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 \"disableLocalAuth\": false,\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-7270\",\r\n \"createdAt\": \"2021-09-24T04:42:11.387Z\",\r\n \"updatedAt\": \"2021-09-24T04:43:04.347Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-7270.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-5124/providers/Microsoft.EventHub/namespaces/sdk-NS-3517\",\r\n \"name\": \"sdk-NS-3517\",\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 \"disableLocalAuth\": false,\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-3517\",\r\n \"createdAt\": \"2021-11-15T02:58:23.187Z\",\r\n \"updatedAt\": \"2021-11-15T02:59:15.69Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-3517.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-6427/providers/Microsoft.EventHub/namespaces/sdk-NS-7270/eventhubs/sdk-EventHub-7196?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNjQyNy9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTcyNzAvZXZlbnRodWJzL3Nkay1FdmVudEh1Yi03MTk2P2FwaS12ZXJzaW9uPTIwMjEtMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-5124/providers/Microsoft.EventHub/namespaces/sdk-NS-3517/eventhubs/sdk-EventHub-8329?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNTEyNC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTM1MTcvZXZlbnRodWJzL3Nkay1FdmVudEh1Yi04MzI5P2FwaS12ZXJzaW9uPTIwMjEtMTEtMDE=", "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/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": [ - "64e04b0b-c4f6-4e1f-873a-99439f5106d6" + "ba48fb35-edaf-4d5d-a1bf-c95526b2a8b5" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -350,27 +350,30 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:59:37 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "17904cc3-1891-43cd-b758-f6f8217c05b7_M1SN1_M1SN1" + "b6423a65-2ac2-460b-8169-51ddb8ba414b_M8CH3_M8CH3" ], "Server-SB": [ - "Service-Bus-Resource-Provider/SN1" - ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" + "Service-Bus-Resource-Provider/CH3" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], "x-ms-correlation-request-id": [ - "bd8ad53d-b011-4281-b2a1-2d1c38a4125f" + "7c0f9985-4f6b-44ac-a148-d092337fe005" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210924T044325Z:bd8ad53d-b011-4281-b2a1-2d1c38a4125f" + "SOUTHINDIA:20211115T025938Z:7c0f9985-4f6b-44ac-a148-d092337fe005" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -378,11 +381,8 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:43:25 GMT" - ], "Content-Length": [ - "982" + "981" ], "Content-Type": [ "application/json; charset=utf-8" @@ -391,26 +391,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-6427/providers/Microsoft.EventHub/namespaces/sdk-NS-7270/eventhubs/sdk-EventHub-7196\",\r\n \"name\": \"sdk-EventHub-7196\",\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\": \"2021-09-24T04:43:24.183Z\",\r\n \"updatedAt\": \"2021-09-24T04:43:24.573Z\",\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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-5124/providers/Microsoft.EventHub/namespaces/sdk-NS-3517/eventhubs/sdk-EventHub-8329\",\r\n \"name\": \"sdk-EventHub-8329\",\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\": \"2021-11-15T02:59:37.14Z\",\r\n \"updatedAt\": \"2021-11-15T02:59:37.463Z\",\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/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-6427/providers/Microsoft.EventHub/namespaces/sdk-NS-7270/eventhubs/sdk-EventHub-7196?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNjQyNy9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTcyNzAvZXZlbnRodWJzL3Nkay1FdmVudEh1Yi03MTk2P2FwaS12ZXJzaW9uPTIwMjEtMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-5124/providers/Microsoft.EventHub/namespaces/sdk-NS-3517/eventhubs/sdk-EventHub-8329?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNTEyNC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTM1MTcvZXZlbnRodWJzL3Nkay1FdmVudEh1Yi04MzI5P2FwaS12ZXJzaW9uPTIwMjEtMTEtMDE=", "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/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": [ - "5097a552-3c50-4767-9277-349a543942db" + "506e2968-54ff-495e-b318-4ace47858b46" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -423,27 +423,30 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:59:40 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "5b3dcadf-84bd-4a13-9b28-1aaa2124e231_M1SN1_M1SN1" + "4077c469-211c-4eaf-9763-c7b3edd36165_M8CH3_M8CH3" ], "Server-SB": [ - "Service-Bus-Resource-Provider/SN1" - ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" + "Service-Bus-Resource-Provider/CH3" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1198" ], "x-ms-correlation-request-id": [ - "6d4f1753-ea12-403d-8b3e-d85631f8474f" + "2208e427-689e-4abf-8962-e15249044826" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210924T044328Z:6d4f1753-ea12-403d-8b3e-d85631f8474f" + "SOUTHINDIA:20211115T025941Z:2208e427-689e-4abf-8962-e15249044826" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -451,9 +454,6 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:43:28 GMT" - ], "Content-Length": [ "957" ], @@ -464,26 +464,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-6427/providers/Microsoft.EventHub/namespaces/sdk-NS-7270/eventhubs/sdk-EventHub-7196\",\r\n \"name\": \"sdk-EventHub-7196\",\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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-5124/providers/Microsoft.EventHub/namespaces/sdk-NS-3517/eventhubs/sdk-EventHub-8329\",\r\n \"name\": \"sdk-EventHub-8329\",\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/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-6427/providers/Microsoft.EventHub/namespaces/sdk-NS-7270/eventhubs/sdk-EventHub-7196?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNjQyNy9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTcyNzAvZXZlbnRodWJzL3Nkay1FdmVudEh1Yi03MTk2P2FwaS12ZXJzaW9uPTIwMjEtMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-5124/providers/Microsoft.EventHub/namespaces/sdk-NS-3517/eventhubs/sdk-EventHub-8329?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNTEyNC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTM1MTcvZXZlbnRodWJzL3Nkay1FdmVudEh1Yi04MzI5P2FwaS12ZXJzaW9uPTIwMjEtMTEtMDE=", "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/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": [ - "c9e3e592-0425-468c-8a0c-273027eb5f8a" + "0950b4d3-64ac-4bf7-a395-8c4e47b63c5c" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -496,27 +496,30 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:59:43 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "d663ac2f-dcb7-4b30-b4b9-115fd44e22bd_M1SN1_M1SN1" + "5b55cdb2-9476-415e-8c2e-4f17cbca983c_M8CH3_M8CH3" ], "Server-SB": [ - "Service-Bus-Resource-Provider/SN1" - ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" + "Service-Bus-Resource-Provider/CH3" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1197" ], "x-ms-correlation-request-id": [ - "dc867f17-454e-4f2c-bc1f-b3162c93ded9" + "dcc5711c-a52b-41b9-8407-505023c35573" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210924T044330Z:dc867f17-454e-4f2c-bc1f-b3162c93ded9" + "SOUTHINDIA:20211115T025943Z:dcc5711c-a52b-41b9-8407-505023c35573" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -524,9 +527,6 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:43:30 GMT" - ], "Content-Length": [ "957" ], @@ -537,53 +537,56 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-6427/providers/Microsoft.EventHub/namespaces/sdk-NS-7270/eventhubs/sdk-EventHub-7196\",\r\n \"name\": \"sdk-EventHub-7196\",\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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-5124/providers/Microsoft.EventHub/namespaces/sdk-NS-3517/eventhubs/sdk-EventHub-8329\",\r\n \"name\": \"sdk-EventHub-8329\",\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/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-6427/providers/Microsoft.EventHub/namespaces/sdk-NS-7270/eventhubs/sdk-EventHub-7196?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNjQyNy9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTcyNzAvZXZlbnRodWJzL3Nkay1FdmVudEh1Yi03MTk2P2FwaS12ZXJzaW9uPTIwMjEtMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-5124/providers/Microsoft.EventHub/namespaces/sdk-NS-3517/eventhubs/sdk-EventHub-8329?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNTEyNC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTM1MTcvZXZlbnRodWJzL3Nkay1FdmVudEh1Yi04MzI5P2FwaS12ZXJzaW9uPTIwMjEtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c0ed457a-40ae-4cb1-a976-319f36e4ccf1" + "292d2059-8c05-4473-9287-e8ba7185b045" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:59:37 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "822122af-abd1-49c8-ba10-a76a76a6e5f5_M1SN1_M1SN1" + "12740959-2356-4e5f-8d11-4a23a497b7fb_M8CH3_M8CH3" ], "Server-SB": [ - "Service-Bus-Resource-Provider/SN1" - ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" + "Service-Bus-Resource-Provider/CH3" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11997" ], "x-ms-correlation-request-id": [ - "074c9ece-cf3c-4749-96b6-76b14b104311" + "71c79b0c-3147-4307-969a-d9dc08b2757c" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210924T044325Z:074c9ece-cf3c-4749-96b6-76b14b104311" + "SOUTHINDIA:20211115T025938Z:71c79b0c-3147-4307-969a-d9dc08b2757c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -591,11 +594,8 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:43:25 GMT" - ], "Content-Length": [ - "980" + "979" ], "Content-Type": [ "application/json; charset=utf-8" @@ -604,53 +604,56 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-6427/providers/Microsoft.EventHub/namespaces/sdk-NS-7270/eventhubs/sdk-EventHub-7196\",\r\n \"name\": \"sdk-EventHub-7196\",\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\": \"2021-09-24T04:43:24.183\",\r\n \"updatedAt\": \"2021-09-24T04:43:24.573\",\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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-5124/providers/Microsoft.EventHub/namespaces/sdk-NS-3517/eventhubs/sdk-EventHub-8329\",\r\n \"name\": \"sdk-EventHub-8329\",\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\": \"2021-11-15T02:59:37.14\",\r\n \"updatedAt\": \"2021-11-15T02:59:37.463\",\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/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-6427/providers/Microsoft.EventHub/namespaces/sdk-NS-7270/eventhubs/sdk-EventHub-7196?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNjQyNy9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTcyNzAvZXZlbnRodWJzL3Nkay1FdmVudEh1Yi03MTk2P2FwaS12ZXJzaW9uPTIwMjEtMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-5124/providers/Microsoft.EventHub/namespaces/sdk-NS-3517/eventhubs/sdk-EventHub-8329?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNTEyNC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTM1MTcvZXZlbnRodWJzL3Nkay1FdmVudEh1Yi04MzI5P2FwaS12ZXJzaW9uPTIwMjEtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c35b870e-e41d-40ec-a33e-99e295331a12" + "b26079fb-f46c-4103-9437-c62d5c889cf2" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:59:44 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "2ce1b347-e9c4-4007-9a2d-5bf1246db1d9_M1SN1_M1SN1" + "0bf227b7-7f07-4e29-8c42-54c843abce07_M8CH3_M8CH3" ], "Server-SB": [ - "Service-Bus-Resource-Provider/SN1" - ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" + "Service-Bus-Resource-Provider/CH3" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11995" ], "x-ms-correlation-request-id": [ - "08c20ea1-56c2-469f-9d1a-ef301334abf8" + "c3a62184-eeb4-4112-a0eb-9d68915e504f" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210924T044330Z:08c20ea1-56c2-469f-9d1a-ef301334abf8" + "SOUTHINDIA:20211115T025944Z:c3a62184-eeb4-4112-a0eb-9d68915e504f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -658,11 +661,8 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:43:30 GMT" - ], "Content-Length": [ - "980" + "979" ], "Content-Type": [ "application/json; charset=utf-8" @@ -671,56 +671,59 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-6427/providers/Microsoft.EventHub/namespaces/sdk-NS-7270/eventhubs/sdk-EventHub-7196\",\r\n \"name\": \"sdk-EventHub-7196\",\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\": \"2021-09-24T04:43:24.183\",\r\n \"updatedAt\": \"2021-09-24T04:43:30.193\",\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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-5124/providers/Microsoft.EventHub/namespaces/sdk-NS-3517/eventhubs/sdk-EventHub-8329\",\r\n \"name\": \"sdk-EventHub-8329\",\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\": \"2021-11-15T02:59:37.14\",\r\n \"updatedAt\": \"2021-11-15T02:59:43.543\",\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/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-6427/providers/Microsoft.EventHub/namespaces/sdk-NS-7270/eventhubs?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNjQyNy9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTcyNzAvZXZlbnRodWJzP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-5124/providers/Microsoft.EventHub/namespaces/sdk-NS-3517/eventhubs?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNTEyNC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTM1MTcvZXZlbnRodWJzP2FwaS12ZXJzaW9uPTIwMjEtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "53310e9a-8e99-4b26-8de4-bb7f49be77ea" + "7d1a94eb-2ce8-47f7-b1d1-5f05616a7456" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:59:38 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-inline-count": [ "" ], "x-ms-request-id": [ - "cad4e97c-209e-47fc-acdf-dc0cbca3a143_M1SN1_M1SN1" + "b48bde27-418e-4ac9-8ba6-ec2d21bdbc8c_M8CH3_M8CH3" ], "Server-SB": [ - "Service-Bus-Resource-Provider/SN1" - ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" + "Service-Bus-Resource-Provider/CH3" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11996" ], "x-ms-correlation-request-id": [ - "058ece20-85ac-4d8e-9cad-fe5da5d3925c" + "ab46f6a0-dd74-4591-9eff-841b011db9cc" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210924T044326Z:058ece20-85ac-4d8e-9cad-fe5da5d3925c" + "SOUTHINDIA:20211115T025939Z:ab46f6a0-dd74-4591-9eff-841b011db9cc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -728,11 +731,8 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:43:26 GMT" - ], "Content-Length": [ - "992" + "991" ], "Content-Type": [ "application/json; charset=utf-8" @@ -741,53 +741,56 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-6427/providers/Microsoft.EventHub/namespaces/sdk-NS-7270/eventhubs/sdk-eventhub-7196\",\r\n \"name\": \"sdk-eventhub-7196\",\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\": \"2021-09-24T04:43:24.183\",\r\n \"updatedAt\": \"2021-09-24T04:43:24.573\",\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-5124/providers/Microsoft.EventHub/namespaces/sdk-NS-3517/eventhubs/sdk-eventhub-8329\",\r\n \"name\": \"sdk-eventhub-8329\",\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\": \"2021-11-15T02:59:37.14\",\r\n \"updatedAt\": \"2021-11-15T02:59:37.463\",\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/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-6427/providers/Microsoft.EventHub/namespaces/sdk-NS-7270/eventhubs/sdk-EventHub-7196?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNjQyNy9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTcyNzAvZXZlbnRodWJzL3Nkay1FdmVudEh1Yi03MTk2P2FwaS12ZXJzaW9uPTIwMjEtMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-5124/providers/Microsoft.EventHub/namespaces/sdk-NS-3517/eventhubs/sdk-EventHub-8329?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNTEyNC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTM1MTcvZXZlbnRodWJzL3Nkay1FdmVudEh1Yi04MzI5P2FwaS12ZXJzaW9uPTIwMjEtMTEtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "848668cd-ab63-45b1-96cb-82fcbc5675a5" + "1fdf6286-15c2-41d5-9d3e-0873b045e2a9" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:59:46 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "529a8174-ba6a-40ca-9d64-ee611d8948fe_M1SN1_M1SN1" + "346f15c9-3a47-4059-a01b-aeee34e9a216_M8CH3_M8CH3" ], "Server-SB": [ - "Service-Bus-Resource-Provider/SN1" - ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" + "Service-Bus-Resource-Provider/CH3" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" + "14998" ], "x-ms-correlation-request-id": [ - "41e58cd5-1e22-4a74-bf79-2f3c2e619d99" + "39d1327f-9e02-4667-b981-b458f1d28374" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210924T044332Z:41e58cd5-1e22-4a74-bf79-2f3c2e619d99" + "SOUTHINDIA:20211115T025946Z:39d1327f-9e02-4667-b981-b458f1d28374" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -795,66 +798,66 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:43:32 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-6427/providers/Microsoft.EventHub/namespaces/sdk-NS-7270?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNjQyNy9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTcyNzA/YXBpLXZlcnNpb249MjAyMS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-5124/providers/Microsoft.EventHub/namespaces/sdk-NS-3517?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNTEyNC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTM1MTc/YXBpLXZlcnNpb249MjAyMS0xMS0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "85417ec2-d23e-4868-adac-6e4800157281" + "c5e4e852-03cc-4262-87fc-3426ac94c701" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:59:54 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-6427/providers/Microsoft.EventHub/namespaces/sdk-NS-7270/operationresults/sdk-NS-7270?api-version=2021-06-01-preview" + "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-5124/providers/Microsoft.EventHub/namespaces/sdk-NS-3517/operationresults/sdk-NS-3517?api-version=2021-11-01" + ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "0581c79a-3391-490a-b6ca-ad38537a4834_M1SN1_M1SN1" + "a197bc05-8f16-496d-b202-fae86e759f7c_M8CH3_M8CH3" ], "Server-SB": [ - "Service-Bus-Resource-Provider/SN1" - ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" + "Service-Bus-Resource-Provider/CH3" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14998" + "14997" ], "x-ms-correlation-request-id": [ - "c1b737bb-e11b-44c6-98b4-6a637da1112c" + "e1276a4f-50d5-4f23-87a4-923bfbf0520c" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210924T044341Z:c1b737bb-e11b-44c6-98b4-6a637da1112c" + "SOUTHINDIA:20211115T025954Z:e1276a4f-50d5-4f23-87a4-923bfbf0520c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -862,57 +865,57 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:43:41 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-6427/providers/Microsoft.EventHub/namespaces/sdk-NS-7270/operationresults/sdk-NS-7270?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNjQyNy9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTcyNzAvb3BlcmF0aW9ucmVzdWx0cy9zZGstTlMtNzI3MD9hcGktdmVyc2lvbj0yMDIxLTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-5124/providers/Microsoft.EventHub/namespaces/sdk-NS-3517/operationresults/sdk-NS-3517?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNTEyNC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTM1MTcvb3BlcmF0aW9ucmVzdWx0cy9zZGstTlMtMzUxNz9hcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 03:00:24 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "71634200-693e-4d35-9fa6-4488092d0d94_M0SN1_M0SN1" + "d1e9f67e-48b2-4fb5-9f37-2f3a88f20b8f_M8CH3_M8CH3" ], "Server-SB": [ - "Service-Bus-Resource-Provider/SN1" - ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" + "Service-Bus-Resource-Provider/CH3" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11994" ], "x-ms-correlation-request-id": [ - "5bab7a95-ddc8-4208-a8de-6dce5ae049c6" + "21e4acd8-8d40-4d6e-bd5c-fb27ea6ec01e" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210924T044411Z:5bab7a95-ddc8-4208-a8de-6dce5ae049c6" + "SOUTHINDIA:20211115T030025Z:21e4acd8-8d40-4d6e-bd5c-fb27ea6ec01e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -920,57 +923,57 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:44:11 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-6427/providers/Microsoft.EventHub/namespaces/sdk-NS-7270/operationresults/sdk-NS-7270?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNjQyNy9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTcyNzAvb3BlcmF0aW9ucmVzdWx0cy9zZGstTlMtNzI3MD9hcGktdmVyc2lvbj0yMDIxLTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-5124/providers/Microsoft.EventHub/namespaces/sdk-NS-3517/operationresults/sdk-NS-3517?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNTEyNC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTM1MTcvb3BlcmF0aW9ucmVzdWx0cy9zZGstTlMtMzUxNz9hcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 03:00:25 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "6da92223-97a1-43bb-bfe9-3590acfc8771_M7SN1_M7SN1" + "69471c07-b41d-4f4c-861d-3f0b32e5e844_M8CH3_M8CH3" ], "Server-SB": [ - "Service-Bus-Resource-Provider/SN1" - ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" + "Service-Bus-Resource-Provider/CH3" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11993" ], "x-ms-correlation-request-id": [ - "8f49a28a-1449-4844-a788-c9a22bd29a09" + "8123842e-90e9-47c2-b426-faacb6d684b8" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210924T044412Z:8f49a28a-1449-4844-a788-c9a22bd29a09" + "SOUTHINDIA:20211115T030025Z:8123842e-90e9-47c2-b426-faacb6d684b8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -978,14 +981,11 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:44:11 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", @@ -994,9 +994,9 @@ ], "Names": { "EventCreateGetUpdateDelete": [ - "Default-EventHub-6427", - "sdk-NS-7270", - "sdk-EventHub-7196" + "Default-EventHub-5124", + "sdk-NS-3517", + "sdk-EventHub-8329" ] }, "Variables": { 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 55dd60446755..192712ec59d5 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 @@ -7,15 +7,15 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "940cc128-da45-4bf2-bf6c-e6d8f70ed0ec" + "5c9ecb19-8896-4c16-b74e-7dca98df2cb7" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", + "OSVersion/Microsoft.Windows.10.0.22000.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -23,6 +23,9 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:47:09 GMT" + ], "Pragma": [ "no-cache" ], @@ -30,13 +33,13 @@ "11999" ], "x-ms-request-id": [ - "cdf04ebd-da58-405f-91e8-aa06e4f5b8e9" + "a31917dd-2b41-4176-a566-71eb0754b925" ], "x-ms-correlation-request-id": [ - "cdf04ebd-da58-405f-91e8-aa06e4f5b8e9" + "a31917dd-2b41-4176-a566-71eb0754b925" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T043506Z:cdf04ebd-da58-405f-91e8-aa06e4f5b8e9" + "SOUTHINDIA:20211115T024710Z:a31917dd-2b41-4176-a566-71eb0754b925" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -44,38 +47,35 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:35:06 GMT" + "Content-Length": [ + "4451" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" - ], - "Content-Length": [ - "4274" ] }, - "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 \"Jio India West\",\r\n \"West US 3\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"UAE Central\",\r\n \"Norway West\",\r\n \"Sweden Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01-preview\",\r\n \"2021-01-01-preview\",\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 \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"UAE Central\",\r\n \"Norway West\",\r\n \"Sweden 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 \"2021-06-01-preview\",\r\n \"2021-01-01-preview\",\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 },\r\n {\r\n \"resourceType\": \"namespaces/networkrulesets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-06-01-preview\",\r\n \"2021-01-01-preview\",\r\n \"2018-01-01-preview\",\r\n \"2017-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/privateEndpointConnections\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-06-01-preview\",\r\n \"2021-01-01-preview\",\r\n \"2018-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/eventhubs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-06-01-preview\",\r\n \"2021-01-01-preview\",\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 },\r\n {\r\n \"resourceType\": \"namespaces/eventhubs/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-06-01-preview\",\r\n \"2021-01-01-preview\",\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 },\r\n {\r\n \"resourceType\": \"namespaces/eventhubs/consumergroups\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-06-01-preview\",\r\n \"2021-01-01-preview\",\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 },\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 \"2021-06-01-preview\",\r\n \"2021-01-01-preview\",\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 },\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 \"2021-06-01-preview\",\r\n \"2021-01-01-preview\",\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 },\r\n {\r\n \"resourceType\": \"namespaces/disasterrecoveryconfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-06-01-preview\",\r\n \"2021-01-01-preview\",\r\n \"2018-01-01-preview\",\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 \"2021-06-01-preview\",\r\n \"2021-01-01-preview\",\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 },\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}", + "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 \"Jio India West\",\r\n \"West US 3\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"UAE Central\",\r\n \"Norway West\",\r\n \"Sweden Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-11-01\",\r\n \"2021-06-01-preview\",\r\n \"2021-01-01-preview\",\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 \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"UAE Central\",\r\n \"Norway West\",\r\n \"Sweden Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-11-01\",\r\n \"2021-06-01-preview\",\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 \"2021-11-01\",\r\n \"2021-06-01-preview\",\r\n \"2021-01-01-preview\",\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 },\r\n {\r\n \"resourceType\": \"namespaces/networkrulesets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-11-01\",\r\n \"2021-06-01-preview\",\r\n \"2021-01-01-preview\",\r\n \"2018-01-01-preview\",\r\n \"2017-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/privateEndpointConnections\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-11-01\",\r\n \"2021-06-01-preview\",\r\n \"2021-01-01-preview\",\r\n \"2018-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/eventhubs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-11-01\",\r\n \"2021-06-01-preview\",\r\n \"2021-01-01-preview\",\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 },\r\n {\r\n \"resourceType\": \"namespaces/eventhubs/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-11-01\",\r\n \"2021-06-01-preview\",\r\n \"2021-01-01-preview\",\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 },\r\n {\r\n \"resourceType\": \"namespaces/eventhubs/consumergroups\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-11-01\",\r\n \"2021-06-01-preview\",\r\n \"2021-01-01-preview\",\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 },\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 \"2021-11-01\",\r\n \"2021-06-01-preview\",\r\n \"2021-01-01-preview\",\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 },\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 \"2021-11-01\",\r\n \"2021-06-01-preview\",\r\n \"2021-01-01-preview\",\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 },\r\n {\r\n \"resourceType\": \"namespaces/disasterrecoveryconfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-11-01\",\r\n \"2021-06-01-preview\",\r\n \"2021-01-01-preview\",\r\n \"2018-01-01-preview\",\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 \"2021-11-01\",\r\n \"2021-06-01-preview\",\r\n \"2021-01-01-preview\",\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 },\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/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/Default-EventHub-4305?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlZ3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNDMwNT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/Default-EventHub-8174?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlZ3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItODE3ND9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"Australia East\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "acdb6b77-9026-4736-93f3-7899f9cb53dd" + "886bdda0-6649-4ac5-a1a3-b664a9a9eb24" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", + "OSVersion/Microsoft.Windows.10.0.22000.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ], "Content-Type": [ @@ -89,6 +89,9 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:47:11 GMT" + ], "Pragma": [ "no-cache" ], @@ -96,13 +99,13 @@ "1199" ], "x-ms-request-id": [ - "77f0c4a4-6401-4353-a22d-8e6500b27e97" + "417a6c89-022d-49f3-89be-41a809b4ace8" ], "x-ms-correlation-request-id": [ - "77f0c4a4-6401-4353-a22d-8e6500b27e97" + "417a6c89-022d-49f3-89be-41a809b4ace8" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T043509Z:77f0c4a4-6401-4353-a22d-8e6500b27e97" + "SOUTHINDIA:20211115T024712Z:417a6c89-022d-49f3-89be-41a809b4ace8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -110,9 +113,6 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:35:09 GMT" - ], "Content-Length": [ "202" ], @@ -123,26 +123,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-4305\",\r\n \"name\": \"Default-EventHub-4305\",\r\n \"location\": \"australiaeast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8174\",\r\n \"name\": \"Default-EventHub-8174\",\r\n \"location\": \"australiaeast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-4305/providers/Microsoft.EventHub/namespaces/sdk-NS-926?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNDMwNS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTkyNj9hcGktdmVyc2lvbj0yMDIxLTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8174/providers/Microsoft.EventHub/namespaces/sdk-NS-6608?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItODE3NC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTY2MDg/YXBpLXZlcnNpb249MjAyMS0xMS0wMQ==", "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": [ - "9a54bd81-cc7c-4b9a-8752-a1c73258aa16" + "fa43d9a9-0b9a-465c-b393-26d0152dda61" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -155,27 +155,30 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:47:17 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "e0e678e6-9fb3-4dbc-8151-261a2ec94460_M0SN1_M0SN1" + "fc24e269-3ce6-4253-ab35-63125d0bf0c6_M3SN1_M3SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "49" ], "x-ms-correlation-request-id": [ - "2fa79705-4a55-4169-a27e-ab4d290fabe7" + "b84cebff-2cdf-4264-9903-cbb22c920fa0" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T043519Z:2fa79705-4a55-4169-a27e-ab4d290fabe7" + "SOUTHINDIA:20211115T024718Z:b84cebff-2cdf-4264-9903-cbb22c920fa0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -183,11 +186,8 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:35:18 GMT" - ], "Content-Length": [ - "732" + "734" ], "Content-Type": [ "application/json; charset=utf-8" @@ -196,47 +196,50 @@ "-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-4305/providers/Microsoft.EventHub/namespaces/sdk-NS-926\",\r\n \"name\": \"sdk-NS-926\",\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 \"disableLocalAuth\": false,\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-926\",\r\n \"createdAt\": \"2021-09-24T04:35:17.317Z\",\r\n \"updatedAt\": \"2021-09-24T04:35:17.317Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-926.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-8174/providers/Microsoft.EventHub/namespaces/sdk-NS-6608\",\r\n \"name\": \"sdk-NS-6608\",\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 \"disableLocalAuth\": false,\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-6608\",\r\n \"createdAt\": \"2021-11-15T02:47:16.96Z\",\r\n \"updatedAt\": \"2021-11-15T02:47:16.96Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-6608.servicebus.windows.net:443/\",\r\n \"status\": \"Activating\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-4305/providers/Microsoft.EventHub/namespaces/sdk-NS-926?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNDMwNS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTkyNj9hcGktdmVyc2lvbj0yMDIxLTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8174/providers/Microsoft.EventHub/namespaces/sdk-NS-6608?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItODE3NC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTY2MDg/YXBpLXZlcnNpb249MjAyMS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:47:48 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "85c523bc-a0aa-4e1d-80d2-5f9ff7475b20_M0SN1_M0SN1" + "d81e08e5-8bff-4be6-a42c-11afd107c902_M3SN1_M3SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ "11999" ], "x-ms-correlation-request-id": [ - "9c9815a5-ab9b-45e1-8217-5ba24c141f10" + "d1acc41c-beb8-4fdc-b594-f01a80ead3b2" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T043549Z:9c9815a5-ab9b-45e1-8217-5ba24c141f10" + "SOUTHINDIA:20211115T024748Z:d1acc41c-beb8-4fdc-b594-f01a80ead3b2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -244,11 +247,8 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:35:48 GMT" - ], "Content-Length": [ - "732" + "734" ], "Content-Type": [ "application/json; charset=utf-8" @@ -257,47 +257,50 @@ "-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-4305/providers/Microsoft.EventHub/namespaces/sdk-NS-926\",\r\n \"name\": \"sdk-NS-926\",\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 \"disableLocalAuth\": false,\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-926\",\r\n \"createdAt\": \"2021-09-24T04:35:17.317Z\",\r\n \"updatedAt\": \"2021-09-24T04:35:17.317Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-926.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-8174/providers/Microsoft.EventHub/namespaces/sdk-NS-6608\",\r\n \"name\": \"sdk-NS-6608\",\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 \"disableLocalAuth\": false,\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-6608\",\r\n \"createdAt\": \"2021-11-15T02:47:16.96Z\",\r\n \"updatedAt\": \"2021-11-15T02:47:16.96Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-6608.servicebus.windows.net:443/\",\r\n \"status\": \"Activating\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-4305/providers/Microsoft.EventHub/namespaces/sdk-NS-926?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNDMwNS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTkyNj9hcGktdmVyc2lvbj0yMDIxLTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8174/providers/Microsoft.EventHub/namespaces/sdk-NS-6608?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItODE3NC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTY2MDg/YXBpLXZlcnNpb249MjAyMS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:48:18 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "4e36e45b-e377-4a4f-9cd7-36717fb9a244_M0SN1_M0SN1" + "42c5a801-c2ed-4c8e-8e16-43fa2bf93902_M3SN1_M3SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ "11998" ], "x-ms-correlation-request-id": [ - "c9ea5feb-cb38-481a-b96c-82765a43a3fc" + "1ae16a1f-9992-4378-aa9b-e07a105679d7" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T043619Z:c9ea5feb-cb38-481a-b96c-82765a43a3fc" + "SOUTHINDIA:20211115T024819Z:1ae16a1f-9992-4378-aa9b-e07a105679d7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -305,11 +308,8 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:36:19 GMT" - ], "Content-Length": [ - "730" + "733" ], "Content-Type": [ "application/json; charset=utf-8" @@ -318,26 +318,26 @@ "-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-4305/providers/Microsoft.EventHub/namespaces/sdk-NS-926\",\r\n \"name\": \"sdk-NS-926\",\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 \"disableLocalAuth\": false,\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-926\",\r\n \"createdAt\": \"2021-09-24T04:35:17.317Z\",\r\n \"updatedAt\": \"2021-09-24T04:36:09.297Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-926.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-8174/providers/Microsoft.EventHub/namespaces/sdk-NS-6608\",\r\n \"name\": \"sdk-NS-6608\",\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 \"disableLocalAuth\": false,\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-6608\",\r\n \"createdAt\": \"2021-11-15T02:47:16.96Z\",\r\n \"updatedAt\": \"2021-11-15T02:48:08.193Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-6608.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-4305/providers/Microsoft.EventHub/namespaces/sdk-NS-926/eventhubs/sdk-EventHub-3875_0?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNDMwNS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTkyNi9ldmVudGh1YnMvc2RrLUV2ZW50SHViLTM4NzVfMD9hcGktdmVyc2lvbj0yMDIxLTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8174/providers/Microsoft.EventHub/namespaces/sdk-NS-6608/eventhubs/sdk-EventHub-9315_0?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItODE3NC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTY2MDgvZXZlbnRodWJzL3Nkay1FdmVudEh1Yi05MzE1XzA/YXBpLXZlcnNpb249MjAyMS0xMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "{}", "RequestHeaders": { "x-ms-client-request-id": [ - "10319d92-4429-43a1-a9a6-64ab4f9b7a6d" + "d3137915-edec-419b-a02f-d56106ff2b2f" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -350,27 +350,30 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:48:26 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "d92440c4-bf39-472c-8c86-54f669bf1089_M0SN1_M0SN1" + "35a95f53-1cd7-4dbe-b6da-1ad345300a2f_M3SN1_M3SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1198" ], "x-ms-correlation-request-id": [ - "096cf6df-8f73-4504-be14-ec93b84a41a2" + "36e23587-a1eb-429a-bcde-9f2f6d4e6574" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T043628Z:096cf6df-8f73-4504-be14-ec93b84a41a2" + "SOUTHINDIA:20211115T024827Z:36e23587-a1eb-429a-bcde-9f2f6d4e6574" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -378,11 +381,8 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:36:28 GMT" - ], "Content-Length": [ - "470" + "474" ], "Content-Type": [ "application/json; charset=utf-8" @@ -391,26 +391,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-4305/providers/Microsoft.EventHub/namespaces/sdk-NS-926/eventhubs/sdk-EventHub-3875_0\",\r\n \"name\": \"sdk-EventHub-3875_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\": \"2021-09-24T04:36:27Z\",\r\n \"updatedAt\": \"2021-09-24T04:36:27.897Z\",\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-8174/providers/Microsoft.EventHub/namespaces/sdk-NS-6608/eventhubs/sdk-EventHub-9315_0\",\r\n \"name\": \"sdk-EventHub-9315_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\": \"2021-11-15T02:48:26.133Z\",\r\n \"updatedAt\": \"2021-11-15T02:48:26.43Z\",\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/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-4305/providers/Microsoft.EventHub/namespaces/sdk-NS-926/eventhubs/sdk-EventHub-3875_1?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNDMwNS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTkyNi9ldmVudGh1YnMvc2RrLUV2ZW50SHViLTM4NzVfMT9hcGktdmVyc2lvbj0yMDIxLTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8174/providers/Microsoft.EventHub/namespaces/sdk-NS-6608/eventhubs/sdk-EventHub-9315_1?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItODE3NC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTY2MDgvZXZlbnRodWJzL3Nkay1FdmVudEh1Yi05MzE1XzE/YXBpLXZlcnNpb249MjAyMS0xMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "{}", "RequestHeaders": { "x-ms-client-request-id": [ - "93dcc734-a71a-4ced-8240-28db505efca8" + "0433e0ba-94cb-4f08-a79d-eea1608da562" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -423,27 +423,30 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:48:29 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "14b0ad55-73ce-4425-abff-de253136f29e_M0SN1_M0SN1" + "89988108-03c9-4c56-b542-6a460da60d67_M3SN1_M3SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1197" ], "x-ms-correlation-request-id": [ - "0670eca1-5371-466d-bbd8-ad7fdbcfb731" + "e8ea50d9-5983-4bd9-adb8-5b1f175b5ec9" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T043631Z:0670eca1-5371-466d-bbd8-ad7fdbcfb731" + "SOUTHINDIA:20211115T024829Z:e8ea50d9-5983-4bd9-adb8-5b1f175b5ec9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -451,9 +454,6 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:36:30 GMT" - ], "Content-Length": [ "474" ], @@ -464,26 +464,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-4305/providers/Microsoft.EventHub/namespaces/sdk-NS-926/eventhubs/sdk-EventHub-3875_1\",\r\n \"name\": \"sdk-EventHub-3875_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\": \"2021-09-24T04:36:30.237Z\",\r\n \"updatedAt\": \"2021-09-24T04:36:30.493Z\",\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-8174/providers/Microsoft.EventHub/namespaces/sdk-NS-6608/eventhubs/sdk-EventHub-9315_1\",\r\n \"name\": \"sdk-EventHub-9315_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\": \"2021-11-15T02:48:28.83Z\",\r\n \"updatedAt\": \"2021-11-15T02:48:28.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/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-4305/providers/Microsoft.EventHub/namespaces/sdk-NS-926/eventhubs/sdk-EventHub-3875_2?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNDMwNS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTkyNi9ldmVudGh1YnMvc2RrLUV2ZW50SHViLTM4NzVfMj9hcGktdmVyc2lvbj0yMDIxLTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8174/providers/Microsoft.EventHub/namespaces/sdk-NS-6608/eventhubs/sdk-EventHub-9315_2?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItODE3NC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTY2MDgvZXZlbnRodWJzL3Nkay1FdmVudEh1Yi05MzE1XzI/YXBpLXZlcnNpb249MjAyMS0xMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "{}", "RequestHeaders": { "x-ms-client-request-id": [ - "3c73902f-d0d2-47f8-ab70-b5160f0f3aee" + "9af93a8c-54b0-4835-881e-097090f5654f" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -496,27 +496,30 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:48:31 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "24ace340-7ed0-468b-885d-8affc3d05c39_M0SN1_M0SN1" + "644fe57b-8f52-40f8-8e4e-5ff58b571557_M3SN1_M3SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1196" ], "x-ms-correlation-request-id": [ - "b44378e3-b9bc-425c-8491-5ad50b316698" + "0c740bb9-ac39-4778-b9e8-b84aa1456031" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T043633Z:b44378e3-b9bc-425c-8491-5ad50b316698" + "SOUTHINDIA:20211115T024832Z:0c740bb9-ac39-4778-b9e8-b84aa1456031" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -524,11 +527,8 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:36:33 GMT" - ], "Content-Length": [ - "472" + "474" ], "Content-Type": [ "application/json; charset=utf-8" @@ -537,26 +537,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-4305/providers/Microsoft.EventHub/namespaces/sdk-NS-926/eventhubs/sdk-EventHub-3875_2\",\r\n \"name\": \"sdk-EventHub-3875_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\": \"2021-09-24T04:36:32.75Z\",\r\n \"updatedAt\": \"2021-09-24T04:36:32.89Z\",\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-8174/providers/Microsoft.EventHub/namespaces/sdk-NS-6608/eventhubs/sdk-EventHub-9315_2\",\r\n \"name\": \"sdk-EventHub-9315_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\": \"2021-11-15T02:48:31.427Z\",\r\n \"updatedAt\": \"2021-11-15T02:48:31.57Z\",\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/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-4305/providers/Microsoft.EventHub/namespaces/sdk-NS-926/eventhubs/sdk-EventHub-3875_3?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNDMwNS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTkyNi9ldmVudGh1YnMvc2RrLUV2ZW50SHViLTM4NzVfMz9hcGktdmVyc2lvbj0yMDIxLTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8174/providers/Microsoft.EventHub/namespaces/sdk-NS-6608/eventhubs/sdk-EventHub-9315_3?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItODE3NC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTY2MDgvZXZlbnRodWJzL3Nkay1FdmVudEh1Yi05MzE1XzM/YXBpLXZlcnNpb249MjAyMS0xMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "{}", "RequestHeaders": { "x-ms-client-request-id": [ - "89a640bb-858a-4cc2-a106-6efd5ce839db" + "67186f2f-c888-4131-becb-564baacfdcd6" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -569,27 +569,30 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:48:34 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "e33238c9-fd6c-49a9-bd6b-a95179961118_M0SN1_M0SN1" + "33310c53-a74a-4c44-99b6-f6c68e01abcd_M3SN1_M3SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1195" ], "x-ms-correlation-request-id": [ - "ee4b3cde-09e7-4b25-975e-1bf06acf0638" + "08e68310-a55a-4f11-b465-df11c9452bc4" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T043635Z:ee4b3cde-09e7-4b25-975e-1bf06acf0638" + "SOUTHINDIA:20211115T024834Z:08e68310-a55a-4f11-b465-df11c9452bc4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -597,11 +600,8 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:36:35 GMT" - ], "Content-Length": [ - "474" + "473" ], "Content-Type": [ "application/json; charset=utf-8" @@ -610,26 +610,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-4305/providers/Microsoft.EventHub/namespaces/sdk-NS-926/eventhubs/sdk-EventHub-3875_3\",\r\n \"name\": \"sdk-EventHub-3875_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\": \"2021-09-24T04:36:35.093Z\",\r\n \"updatedAt\": \"2021-09-24T04:36:35.243Z\",\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-8174/providers/Microsoft.EventHub/namespaces/sdk-NS-6608/eventhubs/sdk-EventHub-9315_3\",\r\n \"name\": \"sdk-EventHub-9315_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\": \"2021-11-15T02:48:33.94Z\",\r\n \"updatedAt\": \"2021-11-15T02:48:34.08Z\",\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/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-4305/providers/Microsoft.EventHub/namespaces/sdk-NS-926/eventhubs/sdk-EventHub-3875_4?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNDMwNS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTkyNi9ldmVudGh1YnMvc2RrLUV2ZW50SHViLTM4NzVfND9hcGktdmVyc2lvbj0yMDIxLTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8174/providers/Microsoft.EventHub/namespaces/sdk-NS-6608/eventhubs/sdk-EventHub-9315_4?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItODE3NC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTY2MDgvZXZlbnRodWJzL3Nkay1FdmVudEh1Yi05MzE1XzQ/YXBpLXZlcnNpb249MjAyMS0xMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "{}", "RequestHeaders": { "x-ms-client-request-id": [ - "1ba253af-623c-4f01-9ba7-fe7dbffa1c47" + "596bfd04-53be-4373-a65b-3f5b8a9d0398" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -642,27 +642,30 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:48:36 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "163db3ee-e155-4b36-919f-c29da4e74c15_M0SN1_M0SN1" + "9646871d-f850-4a00-a820-097f7f89c3bf_M3SN1_M3SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1194" ], "x-ms-correlation-request-id": [ - "a1a30053-fdff-432c-a529-848e067b2fef" + "8ae6b5c9-bb07-4768-aa9b-fcd5e8009826" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T043638Z:a1a30053-fdff-432c-a529-848e067b2fef" + "SOUTHINDIA:20211115T024837Z:8ae6b5c9-bb07-4768-aa9b-fcd5e8009826" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -670,11 +673,8 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:36:37 GMT" - ], "Content-Length": [ - "473" + "474" ], "Content-Type": [ "application/json; charset=utf-8" @@ -683,26 +683,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-4305/providers/Microsoft.EventHub/namespaces/sdk-NS-926/eventhubs/sdk-EventHub-3875_4\",\r\n \"name\": \"sdk-EventHub-3875_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\": \"2021-09-24T04:36:37.57Z\",\r\n \"updatedAt\": \"2021-09-24T04:36:37.713Z\",\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-8174/providers/Microsoft.EventHub/namespaces/sdk-NS-6608/eventhubs/sdk-EventHub-9315_4\",\r\n \"name\": \"sdk-EventHub-9315_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\": \"2021-11-15T02:48:36.25Z\",\r\n \"updatedAt\": \"2021-11-15T02:48:36.407Z\",\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/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-4305/providers/Microsoft.EventHub/namespaces/sdk-NS-926/eventhubs/sdk-EventHub-3875_5?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNDMwNS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTkyNi9ldmVudGh1YnMvc2RrLUV2ZW50SHViLTM4NzVfNT9hcGktdmVyc2lvbj0yMDIxLTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8174/providers/Microsoft.EventHub/namespaces/sdk-NS-6608/eventhubs/sdk-EventHub-9315_5?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItODE3NC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTY2MDgvZXZlbnRodWJzL3Nkay1FdmVudEh1Yi05MzE1XzU/YXBpLXZlcnNpb249MjAyMS0xMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "{}", "RequestHeaders": { "x-ms-client-request-id": [ - "025db48e-a370-49f3-b73c-ffd7435a03a2" + "baa8f382-1175-45d1-8033-bb5ac0c5cf47" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -715,27 +715,30 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:48:39 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "a563f947-0987-498f-9cf7-f34e19099b55_M0SN1_M0SN1" + "8f352160-5a18-45f4-a79c-d422e92e495c_M3SN1_M3SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1193" ], "x-ms-correlation-request-id": [ - "65e3dedf-35d2-4027-9cd2-d86b19a451e9" + "43eb6505-c396-42a4-a152-9959fbe1ecd4" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T043640Z:65e3dedf-35d2-4027-9cd2-d86b19a451e9" + "SOUTHINDIA:20211115T024839Z:43eb6505-c396-42a4-a152-9959fbe1ecd4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -743,9 +746,6 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:36:40 GMT" - ], "Content-Length": [ "472" ], @@ -756,26 +756,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-4305/providers/Microsoft.EventHub/namespaces/sdk-NS-926/eventhubs/sdk-EventHub-3875_5\",\r\n \"name\": \"sdk-EventHub-3875_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\": \"2021-09-24T04:36:39.91Z\",\r\n \"updatedAt\": \"2021-09-24T04:36:40.04Z\",\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-8174/providers/Microsoft.EventHub/namespaces/sdk-NS-6608/eventhubs/sdk-EventHub-9315_5\",\r\n \"name\": \"sdk-EventHub-9315_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\": \"2021-11-15T02:48:39.1Z\",\r\n \"updatedAt\": \"2021-11-15T02:48:39.23Z\",\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/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-4305/providers/Microsoft.EventHub/namespaces/sdk-NS-926/eventhubs/sdk-EventHub-3875_6?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNDMwNS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTkyNi9ldmVudGh1YnMvc2RrLUV2ZW50SHViLTM4NzVfNj9hcGktdmVyc2lvbj0yMDIxLTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8174/providers/Microsoft.EventHub/namespaces/sdk-NS-6608/eventhubs/sdk-EventHub-9315_6?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItODE3NC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTY2MDgvZXZlbnRodWJzL3Nkay1FdmVudEh1Yi05MzE1XzY/YXBpLXZlcnNpb249MjAyMS0xMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "{}", "RequestHeaders": { "x-ms-client-request-id": [ - "ebf318a3-c9e9-43a0-aa90-7ca780aea387" + "23070f9e-d8d8-40aa-9281-5e7328bb3ceb" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -788,27 +788,30 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:48:42 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "ffb0df0d-9411-4e54-ad17-39476f8c4e92_M0SN1_M0SN1" + "4a3e336d-d8ef-4c4f-ba7a-6ae4578d6fcd_M1SN1_M1SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "1192" ], "x-ms-correlation-request-id": [ - "a247adde-ca15-4c54-bf60-00d2c45d0358" + "a6d0a7bd-d7f0-4ebd-8468-b7a9d1752937" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T043643Z:a247adde-ca15-4c54-bf60-00d2c45d0358" + "SOUTHINDIA:20211115T024843Z:a6d0a7bd-d7f0-4ebd-8468-b7a9d1752937" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -816,11 +819,8 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:36:42 GMT" - ], "Content-Length": [ - "472" + "474" ], "Content-Type": [ "application/json; charset=utf-8" @@ -829,26 +829,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-4305/providers/Microsoft.EventHub/namespaces/sdk-NS-926/eventhubs/sdk-EventHub-3875_6\",\r\n \"name\": \"sdk-EventHub-3875_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\": \"2021-09-24T04:36:42.42Z\",\r\n \"updatedAt\": \"2021-09-24T04:36:42.56Z\",\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-8174/providers/Microsoft.EventHub/namespaces/sdk-NS-6608/eventhubs/sdk-EventHub-9315_6\",\r\n \"name\": \"sdk-EventHub-9315_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\": \"2021-11-15T02:48:42.43Z\",\r\n \"updatedAt\": \"2021-11-15T02:48:42.613Z\",\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/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-4305/providers/Microsoft.EventHub/namespaces/sdk-NS-926/eventhubs/sdk-EventHub-3875_7?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNDMwNS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTkyNi9ldmVudGh1YnMvc2RrLUV2ZW50SHViLTM4NzVfNz9hcGktdmVyc2lvbj0yMDIxLTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8174/providers/Microsoft.EventHub/namespaces/sdk-NS-6608/eventhubs/sdk-EventHub-9315_7?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItODE3NC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTY2MDgvZXZlbnRodWJzL3Nkay1FdmVudEh1Yi05MzE1Xzc/YXBpLXZlcnNpb249MjAyMS0xMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "{}", "RequestHeaders": { "x-ms-client-request-id": [ - "00a42de1-7258-4104-8528-be882db58271" + "404b5ef3-bfba-438c-aa09-82265e45a4fd" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -861,27 +861,30 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:48:45 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "750808ba-643c-475c-b455-428ccb61f239_M11SN1_M11SN1" + "06b6f9ec-0b1a-468e-a1fa-5e8217d2eb1f_M3SN1_M3SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" + "1191" ], "x-ms-correlation-request-id": [ - "95aac387-7891-4bdb-b011-eb4a186c3a8d" + "b5eb5ae1-9e45-4485-b41e-6e23313199ac" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T043645Z:95aac387-7891-4bdb-b011-eb4a186c3a8d" + "SOUTHINDIA:20211115T024845Z:b5eb5ae1-9e45-4485-b41e-6e23313199ac" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -889,11 +892,8 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:36:44 GMT" - ], "Content-Length": [ - "473" + "474" ], "Content-Type": [ "application/json; charset=utf-8" @@ -902,26 +902,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-4305/providers/Microsoft.EventHub/namespaces/sdk-NS-926/eventhubs/sdk-EventHub-3875_7\",\r\n \"name\": \"sdk-EventHub-3875_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\": \"2021-09-24T04:36:44.61Z\",\r\n \"updatedAt\": \"2021-09-24T04:36:44.773Z\",\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-8174/providers/Microsoft.EventHub/namespaces/sdk-NS-6608/eventhubs/sdk-EventHub-9315_7\",\r\n \"name\": \"sdk-EventHub-9315_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\": \"2021-11-15T02:48:45.027Z\",\r\n \"updatedAt\": \"2021-11-15T02:48:45.16Z\",\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/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-4305/providers/Microsoft.EventHub/namespaces/sdk-NS-926/eventhubs/sdk-EventHub-3875_8?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNDMwNS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTkyNi9ldmVudGh1YnMvc2RrLUV2ZW50SHViLTM4NzVfOD9hcGktdmVyc2lvbj0yMDIxLTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8174/providers/Microsoft.EventHub/namespaces/sdk-NS-6608/eventhubs/sdk-EventHub-9315_8?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItODE3NC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTY2MDgvZXZlbnRodWJzL3Nkay1FdmVudEh1Yi05MzE1Xzg/YXBpLXZlcnNpb249MjAyMS0xMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "{}", "RequestHeaders": { "x-ms-client-request-id": [ - "e36dbc33-eb77-49ef-a454-69d3b2b62ac6" + "3c38e6be-ce19-46ef-8a30-a65e7f226192" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -934,27 +934,30 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:48:48 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "f2543361-d026-447b-95b6-fb9042389be3_M0SN1_M0SN1" + "7eb4f0b7-8d98-4ae0-8917-ca014e1e7ab6_M3SN1_M3SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1191" + "1190" ], "x-ms-correlation-request-id": [ - "8e2d59d9-06b2-4144-9996-d1319bc3973f" + "f74b85bb-5d99-4095-bd41-a50cd3bea58e" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T043647Z:8e2d59d9-06b2-4144-9996-d1319bc3973f" + "SOUTHINDIA:20211115T024848Z:f74b85bb-5d99-4095-bd41-a50cd3bea58e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -962,9 +965,6 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:36:47 GMT" - ], "Content-Length": [ "474" ], @@ -975,26 +975,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-4305/providers/Microsoft.EventHub/namespaces/sdk-NS-926/eventhubs/sdk-EventHub-3875_8\",\r\n \"name\": \"sdk-EventHub-3875_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\": \"2021-09-24T04:36:47.127Z\",\r\n \"updatedAt\": \"2021-09-24T04:36:47.287Z\",\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-8174/providers/Microsoft.EventHub/namespaces/sdk-NS-6608/eventhubs/sdk-EventHub-9315_8\",\r\n \"name\": \"sdk-EventHub-9315_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\": \"2021-11-15T02:48:47.76Z\",\r\n \"updatedAt\": \"2021-11-15T02:48:47.887Z\",\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/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-4305/providers/Microsoft.EventHub/namespaces/sdk-NS-926/eventhubs/sdk-EventHub-3875_9?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNDMwNS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTkyNi9ldmVudGh1YnMvc2RrLUV2ZW50SHViLTM4NzVfOT9hcGktdmVyc2lvbj0yMDIxLTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8174/providers/Microsoft.EventHub/namespaces/sdk-NS-6608/eventhubs/sdk-EventHub-9315_9?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItODE3NC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTY2MDgvZXZlbnRodWJzL3Nkay1FdmVudEh1Yi05MzE1Xzk/YXBpLXZlcnNpb249MjAyMS0xMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "{}", "RequestHeaders": { "x-ms-client-request-id": [ - "3e49cb15-a67f-4e25-95c2-0711e8e791be" + "9d565ec3-671a-401d-a267-24ad12ec2b3c" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1007,27 +1007,30 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:48:50 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "9aa2645a-e3f6-4163-9459-103bb5d4c2d5_M0SN1_M0SN1" + "614c9773-b7ad-437d-b881-b6c86d7d9fd0_M3SN1_M3SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1190" + "1189" ], "x-ms-correlation-request-id": [ - "62054c80-03c0-472c-b163-fa9fd28f0a47" + "f2ae5704-ecd8-4c5a-8e21-6f60e9476f4a" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T043650Z:62054c80-03c0-472c-b163-fa9fd28f0a47" + "SOUTHINDIA:20211115T024851Z:f2ae5704-ecd8-4c5a-8e21-6f60e9476f4a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1035,9 +1038,6 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:36:49 GMT" - ], "Content-Length": [ "474" ], @@ -1048,56 +1048,59 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-4305/providers/Microsoft.EventHub/namespaces/sdk-NS-926/eventhubs/sdk-EventHub-3875_9\",\r\n \"name\": \"sdk-EventHub-3875_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\": \"2021-09-24T04:36:49.343Z\",\r\n \"updatedAt\": \"2021-09-24T04:36:49.473Z\",\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-8174/providers/Microsoft.EventHub/namespaces/sdk-NS-6608/eventhubs/sdk-EventHub-9315_9\",\r\n \"name\": \"sdk-EventHub-9315_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\": \"2021-11-15T02:48:50.26Z\",\r\n \"updatedAt\": \"2021-11-15T02:48:50.393Z\",\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/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-4305/providers/Microsoft.EventHub/namespaces/sdk-NS-926/eventhubs?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNDMwNS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTkyNi9ldmVudGh1YnM/YXBpLXZlcnNpb249MjAyMS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8174/providers/Microsoft.EventHub/namespaces/sdk-NS-6608/eventhubs?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItODE3NC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTY2MDgvZXZlbnRodWJzP2FwaS12ZXJzaW9uPTIwMjEtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2f452bba-a01b-4dfc-9c23-ba02d6c109b8" + "d379e699-1c31-4ed7-9e45-0af8024b3ada" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:48:51 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-inline-count": [ "" ], "x-ms-request-id": [ - "bdc577f2-3096-4aee-ac75-4cec5d84098e_M0SN1_M0SN1" + "b864c031-6c08-451b-a765-3c3fc27c5d90_M3SN1_M3SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ "11997" ], "x-ms-correlation-request-id": [ - "2ece4a66-a270-42e9-89bf-c51befad9dbe" + "95e183ab-e992-4f7c-be60-94212745ccb8" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T043650Z:2ece4a66-a270-42e9-89bf-c51befad9dbe" + "SOUTHINDIA:20211115T024851Z:95e183ab-e992-4f7c-be60-94212745ccb8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1105,11 +1108,8 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:36:50 GMT" - ], "Content-Length": [ - "4729" + "4738" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1118,56 +1118,59 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-4305/providers/Microsoft.EventHub/namespaces/sdk-NS-926/eventhubs/sdk-eventhub-3875_0\",\r\n \"name\": \"sdk-eventhub-3875_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\": \"2021-09-24T04:36:27\",\r\n \"updatedAt\": \"2021-09-24T04:36:27.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-4305/providers/Microsoft.EventHub/namespaces/sdk-NS-926/eventhubs/sdk-eventhub-3875_1\",\r\n \"name\": \"sdk-eventhub-3875_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\": \"2021-09-24T04:36:30.237\",\r\n \"updatedAt\": \"2021-09-24T04:36:30.493\",\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-4305/providers/Microsoft.EventHub/namespaces/sdk-NS-926/eventhubs/sdk-eventhub-3875_2\",\r\n \"name\": \"sdk-eventhub-3875_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\": \"2021-09-24T04:36:32.75\",\r\n \"updatedAt\": \"2021-09-24T04:36:32.89\",\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-4305/providers/Microsoft.EventHub/namespaces/sdk-NS-926/eventhubs/sdk-eventhub-3875_3\",\r\n \"name\": \"sdk-eventhub-3875_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\": \"2021-09-24T04:36:35.093\",\r\n \"updatedAt\": \"2021-09-24T04:36:35.243\",\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-4305/providers/Microsoft.EventHub/namespaces/sdk-NS-926/eventhubs/sdk-eventhub-3875_4\",\r\n \"name\": \"sdk-eventhub-3875_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\": \"2021-09-24T04:36:37.57\",\r\n \"updatedAt\": \"2021-09-24T04:36:37.713\",\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-4305/providers/Microsoft.EventHub/namespaces/sdk-NS-926/eventhubs/sdk-eventhub-3875_5\",\r\n \"name\": \"sdk-eventhub-3875_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\": \"2021-09-24T04:36:39.91\",\r\n \"updatedAt\": \"2021-09-24T04:36:40.04\",\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-4305/providers/Microsoft.EventHub/namespaces/sdk-NS-926/eventhubs/sdk-eventhub-3875_6\",\r\n \"name\": \"sdk-eventhub-3875_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\": \"2021-09-24T04:36:42.42\",\r\n \"updatedAt\": \"2021-09-24T04:36:42.56\",\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-4305/providers/Microsoft.EventHub/namespaces/sdk-NS-926/eventhubs/sdk-eventhub-3875_7\",\r\n \"name\": \"sdk-eventhub-3875_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\": \"2021-09-24T04:36:44.61\",\r\n \"updatedAt\": \"2021-09-24T04:36:44.773\",\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-4305/providers/Microsoft.EventHub/namespaces/sdk-NS-926/eventhubs/sdk-eventhub-3875_8\",\r\n \"name\": \"sdk-eventhub-3875_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\": \"2021-09-24T04:36:47.127\",\r\n \"updatedAt\": \"2021-09-24T04:36:47.287\",\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-4305/providers/Microsoft.EventHub/namespaces/sdk-NS-926/eventhubs/sdk-eventhub-3875_9\",\r\n \"name\": \"sdk-eventhub-3875_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\": \"2021-09-24T04:36:49.343\",\r\n \"updatedAt\": \"2021-09-24T04:36:49.473\",\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-8174/providers/Microsoft.EventHub/namespaces/sdk-NS-6608/eventhubs/sdk-eventhub-9315_0\",\r\n \"name\": \"sdk-eventhub-9315_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\": \"2021-11-15T02:48:26.133\",\r\n \"updatedAt\": \"2021-11-15T02:48:26.43\",\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-8174/providers/Microsoft.EventHub/namespaces/sdk-NS-6608/eventhubs/sdk-eventhub-9315_1\",\r\n \"name\": \"sdk-eventhub-9315_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\": \"2021-11-15T02:48:28.83\",\r\n \"updatedAt\": \"2021-11-15T02:48:28.963\",\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-8174/providers/Microsoft.EventHub/namespaces/sdk-NS-6608/eventhubs/sdk-eventhub-9315_2\",\r\n \"name\": \"sdk-eventhub-9315_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\": \"2021-11-15T02:48:31.427\",\r\n \"updatedAt\": \"2021-11-15T02:48:31.57\",\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-8174/providers/Microsoft.EventHub/namespaces/sdk-NS-6608/eventhubs/sdk-eventhub-9315_3\",\r\n \"name\": \"sdk-eventhub-9315_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\": \"2021-11-15T02:48:33.94\",\r\n \"updatedAt\": \"2021-11-15T02:48:34.08\",\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-8174/providers/Microsoft.EventHub/namespaces/sdk-NS-6608/eventhubs/sdk-eventhub-9315_4\",\r\n \"name\": \"sdk-eventhub-9315_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\": \"2021-11-15T02:48:36.25\",\r\n \"updatedAt\": \"2021-11-15T02:48:36.407\",\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-8174/providers/Microsoft.EventHub/namespaces/sdk-NS-6608/eventhubs/sdk-eventhub-9315_5\",\r\n \"name\": \"sdk-eventhub-9315_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\": \"2021-11-15T02:48:39.1\",\r\n \"updatedAt\": \"2021-11-15T02:48:39.23\",\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-8174/providers/Microsoft.EventHub/namespaces/sdk-NS-6608/eventhubs/sdk-eventhub-9315_6\",\r\n \"name\": \"sdk-eventhub-9315_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\": \"2021-11-15T02:48:42.43\",\r\n \"updatedAt\": \"2021-11-15T02:48:42.613\",\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-8174/providers/Microsoft.EventHub/namespaces/sdk-NS-6608/eventhubs/sdk-eventhub-9315_7\",\r\n \"name\": \"sdk-eventhub-9315_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\": \"2021-11-15T02:48:45.027\",\r\n \"updatedAt\": \"2021-11-15T02:48:45.16\",\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-8174/providers/Microsoft.EventHub/namespaces/sdk-NS-6608/eventhubs/sdk-eventhub-9315_8\",\r\n \"name\": \"sdk-eventhub-9315_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\": \"2021-11-15T02:48:47.76\",\r\n \"updatedAt\": \"2021-11-15T02:48:47.887\",\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-8174/providers/Microsoft.EventHub/namespaces/sdk-NS-6608/eventhubs/sdk-eventhub-9315_9\",\r\n \"name\": \"sdk-eventhub-9315_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\": \"2021-11-15T02:48:50.26\",\r\n \"updatedAt\": \"2021-11-15T02:48:50.393\",\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/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-4305/providers/Microsoft.EventHub/namespaces/sdk-NS-926/eventhubs?api-version=2021-06-01-preview&$skip=5&$top=5", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNDMwNS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTkyNi9ldmVudGh1YnM/YXBpLXZlcnNpb249MjAyMS0wNi0wMS1wcmV2aWV3JiRza2lwPTUmJHRvcD01", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8174/providers/Microsoft.EventHub/namespaces/sdk-NS-6608/eventhubs?api-version=2021-11-01&$skip=5&$top=5", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItODE3NC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTY2MDgvZXZlbnRodWJzP2FwaS12ZXJzaW9uPTIwMjEtMTEtMDEmJHNraXA9NSYkdG9wPTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "37cfcdbb-b32d-4773-9cf0-93817404e5a1" + "b442985b-eca7-417f-97e2-fb88c1acde0a" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:48:52 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-inline-count": [ "" ], "x-ms-request-id": [ - "cabbbadf-ba29-440b-af51-70bebabda592_M0SN1_M0SN1" + "b5bc259e-d773-495e-af62-122b50debb62_M3SN1_M3SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ "11996" ], "x-ms-correlation-request-id": [ - "3efaa402-5543-4ef5-bfca-ab5f8966364d" + "ed29ac90-78ee-4e9a-8ac0-b8e5a66a5cac" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T043651Z:3efaa402-5543-4ef5-bfca-ab5f8966364d" + "SOUTHINDIA:20211115T024852Z:ed29ac90-78ee-4e9a-8ac0-b8e5a66a5cac" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1175,11 +1178,8 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:36:50 GMT" - ], "Content-Length": [ - "2371" + "2374" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1188,26 +1188,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-4305/providers/Microsoft.EventHub/namespaces/sdk-NS-926/eventhubs/sdk-eventhub-3875_5\",\r\n \"name\": \"sdk-eventhub-3875_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\": \"2021-09-24T04:36:39.91\",\r\n \"updatedAt\": \"2021-09-24T04:36:40.04\",\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-4305/providers/Microsoft.EventHub/namespaces/sdk-NS-926/eventhubs/sdk-eventhub-3875_6\",\r\n \"name\": \"sdk-eventhub-3875_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\": \"2021-09-24T04:36:42.42\",\r\n \"updatedAt\": \"2021-09-24T04:36:42.56\",\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-4305/providers/Microsoft.EventHub/namespaces/sdk-NS-926/eventhubs/sdk-eventhub-3875_7\",\r\n \"name\": \"sdk-eventhub-3875_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\": \"2021-09-24T04:36:44.61\",\r\n \"updatedAt\": \"2021-09-24T04:36:44.773\",\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-4305/providers/Microsoft.EventHub/namespaces/sdk-NS-926/eventhubs/sdk-eventhub-3875_8\",\r\n \"name\": \"sdk-eventhub-3875_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\": \"2021-09-24T04:36:47.127\",\r\n \"updatedAt\": \"2021-09-24T04:36:47.287\",\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-4305/providers/Microsoft.EventHub/namespaces/sdk-NS-926/eventhubs/sdk-eventhub-3875_9\",\r\n \"name\": \"sdk-eventhub-3875_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\": \"2021-09-24T04:36:49.343\",\r\n \"updatedAt\": \"2021-09-24T04:36:49.473\",\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-8174/providers/Microsoft.EventHub/namespaces/sdk-NS-6608/eventhubs/sdk-eventhub-9315_5\",\r\n \"name\": \"sdk-eventhub-9315_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\": \"2021-11-15T02:48:39.1\",\r\n \"updatedAt\": \"2021-11-15T02:48:39.23\",\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-8174/providers/Microsoft.EventHub/namespaces/sdk-NS-6608/eventhubs/sdk-eventhub-9315_6\",\r\n \"name\": \"sdk-eventhub-9315_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\": \"2021-11-15T02:48:42.43\",\r\n \"updatedAt\": \"2021-11-15T02:48:42.613\",\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-8174/providers/Microsoft.EventHub/namespaces/sdk-NS-6608/eventhubs/sdk-eventhub-9315_7\",\r\n \"name\": \"sdk-eventhub-9315_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\": \"2021-11-15T02:48:45.027\",\r\n \"updatedAt\": \"2021-11-15T02:48:45.16\",\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-8174/providers/Microsoft.EventHub/namespaces/sdk-NS-6608/eventhubs/sdk-eventhub-9315_8\",\r\n \"name\": \"sdk-eventhub-9315_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\": \"2021-11-15T02:48:47.76\",\r\n \"updatedAt\": \"2021-11-15T02:48:47.887\",\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-8174/providers/Microsoft.EventHub/namespaces/sdk-NS-6608/eventhubs/sdk-eventhub-9315_9\",\r\n \"name\": \"sdk-eventhub-9315_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\": \"2021-11-15T02:48:50.26\",\r\n \"updatedAt\": \"2021-11-15T02:48:50.393\",\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/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-4305/providers/Microsoft.EventHub/namespaces/sdk-NS-926/eventhubs/sdk-eventhub-3875_0/consumergroups/sdk-ConsumerGroup-9140_0?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNDMwNS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTkyNi9ldmVudGh1YnMvc2RrLWV2ZW50aHViLTM4NzVfMC9jb25zdW1lcmdyb3Vwcy9zZGstQ29uc3VtZXJHcm91cC05MTQwXzA/YXBpLXZlcnNpb249MjAyMS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8174/providers/Microsoft.EventHub/namespaces/sdk-NS-6608/eventhubs/sdk-eventhub-9315_0/consumergroups/sdk-ConsumerGroup-1217_0?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItODE3NC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTY2MDgvZXZlbnRodWJzL3Nkay1ldmVudGh1Yi05MzE1XzAvY29uc3VtZXJncm91cHMvc2RrLUNvbnN1bWVyR3JvdXAtMTIxN18wP2FwaS12ZXJzaW9uPTIwMjEtMTEtMDE=", "RequestMethod": "PUT", "RequestBody": "{}", "RequestHeaders": { "x-ms-client-request-id": [ - "47af3927-48bb-4a5c-be03-9a317aef5209" + "86c07ec9-ea36-4f28-a31c-9087dc6f1b6b" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1220,27 +1220,30 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:48:53 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "860dbe12-a820-48c2-bfc5-1cc309747a2b_M0SN1_M0SN1" + "6726fc99-cb40-4315-8c28-687cfbdf38cd_M3SN1_M3SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1189" + "1188" ], "x-ms-correlation-request-id": [ - "24aba235-eb77-4af2-8eba-ad20aadd9053" + "eff2a8a3-40aa-46fc-82b1-b91f40d44785" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T043653Z:24aba235-eb77-4af2-8eba-ad20aadd9053" + "SOUTHINDIA:20211115T024854Z:eff2a8a3-40aa-46fc-82b1-b91f40d44785" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1248,11 +1251,8 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:36:52 GMT" - ], "Content-Length": [ - "445" + "446" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1261,26 +1261,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-4305/providers/Microsoft.EventHub/namespaces/sdk-NS-926/eventhubs/sdk-eventhub-3875_0/consumergroups/sdk-ConsumerGroup-9140_0\",\r\n \"name\": \"sdk-ConsumerGroup-9140_0\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs/ConsumerGroups\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"createdAt\": \"2021-09-24T04:36:52.9133486Z\",\r\n \"updatedAt\": \"2021-09-24T04:36:52.9133486Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8174/providers/Microsoft.EventHub/namespaces/sdk-NS-6608/eventhubs/sdk-eventhub-9315_0/consumergroups/sdk-ConsumerGroup-1217_0\",\r\n \"name\": \"sdk-ConsumerGroup-1217_0\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs/ConsumerGroups\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"createdAt\": \"2021-11-15T02:48:54.2594156Z\",\r\n \"updatedAt\": \"2021-11-15T02:48:54.2594156Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-4305/providers/Microsoft.EventHub/namespaces/sdk-NS-926/eventhubs/sdk-eventhub-3875_0/consumergroups/sdk-ConsumerGroup-9140_1?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNDMwNS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTkyNi9ldmVudGh1YnMvc2RrLWV2ZW50aHViLTM4NzVfMC9jb25zdW1lcmdyb3Vwcy9zZGstQ29uc3VtZXJHcm91cC05MTQwXzE/YXBpLXZlcnNpb249MjAyMS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8174/providers/Microsoft.EventHub/namespaces/sdk-NS-6608/eventhubs/sdk-eventhub-9315_0/consumergroups/sdk-ConsumerGroup-1217_1?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItODE3NC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTY2MDgvZXZlbnRodWJzL3Nkay1ldmVudGh1Yi05MzE1XzAvY29uc3VtZXJncm91cHMvc2RrLUNvbnN1bWVyR3JvdXAtMTIxN18xP2FwaS12ZXJzaW9uPTIwMjEtMTEtMDE=", "RequestMethod": "PUT", "RequestBody": "{}", "RequestHeaders": { "x-ms-client-request-id": [ - "9ea04452-87a6-46ef-98ad-734ec872572c" + "9dbaa684-52d6-4ac5-bd41-4bc7c33dd683" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1293,27 +1293,30 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:48:55 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "ed348473-9790-4f7b-aa2d-102ec1af067d_M0SN1_M0SN1" + "4bb14ef1-ebcb-4145-ba76-21dde6b4c173_M3SN1_M3SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1188" + "1187" ], "x-ms-correlation-request-id": [ - "71d6bf48-2614-4a78-8dcf-325250692bce" + "5b76ab6f-a08b-472b-a941-1dc0e65f717e" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T043654Z:71d6bf48-2614-4a78-8dcf-325250692bce" + "SOUTHINDIA:20211115T024856Z:5b76ab6f-a08b-472b-a941-1dc0e65f717e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1321,11 +1324,8 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:36:54 GMT" - ], "Content-Length": [ - "445" + "446" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1334,26 +1334,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-4305/providers/Microsoft.EventHub/namespaces/sdk-NS-926/eventhubs/sdk-eventhub-3875_0/consumergroups/sdk-ConsumerGroup-9140_1\",\r\n \"name\": \"sdk-ConsumerGroup-9140_1\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs/ConsumerGroups\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"createdAt\": \"2021-09-24T04:36:54.6481305Z\",\r\n \"updatedAt\": \"2021-09-24T04:36:54.6481305Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8174/providers/Microsoft.EventHub/namespaces/sdk-NS-6608/eventhubs/sdk-eventhub-9315_0/consumergroups/sdk-ConsumerGroup-1217_1\",\r\n \"name\": \"sdk-ConsumerGroup-1217_1\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs/ConsumerGroups\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"createdAt\": \"2021-11-15T02:48:56.2764018Z\",\r\n \"updatedAt\": \"2021-11-15T02:48:56.2764018Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-4305/providers/Microsoft.EventHub/namespaces/sdk-NS-926/eventhubs/sdk-eventhub-3875_0/consumergroups/sdk-ConsumerGroup-9140_2?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNDMwNS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTkyNi9ldmVudGh1YnMvc2RrLWV2ZW50aHViLTM4NzVfMC9jb25zdW1lcmdyb3Vwcy9zZGstQ29uc3VtZXJHcm91cC05MTQwXzI/YXBpLXZlcnNpb249MjAyMS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8174/providers/Microsoft.EventHub/namespaces/sdk-NS-6608/eventhubs/sdk-eventhub-9315_0/consumergroups/sdk-ConsumerGroup-1217_2?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItODE3NC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTY2MDgvZXZlbnRodWJzL3Nkay1ldmVudGh1Yi05MzE1XzAvY29uc3VtZXJncm91cHMvc2RrLUNvbnN1bWVyR3JvdXAtMTIxN18yP2FwaS12ZXJzaW9uPTIwMjEtMTEtMDE=", "RequestMethod": "PUT", "RequestBody": "{}", "RequestHeaders": { "x-ms-client-request-id": [ - "1bc1d22d-a899-4cfa-ae17-0c7fd8070a01" + "2c4147e2-91dc-4940-bd21-7aa19c8ac292" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1366,27 +1366,30 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:48:57 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "294f7867-cc7a-4f56-88c4-82a5e00d213c_M0SN1_M0SN1" + "24df5789-90cc-4983-b6a4-acbcff18fb0d_M3SN1_M3SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1187" + "1186" ], "x-ms-correlation-request-id": [ - "ad7f5d36-e9e3-4440-93c3-ac7c18f81398" + "889ea14a-f5f2-4ff0-a635-d9d16145e0d6" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T043656Z:ad7f5d36-e9e3-4440-93c3-ac7c18f81398" + "SOUTHINDIA:20211115T024858Z:889ea14a-f5f2-4ff0-a635-d9d16145e0d6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1394,11 +1397,8 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:36:55 GMT" - ], "Content-Length": [ - "445" + "446" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1407,26 +1407,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-4305/providers/Microsoft.EventHub/namespaces/sdk-NS-926/eventhubs/sdk-eventhub-3875_0/consumergroups/sdk-ConsumerGroup-9140_2\",\r\n \"name\": \"sdk-ConsumerGroup-9140_2\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs/ConsumerGroups\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"createdAt\": \"2021-09-24T04:36:56.2887943Z\",\r\n \"updatedAt\": \"2021-09-24T04:36:56.2887943Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8174/providers/Microsoft.EventHub/namespaces/sdk-NS-6608/eventhubs/sdk-eventhub-9315_0/consumergroups/sdk-ConsumerGroup-1217_2\",\r\n \"name\": \"sdk-ConsumerGroup-1217_2\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs/ConsumerGroups\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"createdAt\": \"2021-11-15T02:48:58.1046277Z\",\r\n \"updatedAt\": \"2021-11-15T02:48:58.1046277Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-4305/providers/Microsoft.EventHub/namespaces/sdk-NS-926/eventhubs/sdk-eventhub-3875_0/consumergroups/sdk-ConsumerGroup-9140_3?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNDMwNS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTkyNi9ldmVudGh1YnMvc2RrLWV2ZW50aHViLTM4NzVfMC9jb25zdW1lcmdyb3Vwcy9zZGstQ29uc3VtZXJHcm91cC05MTQwXzM/YXBpLXZlcnNpb249MjAyMS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8174/providers/Microsoft.EventHub/namespaces/sdk-NS-6608/eventhubs/sdk-eventhub-9315_0/consumergroups/sdk-ConsumerGroup-1217_3?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItODE3NC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTY2MDgvZXZlbnRodWJzL3Nkay1ldmVudGh1Yi05MzE1XzAvY29uc3VtZXJncm91cHMvc2RrLUNvbnN1bWVyR3JvdXAtMTIxN18zP2FwaS12ZXJzaW9uPTIwMjEtMTEtMDE=", "RequestMethod": "PUT", "RequestBody": "{}", "RequestHeaders": { "x-ms-client-request-id": [ - "28040620-6215-4e43-b09a-3dd45cc060e7" + "c3b1b93e-6711-45a1-a894-3c1210a057db" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1439,27 +1439,30 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:48:59 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "fe3e35bd-58bd-46b0-beaa-2ecb086b7c91_M0SN1_M0SN1" + "4fbb0dc2-d068-47ab-ae44-4fdc3b9a34f9_M3SN1_M3SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1186" + "1185" ], "x-ms-correlation-request-id": [ - "ca60a374-a44f-4c5a-9cc0-841aa8bb0723" + "8ff6e988-ac10-497b-8dfe-8c46298502f7" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T043658Z:ca60a374-a44f-4c5a-9cc0-841aa8bb0723" + "SOUTHINDIA:20211115T024900Z:8ff6e988-ac10-497b-8dfe-8c46298502f7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1467,11 +1470,8 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:36:57 GMT" - ], "Content-Length": [ - "445" + "446" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1480,26 +1480,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-4305/providers/Microsoft.EventHub/namespaces/sdk-NS-926/eventhubs/sdk-eventhub-3875_0/consumergroups/sdk-ConsumerGroup-9140_3\",\r\n \"name\": \"sdk-ConsumerGroup-9140_3\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs/ConsumerGroups\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"createdAt\": \"2021-09-24T04:36:58.0991492Z\",\r\n \"updatedAt\": \"2021-09-24T04:36:58.0991492Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8174/providers/Microsoft.EventHub/namespaces/sdk-NS-6608/eventhubs/sdk-eventhub-9315_0/consumergroups/sdk-ConsumerGroup-1217_3\",\r\n \"name\": \"sdk-ConsumerGroup-1217_3\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs/ConsumerGroups\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"createdAt\": \"2021-11-15T02:48:59.9639983Z\",\r\n \"updatedAt\": \"2021-11-15T02:48:59.9639983Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-4305/providers/Microsoft.EventHub/namespaces/sdk-NS-926/eventhubs/sdk-eventhub-3875_0/consumergroups/sdk-ConsumerGroup-9140_4?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNDMwNS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTkyNi9ldmVudGh1YnMvc2RrLWV2ZW50aHViLTM4NzVfMC9jb25zdW1lcmdyb3Vwcy9zZGstQ29uc3VtZXJHcm91cC05MTQwXzQ/YXBpLXZlcnNpb249MjAyMS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8174/providers/Microsoft.EventHub/namespaces/sdk-NS-6608/eventhubs/sdk-eventhub-9315_0/consumergroups/sdk-ConsumerGroup-1217_4?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItODE3NC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTY2MDgvZXZlbnRodWJzL3Nkay1ldmVudGh1Yi05MzE1XzAvY29uc3VtZXJncm91cHMvc2RrLUNvbnN1bWVyR3JvdXAtMTIxN180P2FwaS12ZXJzaW9uPTIwMjEtMTEtMDE=", "RequestMethod": "PUT", "RequestBody": "{}", "RequestHeaders": { "x-ms-client-request-id": [ - "c0a64a7f-f1a1-4c1a-acc8-5809fee18404" + "e02d5cab-9ff4-4dee-ace2-f115610cbbca" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1512,27 +1512,30 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:49:01 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "2471876b-41e5-46eb-94e4-553ca92f98e6_M0SN1_M0SN1" + "ebd6d3b2-84ae-4e0a-836c-7c4dac1e27f5_M3SN1_M3SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1185" + "1184" ], "x-ms-correlation-request-id": [ - "db8524f5-2b78-4bfd-8901-8ee26a64d29f" + "5d92ea36-b3f4-4039-8854-956c651a8fa5" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T043700Z:db8524f5-2b78-4bfd-8901-8ee26a64d29f" + "SOUTHINDIA:20211115T024902Z:5d92ea36-b3f4-4039-8854-956c651a8fa5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1540,11 +1543,8 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:36:59 GMT" - ], "Content-Length": [ - "443" + "444" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1553,26 +1553,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-4305/providers/Microsoft.EventHub/namespaces/sdk-NS-926/eventhubs/sdk-eventhub-3875_0/consumergroups/sdk-ConsumerGroup-9140_4\",\r\n \"name\": \"sdk-ConsumerGroup-9140_4\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs/ConsumerGroups\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"createdAt\": \"2021-09-24T04:36:59.864832Z\",\r\n \"updatedAt\": \"2021-09-24T04:36:59.864832Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8174/providers/Microsoft.EventHub/namespaces/sdk-NS-6608/eventhubs/sdk-eventhub-9315_0/consumergroups/sdk-ConsumerGroup-1217_4\",\r\n \"name\": \"sdk-ConsumerGroup-1217_4\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs/ConsumerGroups\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"createdAt\": \"2021-11-15T02:49:01.886525Z\",\r\n \"updatedAt\": \"2021-11-15T02:49:01.886525Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-4305/providers/Microsoft.EventHub/namespaces/sdk-NS-926/eventhubs/sdk-eventhub-3875_0/consumergroups/sdk-ConsumerGroup-9140_5?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNDMwNS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTkyNi9ldmVudGh1YnMvc2RrLWV2ZW50aHViLTM4NzVfMC9jb25zdW1lcmdyb3Vwcy9zZGstQ29uc3VtZXJHcm91cC05MTQwXzU/YXBpLXZlcnNpb249MjAyMS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8174/providers/Microsoft.EventHub/namespaces/sdk-NS-6608/eventhubs/sdk-eventhub-9315_0/consumergroups/sdk-ConsumerGroup-1217_5?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItODE3NC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTY2MDgvZXZlbnRodWJzL3Nkay1ldmVudGh1Yi05MzE1XzAvY29uc3VtZXJncm91cHMvc2RrLUNvbnN1bWVyR3JvdXAtMTIxN181P2FwaS12ZXJzaW9uPTIwMjEtMTEtMDE=", "RequestMethod": "PUT", "RequestBody": "{}", "RequestHeaders": { "x-ms-client-request-id": [ - "fe3b8894-1ff9-40a5-93ef-f941382c579d" + "36db4aff-17e8-45ab-b22a-943f943df1be" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1585,27 +1585,30 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:49:03 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "3aa7351c-ce13-4b61-8a19-718f44765639_M0SN1_M0SN1" + "0426e27f-37db-4328-8c83-7fcadb9fc963_M3SN1_M3SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1184" + "1183" ], "x-ms-correlation-request-id": [ - "ff6b2661-9377-4ef9-9abe-9adca5b8c6a4" + "e3c6ab08-5525-4184-9caf-bd0492afba76" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T043701Z:ff6b2661-9377-4ef9-9abe-9adca5b8c6a4" + "SOUTHINDIA:20211115T024904Z:e3c6ab08-5525-4184-9caf-bd0492afba76" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1613,11 +1616,8 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:37:01 GMT" - ], "Content-Length": [ - "443" + "446" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1626,26 +1626,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-4305/providers/Microsoft.EventHub/namespaces/sdk-NS-926/eventhubs/sdk-eventhub-3875_0/consumergroups/sdk-ConsumerGroup-9140_5\",\r\n \"name\": \"sdk-ConsumerGroup-9140_5\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs/ConsumerGroups\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"createdAt\": \"2021-09-24T04:37:01.574653Z\",\r\n \"updatedAt\": \"2021-09-24T04:37:01.574653Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8174/providers/Microsoft.EventHub/namespaces/sdk-NS-6608/eventhubs/sdk-eventhub-9315_0/consumergroups/sdk-ConsumerGroup-1217_5\",\r\n \"name\": \"sdk-ConsumerGroup-1217_5\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs/ConsumerGroups\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"createdAt\": \"2021-11-15T02:49:04.6273787Z\",\r\n \"updatedAt\": \"2021-11-15T02:49:04.6273787Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-4305/providers/Microsoft.EventHub/namespaces/sdk-NS-926/eventhubs/sdk-eventhub-3875_0/consumergroups/sdk-ConsumerGroup-9140_6?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNDMwNS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTkyNi9ldmVudGh1YnMvc2RrLWV2ZW50aHViLTM4NzVfMC9jb25zdW1lcmdyb3Vwcy9zZGstQ29uc3VtZXJHcm91cC05MTQwXzY/YXBpLXZlcnNpb249MjAyMS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8174/providers/Microsoft.EventHub/namespaces/sdk-NS-6608/eventhubs/sdk-eventhub-9315_0/consumergroups/sdk-ConsumerGroup-1217_6?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItODE3NC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTY2MDgvZXZlbnRodWJzL3Nkay1ldmVudGh1Yi05MzE1XzAvY29uc3VtZXJncm91cHMvc2RrLUNvbnN1bWVyR3JvdXAtMTIxN182P2FwaS12ZXJzaW9uPTIwMjEtMTEtMDE=", "RequestMethod": "PUT", "RequestBody": "{}", "RequestHeaders": { "x-ms-client-request-id": [ - "0ef9880d-d4e5-4b77-99da-4f436d7f0782" + "4d46a028-ef66-440a-8e4f-9843b4dd879d" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1658,27 +1658,30 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:49:05 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "fb144513-10b1-4501-a4a9-2c33f1d6fa66_M0SN1_M0SN1" + "9ab9dd0d-ac6f-4166-b75b-a29ce43d3e4b_M3SN1_M3SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1183" + "1182" ], "x-ms-correlation-request-id": [ - "7a6bb3c3-85b0-4ec1-849d-c270dfa55701" + "104bdc48-9df6-497c-85b5-31dc96711d96" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T043703Z:7a6bb3c3-85b0-4ec1-849d-c270dfa55701" + "SOUTHINDIA:20211115T024906Z:104bdc48-9df6-497c-85b5-31dc96711d96" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1686,11 +1689,8 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:37:02 GMT" - ], "Content-Length": [ - "445" + "446" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1699,26 +1699,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-4305/providers/Microsoft.EventHub/namespaces/sdk-NS-926/eventhubs/sdk-eventhub-3875_0/consumergroups/sdk-ConsumerGroup-9140_6\",\r\n \"name\": \"sdk-ConsumerGroup-9140_6\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs/ConsumerGroups\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"createdAt\": \"2021-09-24T04:37:03.3246829Z\",\r\n \"updatedAt\": \"2021-09-24T04:37:03.3246829Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8174/providers/Microsoft.EventHub/namespaces/sdk-NS-6608/eventhubs/sdk-eventhub-9315_0/consumergroups/sdk-ConsumerGroup-1217_6\",\r\n \"name\": \"sdk-ConsumerGroup-1217_6\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs/ConsumerGroups\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"createdAt\": \"2021-11-15T02:49:06.5821195Z\",\r\n \"updatedAt\": \"2021-11-15T02:49:06.5821195Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-4305/providers/Microsoft.EventHub/namespaces/sdk-NS-926/eventhubs/sdk-eventhub-3875_0/consumergroups/sdk-ConsumerGroup-9140_7?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNDMwNS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTkyNi9ldmVudGh1YnMvc2RrLWV2ZW50aHViLTM4NzVfMC9jb25zdW1lcmdyb3Vwcy9zZGstQ29uc3VtZXJHcm91cC05MTQwXzc/YXBpLXZlcnNpb249MjAyMS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8174/providers/Microsoft.EventHub/namespaces/sdk-NS-6608/eventhubs/sdk-eventhub-9315_0/consumergroups/sdk-ConsumerGroup-1217_7?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItODE3NC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTY2MDgvZXZlbnRodWJzL3Nkay1ldmVudGh1Yi05MzE1XzAvY29uc3VtZXJncm91cHMvc2RrLUNvbnN1bWVyR3JvdXAtMTIxN183P2FwaS12ZXJzaW9uPTIwMjEtMTEtMDE=", "RequestMethod": "PUT", "RequestBody": "{}", "RequestHeaders": { "x-ms-client-request-id": [ - "5ad6061e-dcf7-4c0a-8faa-fc4849c910a6" + "85b5ece5-0c7b-472e-9c24-a5f3e2f78ae9" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1731,27 +1731,30 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:49:07 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "e36fc78c-6ed7-4401-9a1e-ffece12589f2_M0SN1_M0SN1" + "202b6498-7bd6-4d1e-b0ba-99724fcd1d05_M3SN1_M3SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1182" + "1181" ], "x-ms-correlation-request-id": [ - "a70b744c-2d33-4167-baba-fc08ac0d1254" + "f4d85a7f-1230-4951-8315-883d49a0230a" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T043705Z:a70b744c-2d33-4167-baba-fc08ac0d1254" + "SOUTHINDIA:20211115T024908Z:f4d85a7f-1230-4951-8315-883d49a0230a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1759,11 +1762,8 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:37:04 GMT" - ], "Content-Length": [ - "445" + "446" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1772,26 +1772,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-4305/providers/Microsoft.EventHub/namespaces/sdk-NS-926/eventhubs/sdk-eventhub-3875_0/consumergroups/sdk-ConsumerGroup-9140_7\",\r\n \"name\": \"sdk-ConsumerGroup-9140_7\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs/ConsumerGroups\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"createdAt\": \"2021-09-24T04:37:05.0434569Z\",\r\n \"updatedAt\": \"2021-09-24T04:37:05.0434569Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8174/providers/Microsoft.EventHub/namespaces/sdk-NS-6608/eventhubs/sdk-eventhub-9315_0/consumergroups/sdk-ConsumerGroup-1217_7\",\r\n \"name\": \"sdk-ConsumerGroup-1217_7\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs/ConsumerGroups\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"createdAt\": \"2021-11-15T02:49:08.4727683Z\",\r\n \"updatedAt\": \"2021-11-15T02:49:08.4727683Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-4305/providers/Microsoft.EventHub/namespaces/sdk-NS-926/eventhubs/sdk-eventhub-3875_0/consumergroups/sdk-ConsumerGroup-9140_8?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNDMwNS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTkyNi9ldmVudGh1YnMvc2RrLWV2ZW50aHViLTM4NzVfMC9jb25zdW1lcmdyb3Vwcy9zZGstQ29uc3VtZXJHcm91cC05MTQwXzg/YXBpLXZlcnNpb249MjAyMS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8174/providers/Microsoft.EventHub/namespaces/sdk-NS-6608/eventhubs/sdk-eventhub-9315_0/consumergroups/sdk-ConsumerGroup-1217_8?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItODE3NC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTY2MDgvZXZlbnRodWJzL3Nkay1ldmVudGh1Yi05MzE1XzAvY29uc3VtZXJncm91cHMvc2RrLUNvbnN1bWVyR3JvdXAtMTIxN184P2FwaS12ZXJzaW9uPTIwMjEtMTEtMDE=", "RequestMethod": "PUT", "RequestBody": "{}", "RequestHeaders": { "x-ms-client-request-id": [ - "8037cb1f-5e94-4b81-ad39-36a90906301c" + "19159027-fad5-4030-abfe-825125ef538d" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1804,27 +1804,30 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:49:11 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "b75f53bd-4f67-41f7-883b-5b6b648b1bec_M0SN1_M0SN1" + "53bd4166-c58a-47c3-a2b4-a5a5be04b3a0_M1CH3_M1CH3" ], "Server-SB": [ - "Service-Bus-Resource-Provider/SN1" - ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" + "Service-Bus-Resource-Provider/CH3" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1181" + "1180" ], "x-ms-correlation-request-id": [ - "9d16c784-ae1f-4493-bf41-28353168f1d4" + "7b501638-31c2-4d75-a7b9-6f8f6bbfc018" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T043707Z:9d16c784-ae1f-4493-bf41-28353168f1d4" + "SOUTHINDIA:20211115T024911Z:7b501638-31c2-4d75-a7b9-6f8f6bbfc018" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1832,11 +1835,8 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:37:06 GMT" - ], "Content-Length": [ - "445" + "446" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1845,26 +1845,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-4305/providers/Microsoft.EventHub/namespaces/sdk-NS-926/eventhubs/sdk-eventhub-3875_0/consumergroups/sdk-ConsumerGroup-9140_8\",\r\n \"name\": \"sdk-ConsumerGroup-9140_8\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs/ConsumerGroups\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"createdAt\": \"2021-09-24T04:37:06.8715666Z\",\r\n \"updatedAt\": \"2021-09-24T04:37:06.8715666Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8174/providers/Microsoft.EventHub/namespaces/sdk-NS-6608/eventhubs/sdk-eventhub-9315_0/consumergroups/sdk-ConsumerGroup-1217_8\",\r\n \"name\": \"sdk-ConsumerGroup-1217_8\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs/ConsumerGroups\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"createdAt\": \"2021-11-15T02:49:11.3125314Z\",\r\n \"updatedAt\": \"2021-11-15T02:49:11.3125314Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-4305/providers/Microsoft.EventHub/namespaces/sdk-NS-926/eventhubs/sdk-eventhub-3875_0/consumergroups/sdk-ConsumerGroup-9140_9?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNDMwNS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTkyNi9ldmVudGh1YnMvc2RrLWV2ZW50aHViLTM4NzVfMC9jb25zdW1lcmdyb3Vwcy9zZGstQ29uc3VtZXJHcm91cC05MTQwXzk/YXBpLXZlcnNpb249MjAyMS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8174/providers/Microsoft.EventHub/namespaces/sdk-NS-6608/eventhubs/sdk-eventhub-9315_0/consumergroups/sdk-ConsumerGroup-1217_9?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItODE3NC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTY2MDgvZXZlbnRodWJzL3Nkay1ldmVudGh1Yi05MzE1XzAvY29uc3VtZXJncm91cHMvc2RrLUNvbnN1bWVyR3JvdXAtMTIxN185P2FwaS12ZXJzaW9uPTIwMjEtMTEtMDE=", "RequestMethod": "PUT", "RequestBody": "{}", "RequestHeaders": { "x-ms-client-request-id": [ - "82a52635-4d7a-4f40-8197-c92a3f074fa9" + "52431b3a-7e66-40e6-afeb-fea38d437a6e" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1877,27 +1877,30 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:49:13 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "bbbeffc0-52c6-4070-9308-4d73f25cf640_M0SN1_M0SN1" + "3f0de406-e10e-4944-b3ff-115d02e8ae5f_M3SN1_M3SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1180" + "1179" ], "x-ms-correlation-request-id": [ - "af0e1257-6abb-4035-98ab-1f9b87ce561a" + "feb9df07-52ad-4428-a52f-c1ef8a6aa1c5" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T043708Z:af0e1257-6abb-4035-98ab-1f9b87ce561a" + "SOUTHINDIA:20211115T024913Z:feb9df07-52ad-4428-a52f-c1ef8a6aa1c5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1905,11 +1908,8 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:37:07 GMT" - ], "Content-Length": [ - "445" + "446" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1918,56 +1918,59 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-4305/providers/Microsoft.EventHub/namespaces/sdk-NS-926/eventhubs/sdk-eventhub-3875_0/consumergroups/sdk-ConsumerGroup-9140_9\",\r\n \"name\": \"sdk-ConsumerGroup-9140_9\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs/ConsumerGroups\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"createdAt\": \"2021-09-24T04:37:08.5121959Z\",\r\n \"updatedAt\": \"2021-09-24T04:37:08.5121959Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8174/providers/Microsoft.EventHub/namespaces/sdk-NS-6608/eventhubs/sdk-eventhub-9315_0/consumergroups/sdk-ConsumerGroup-1217_9\",\r\n \"name\": \"sdk-ConsumerGroup-1217_9\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs/ConsumerGroups\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"createdAt\": \"2021-11-15T02:49:13.1759197Z\",\r\n \"updatedAt\": \"2021-11-15T02:49:13.1759197Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-4305/providers/Microsoft.EventHub/namespaces/sdk-NS-926/eventhubs/sdk-eventhub-3875_0/consumergroups?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNDMwNS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTkyNi9ldmVudGh1YnMvc2RrLWV2ZW50aHViLTM4NzVfMC9jb25zdW1lcmdyb3Vwcz9hcGktdmVyc2lvbj0yMDIxLTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8174/providers/Microsoft.EventHub/namespaces/sdk-NS-6608/eventhubs/sdk-eventhub-9315_0/consumergroups?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItODE3NC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTY2MDgvZXZlbnRodWJzL3Nkay1ldmVudGh1Yi05MzE1XzAvY29uc3VtZXJncm91cHM/YXBpLXZlcnNpb249MjAyMS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c161f918-2ad5-4a15-846b-bc86738438f5" + "211c762e-2eb0-4643-9dcb-ddbd923bee5b" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:49:13 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-inline-count": [ "" ], "x-ms-request-id": [ - "6a0dacb9-f4f3-445d-ba95-eb1390ca587e_M0SN1_M0SN1" + "57f59b65-a825-42dc-9238-f65d6976c05d_M3SN1_M3SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ "11995" ], "x-ms-correlation-request-id": [ - "8ef399db-edf3-4b1b-8089-c61473b5f3a9" + "7dd8b3ac-0cb3-4070-b236-e8944a9c41cd" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T043709Z:8ef399db-edf3-4b1b-8089-c61473b5f3a9" + "SOUTHINDIA:20211115T024914Z:7dd8b3ac-0cb3-4070-b236-e8944a9c41cd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1975,11 +1978,8 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:37:08 GMT" - ], "Content-Length": [ - "4795" + "4806" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1988,56 +1988,59 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-4305/providers/Microsoft.EventHub/namespaces/sdk-NS-926/eventhubs/sdk-eventhub-3875_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\": \"2021-09-24T04:36:27.11Z\",\r\n \"updatedAt\": \"2021-09-24T04:36:27.11Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-4305/providers/Microsoft.EventHub/namespaces/sdk-NS-926/eventhubs/sdk-eventhub-3875_0/consumergroups/sdk-consumergroup-9140_0\",\r\n \"name\": \"sdk-consumergroup-9140_0\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs/ConsumerGroups\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"createdAt\": \"2021-09-24T04:36:52.913Z\",\r\n \"updatedAt\": \"2021-09-24T04:36:52.913Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-4305/providers/Microsoft.EventHub/namespaces/sdk-NS-926/eventhubs/sdk-eventhub-3875_0/consumergroups/sdk-consumergroup-9140_1\",\r\n \"name\": \"sdk-consumergroup-9140_1\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs/ConsumerGroups\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"createdAt\": \"2021-09-24T04:36:54.651Z\",\r\n \"updatedAt\": \"2021-09-24T04:36:54.651Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-4305/providers/Microsoft.EventHub/namespaces/sdk-NS-926/eventhubs/sdk-eventhub-3875_0/consumergroups/sdk-consumergroup-9140_2\",\r\n \"name\": \"sdk-consumergroup-9140_2\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs/ConsumerGroups\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"createdAt\": \"2021-09-24T04:36:56.293Z\",\r\n \"updatedAt\": \"2021-09-24T04:36:56.293Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-4305/providers/Microsoft.EventHub/namespaces/sdk-NS-926/eventhubs/sdk-eventhub-3875_0/consumergroups/sdk-consumergroup-9140_3\",\r\n \"name\": \"sdk-consumergroup-9140_3\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs/ConsumerGroups\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"createdAt\": \"2021-09-24T04:36:58.107Z\",\r\n \"updatedAt\": \"2021-09-24T04:36:58.107Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-4305/providers/Microsoft.EventHub/namespaces/sdk-NS-926/eventhubs/sdk-eventhub-3875_0/consumergroups/sdk-consumergroup-9140_4\",\r\n \"name\": \"sdk-consumergroup-9140_4\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs/ConsumerGroups\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"createdAt\": \"2021-09-24T04:36:59.889Z\",\r\n \"updatedAt\": \"2021-09-24T04:36:59.889Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-4305/providers/Microsoft.EventHub/namespaces/sdk-NS-926/eventhubs/sdk-eventhub-3875_0/consumergroups/sdk-consumergroup-9140_5\",\r\n \"name\": \"sdk-consumergroup-9140_5\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs/ConsumerGroups\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"createdAt\": \"2021-09-24T04:37:01.576Z\",\r\n \"updatedAt\": \"2021-09-24T04:37:01.576Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-4305/providers/Microsoft.EventHub/namespaces/sdk-NS-926/eventhubs/sdk-eventhub-3875_0/consumergroups/sdk-consumergroup-9140_6\",\r\n \"name\": \"sdk-consumergroup-9140_6\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs/ConsumerGroups\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"createdAt\": \"2021-09-24T04:37:03.326Z\",\r\n \"updatedAt\": \"2021-09-24T04:37:03.326Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-4305/providers/Microsoft.EventHub/namespaces/sdk-NS-926/eventhubs/sdk-eventhub-3875_0/consumergroups/sdk-consumergroup-9140_7\",\r\n \"name\": \"sdk-consumergroup-9140_7\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs/ConsumerGroups\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"createdAt\": \"2021-09-24T04:37:05.045Z\",\r\n \"updatedAt\": \"2021-09-24T04:37:05.045Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-4305/providers/Microsoft.EventHub/namespaces/sdk-NS-926/eventhubs/sdk-eventhub-3875_0/consumergroups/sdk-consumergroup-9140_8\",\r\n \"name\": \"sdk-consumergroup-9140_8\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs/ConsumerGroups\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"createdAt\": \"2021-09-24T04:37:06.873Z\",\r\n \"updatedAt\": \"2021-09-24T04:37:06.873Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-4305/providers/Microsoft.EventHub/namespaces/sdk-NS-926/eventhubs/sdk-eventhub-3875_0/consumergroups/sdk-consumergroup-9140_9\",\r\n \"name\": \"sdk-consumergroup-9140_9\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs/ConsumerGroups\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"createdAt\": \"2021-09-24T04:37:08.507Z\",\r\n \"updatedAt\": \"2021-09-24T04:37:08.507Z\"\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-8174/providers/Microsoft.EventHub/namespaces/sdk-NS-6608/eventhubs/sdk-eventhub-9315_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\": \"2021-11-15T02:48:26.147Z\",\r\n \"updatedAt\": \"2021-11-15T02:48:26.147Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8174/providers/Microsoft.EventHub/namespaces/sdk-NS-6608/eventhubs/sdk-eventhub-9315_0/consumergroups/sdk-consumergroup-1217_0\",\r\n \"name\": \"sdk-consumergroup-1217_0\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs/ConsumerGroups\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"createdAt\": \"2021-11-15T02:48:54.275Z\",\r\n \"updatedAt\": \"2021-11-15T02:48:54.275Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8174/providers/Microsoft.EventHub/namespaces/sdk-NS-6608/eventhubs/sdk-eventhub-9315_0/consumergroups/sdk-consumergroup-1217_1\",\r\n \"name\": \"sdk-consumergroup-1217_1\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs/ConsumerGroups\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"createdAt\": \"2021-11-15T02:48:56.275Z\",\r\n \"updatedAt\": \"2021-11-15T02:48:56.275Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8174/providers/Microsoft.EventHub/namespaces/sdk-NS-6608/eventhubs/sdk-eventhub-9315_0/consumergroups/sdk-consumergroup-1217_2\",\r\n \"name\": \"sdk-consumergroup-1217_2\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs/ConsumerGroups\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"createdAt\": \"2021-11-15T02:48:58.103Z\",\r\n \"updatedAt\": \"2021-11-15T02:48:58.103Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8174/providers/Microsoft.EventHub/namespaces/sdk-NS-6608/eventhubs/sdk-eventhub-9315_0/consumergroups/sdk-consumergroup-1217_3\",\r\n \"name\": \"sdk-consumergroup-1217_3\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs/ConsumerGroups\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"createdAt\": \"2021-11-15T02:48:59.964Z\",\r\n \"updatedAt\": \"2021-11-15T02:48:59.964Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8174/providers/Microsoft.EventHub/namespaces/sdk-NS-6608/eventhubs/sdk-eventhub-9315_0/consumergroups/sdk-consumergroup-1217_4\",\r\n \"name\": \"sdk-consumergroup-1217_4\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs/ConsumerGroups\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"createdAt\": \"2021-11-15T02:49:01.886Z\",\r\n \"updatedAt\": \"2021-11-15T02:49:01.886Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8174/providers/Microsoft.EventHub/namespaces/sdk-NS-6608/eventhubs/sdk-eventhub-9315_0/consumergroups/sdk-consumergroup-1217_5\",\r\n \"name\": \"sdk-consumergroup-1217_5\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs/ConsumerGroups\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"createdAt\": \"2021-11-15T02:49:04.637Z\",\r\n \"updatedAt\": \"2021-11-15T02:49:04.637Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8174/providers/Microsoft.EventHub/namespaces/sdk-NS-6608/eventhubs/sdk-eventhub-9315_0/consumergroups/sdk-consumergroup-1217_6\",\r\n \"name\": \"sdk-consumergroup-1217_6\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs/ConsumerGroups\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"createdAt\": \"2021-11-15T02:49:06.59Z\",\r\n \"updatedAt\": \"2021-11-15T02:49:06.59Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8174/providers/Microsoft.EventHub/namespaces/sdk-NS-6608/eventhubs/sdk-eventhub-9315_0/consumergroups/sdk-consumergroup-1217_7\",\r\n \"name\": \"sdk-consumergroup-1217_7\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs/ConsumerGroups\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"createdAt\": \"2021-11-15T02:49:08.481Z\",\r\n \"updatedAt\": \"2021-11-15T02:49:08.481Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8174/providers/Microsoft.EventHub/namespaces/sdk-NS-6608/eventhubs/sdk-eventhub-9315_0/consumergroups/sdk-consumergroup-1217_8\",\r\n \"name\": \"sdk-consumergroup-1217_8\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs/ConsumerGroups\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"createdAt\": \"2021-11-15T02:49:11.324Z\",\r\n \"updatedAt\": \"2021-11-15T02:49:11.324Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8174/providers/Microsoft.EventHub/namespaces/sdk-NS-6608/eventhubs/sdk-eventhub-9315_0/consumergroups/sdk-consumergroup-1217_9\",\r\n \"name\": \"sdk-consumergroup-1217_9\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs/ConsumerGroups\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"createdAt\": \"2021-11-15T02:49:13.184Z\",\r\n \"updatedAt\": \"2021-11-15T02:49:13.184Z\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-4305/providers/Microsoft.EventHub/namespaces/sdk-NS-926/eventhubs/sdk-eventhub-3875_0/consumergroups?api-version=2021-06-01-preview&$skip=5&$top=4", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNDMwNS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTkyNi9ldmVudGh1YnMvc2RrLWV2ZW50aHViLTM4NzVfMC9jb25zdW1lcmdyb3Vwcz9hcGktdmVyc2lvbj0yMDIxLTA2LTAxLXByZXZpZXcmJHNraXA9NSYkdG9wPTQ=", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8174/providers/Microsoft.EventHub/namespaces/sdk-NS-6608/eventhubs/sdk-eventhub-9315_0/consumergroups?api-version=2021-11-01&$skip=5&$top=4", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItODE3NC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTY2MDgvZXZlbnRodWJzL3Nkay1ldmVudGh1Yi05MzE1XzAvY29uc3VtZXJncm91cHM/YXBpLXZlcnNpb249MjAyMS0xMS0wMSYkc2tpcD01JiR0b3A9NA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5fe76688-e901-41a6-9a07-b4ef7c4d209e" + "708bb8e9-a8bd-4f76-abbf-4bd00aa43072" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:49:14 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-inline-count": [ "" ], "x-ms-request-id": [ - "0a02178f-7bd5-45e5-8e6b-aaa9736b5bce_M0SN1_M0SN1" + "47383c3b-b6b9-4761-bb11-3c90b4b4e007_M3SN1_M3SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ "11994" ], "x-ms-correlation-request-id": [ - "01899648-e3bc-4628-8c52-85b76fd18774" + "2beaf485-d4d1-4dba-8e03-55da5f357436" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T043709Z:01899648-e3bc-4628-8c52-85b76fd18774" + "SOUTHINDIA:20211115T024914Z:2beaf485-d4d1-4dba-8e03-55da5f357436" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2045,11 +2048,8 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:37:08 GMT" - ], "Content-Length": [ - "2035" + "2030" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2058,56 +2058,59 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-4305/providers/Microsoft.EventHub/namespaces/sdk-NS-926/eventhubs/sdk-eventhub-3875_0/consumergroups/sdk-consumergroup-9140_4\",\r\n \"name\": \"sdk-consumergroup-9140_4\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs/ConsumerGroups\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"createdAt\": \"2021-09-24T04:36:59.889Z\",\r\n \"updatedAt\": \"2021-09-24T04:36:59.889Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-4305/providers/Microsoft.EventHub/namespaces/sdk-NS-926/eventhubs/sdk-eventhub-3875_0/consumergroups/sdk-consumergroup-9140_5\",\r\n \"name\": \"sdk-consumergroup-9140_5\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs/ConsumerGroups\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"createdAt\": \"2021-09-24T04:37:01.576Z\",\r\n \"updatedAt\": \"2021-09-24T04:37:01.576Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-4305/providers/Microsoft.EventHub/namespaces/sdk-NS-926/eventhubs/sdk-eventhub-3875_0/consumergroups/sdk-consumergroup-9140_6\",\r\n \"name\": \"sdk-consumergroup-9140_6\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs/ConsumerGroups\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"createdAt\": \"2021-09-24T04:37:03.326Z\",\r\n \"updatedAt\": \"2021-09-24T04:37:03.326Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-4305/providers/Microsoft.EventHub/namespaces/sdk-NS-926/eventhubs/sdk-eventhub-3875_0/consumergroups/sdk-consumergroup-9140_7\",\r\n \"name\": \"sdk-consumergroup-9140_7\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs/ConsumerGroups\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"createdAt\": \"2021-09-24T04:37:05.045Z\",\r\n \"updatedAt\": \"2021-09-24T04:37:05.045Z\"\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-4305/providers/Microsoft.EventHub/namespaces/sdk-NS-926/eventhubs/sdk-eventhub-3875_0/consumergroups?api-version=2021-06-01-preview&$skip=9&$top=4\"\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8174/providers/Microsoft.EventHub/namespaces/sdk-NS-6608/eventhubs/sdk-eventhub-9315_0/consumergroups/sdk-consumergroup-1217_4\",\r\n \"name\": \"sdk-consumergroup-1217_4\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs/ConsumerGroups\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"createdAt\": \"2021-11-15T02:49:01.892Z\",\r\n \"updatedAt\": \"2021-11-15T02:49:01.892Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8174/providers/Microsoft.EventHub/namespaces/sdk-NS-6608/eventhubs/sdk-eventhub-9315_0/consumergroups/sdk-consumergroup-1217_5\",\r\n \"name\": \"sdk-consumergroup-1217_5\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs/ConsumerGroups\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"createdAt\": \"2021-11-15T02:49:04.642Z\",\r\n \"updatedAt\": \"2021-11-15T02:49:04.642Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8174/providers/Microsoft.EventHub/namespaces/sdk-NS-6608/eventhubs/sdk-eventhub-9315_0/consumergroups/sdk-consumergroup-1217_6\",\r\n \"name\": \"sdk-consumergroup-1217_6\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs/ConsumerGroups\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"createdAt\": \"2021-11-15T02:49:06.58Z\",\r\n \"updatedAt\": \"2021-11-15T02:49:06.58Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8174/providers/Microsoft.EventHub/namespaces/sdk-NS-6608/eventhubs/sdk-eventhub-9315_0/consumergroups/sdk-consumergroup-1217_7\",\r\n \"name\": \"sdk-consumergroup-1217_7\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs/ConsumerGroups\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"createdAt\": \"2021-11-15T02:49:08.486Z\",\r\n \"updatedAt\": \"2021-11-15T02:49:08.486Z\"\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8174/providers/Microsoft.EventHub/namespaces/sdk-NS-6608/eventhubs/sdk-eventhub-9315_0/consumergroups?api-version=2021-11-01&$skip=9&$top=4\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-4305/providers/Microsoft.EventHub/namespaces/sdk-NS-926?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNDMwNS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTkyNj9hcGktdmVyc2lvbj0yMDIxLTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8174/providers/Microsoft.EventHub/namespaces/sdk-NS-6608?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItODE3NC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTY2MDg/YXBpLXZlcnNpb249MjAyMS0xMS0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f309e992-d65c-41df-a00d-f9c8e484521b" + "464f320a-4443-4a68-ad90-6bdaf26499f2" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:49:21 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-4305/providers/Microsoft.EventHub/namespaces/sdk-NS-926/operationresults/sdk-NS-926?api-version=2021-06-01-preview" + "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8174/providers/Microsoft.EventHub/namespaces/sdk-NS-6608/operationresults/sdk-NS-6608?api-version=2021-11-01" + ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "bc3fdba4-79ad-470f-a093-01794b04f921_M0SN1_M0SN1" + "de45846b-9d8f-42f8-a14b-f99bf83b49fd_M3SN1_M3SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" + "14998" ], "x-ms-correlation-request-id": [ - "5134d3ee-ffcd-4f01-a350-6f5f3b2f32e6" + "4bef0b4c-dc8d-4833-8499-2cd316a22f1e" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T043716Z:5134d3ee-ffcd-4f01-a350-6f5f3b2f32e6" + "SOUTHINDIA:20211115T024921Z:4bef0b4c-dc8d-4833-8499-2cd316a22f1e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2115,57 +2118,57 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:37:15 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-4305/providers/Microsoft.EventHub/namespaces/sdk-NS-926/operationresults/sdk-NS-926?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNDMwNS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTkyNi9vcGVyYXRpb25yZXN1bHRzL3Nkay1OUy05MjY/YXBpLXZlcnNpb249MjAyMS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8174/providers/Microsoft.EventHub/namespaces/sdk-NS-6608/operationresults/sdk-NS-6608?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItODE3NC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTY2MDgvb3BlcmF0aW9ucmVzdWx0cy9zZGstTlMtNjYwOD9hcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:49:51 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "f9824c08-ab45-4b6d-98a1-5738b9480f50_M0SN1_M0SN1" + "a1e7bfd2-5ef6-44eb-92ab-42367ea38afb_M3SN1_M3SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ "11993" ], "x-ms-correlation-request-id": [ - "432cb1c2-862c-43e0-8d1a-df7700a17c86" + "dd6b1c36-abbd-45e9-8aca-fd97120da63a" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T043746Z:432cb1c2-862c-43e0-8d1a-df7700a17c86" + "SOUTHINDIA:20211115T024952Z:dd6b1c36-abbd-45e9-8aca-fd97120da63a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2173,57 +2176,57 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:37:46 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-4305/providers/Microsoft.EventHub/namespaces/sdk-NS-926/operationresults/sdk-NS-926?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNDMwNS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTkyNi9vcGVyYXRpb25yZXN1bHRzL3Nkay1OUy05MjY/YXBpLXZlcnNpb249MjAyMS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8174/providers/Microsoft.EventHub/namespaces/sdk-NS-6608/operationresults/sdk-NS-6608?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItODE3NC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTY2MDgvb3BlcmF0aW9ucmVzdWx0cy9zZGstTlMtNjYwOD9hcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:49:52 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "89df0712-6c60-446d-886a-e1b0e7b3d2f6_M0SN1_M0SN1" + "356b2b09-5600-4c86-a646-0c39d03075bd_M3SN1_M3SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ "11992" ], "x-ms-correlation-request-id": [ - "969ded36-a71a-4ba5-9030-7306161159d9" + "295de63b-4902-4b86-b9f9-765f261fb0cb" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T043746Z:969ded36-a71a-4ba5-9030-7306161159d9" + "SOUTHINDIA:20211115T024952Z:295de63b-4902-4b86-b9f9-765f261fb0cb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2231,26 +2234,86 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:37:46 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/Default-EventHub-8174?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlZ3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItODE3ND9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f6fb1f27-e701-4115-b166-ada3794d945f" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 15 Nov 2021 02:49:54 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1ERUZBVUxUOjJERVZFTlRIVUI6MkQ4MTc0LUFVU1RSQUxJQUVBU1QiLCJqb2JMb2NhdGlvbiI6ImF1c3RyYWxpYWVhc3QifQ?api-version=2015-11-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-request-id": [ + "7adefbd5-355e-4a0d-b932-951b1a1b41f9" + ], + "x-ms-correlation-request-id": [ + "7adefbd5-355e-4a0d-b932-951b1a1b41f9" + ], + "x-ms-routing-request-id": [ + "SOUTHINDIA:20211115T024955Z:7adefbd5-355e-4a0d-b932-951b1a1b41f9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Content-Length": [ "0" + ], + "Expires": [ + "-1" ] }, "ResponseBody": "", - "StatusCode": 200 + "StatusCode": 202 } ], "Names": { "EventHubskiptop": [ - "Default-EventHub-4305", - "sdk-NS-926", - "sdk-EventHub-3875", - "sdk-ConsumerGroup-9140" + "Default-EventHub-8174", + "sdk-NS-6608", + "sdk-EventHub-9315", + "sdk-ConsumerGroup-1217" ] }, "Variables": { 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 47c0911a1a84..a75977881a8a 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,68 +1,5 @@ { "Entries": [ - { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/Default-EventHub-1460?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlZ3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMTQ2MD9hcGktdmVyc2lvbj0yMDE1LTExLTAx", - "RequestMethod": "DELETE", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "c90e853d-ca5e-40cc-8fee-9da0837a641f" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.27817.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1ERUZBVUxUOjJERVZFTlRIVUI6MkQxNDYwLUFVU1RSQUxJQUVBU1QiLCJqb2JMb2NhdGlvbiI6ImF1c3RyYWxpYWVhc3QifQ?api-version=2015-11-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" - ], - "x-ms-request-id": [ - "35582f7e-647a-4f5f-8f29-8f35d105d6a2" - ], - "x-ms-correlation-request-id": [ - "35582f7e-647a-4f5f-8f29-8f35d105d6a2" - ], - "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210924T041106Z:35582f7e-647a-4f5f-8f29-8f35d105d6a2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 24 Sep 2021 04:11:05 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, { "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.EventHub?api-version=2015-11-01", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWI/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", @@ -70,15 +7,15 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7636260c-16ec-49b4-aa24-4290e28ccf82" + "a3979b4f-334b-4ad2-9e6a-60719c095255" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", + "OSVersion/Microsoft.Windows.10.0.22000.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -86,6 +23,9 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:21:29 GMT" + ], "Pragma": [ "no-cache" ], @@ -93,13 +33,13 @@ "11999" ], "x-ms-request-id": [ - "a7fb1ba3-3bf0-41d5-a480-0a5d2ad6e214" + "d23fa67e-ba6d-414b-b3b4-b6b79046fa6f" ], "x-ms-correlation-request-id": [ - "a7fb1ba3-3bf0-41d5-a480-0a5d2ad6e214" + "d23fa67e-ba6d-414b-b3b4-b6b79046fa6f" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T041107Z:a7fb1ba3-3bf0-41d5-a480-0a5d2ad6e214" + "SOUTHINDIA:20211115T022130Z:d23fa67e-ba6d-414b-b3b4-b6b79046fa6f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -107,38 +47,35 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:11:06 GMT" + "Content-Length": [ + "4451" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" - ], - "Content-Length": [ - "4274" ] }, - "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 \"Jio India West\",\r\n \"West US 3\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"UAE Central\",\r\n \"Norway West\",\r\n \"Sweden Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01-preview\",\r\n \"2021-01-01-preview\",\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 \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"UAE Central\",\r\n \"Norway West\",\r\n \"Sweden 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 \"2021-06-01-preview\",\r\n \"2021-01-01-preview\",\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 },\r\n {\r\n \"resourceType\": \"namespaces/networkrulesets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-06-01-preview\",\r\n \"2021-01-01-preview\",\r\n \"2018-01-01-preview\",\r\n \"2017-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/privateEndpointConnections\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-06-01-preview\",\r\n \"2021-01-01-preview\",\r\n \"2018-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/eventhubs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-06-01-preview\",\r\n \"2021-01-01-preview\",\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 },\r\n {\r\n \"resourceType\": \"namespaces/eventhubs/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-06-01-preview\",\r\n \"2021-01-01-preview\",\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 },\r\n {\r\n \"resourceType\": \"namespaces/eventhubs/consumergroups\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-06-01-preview\",\r\n \"2021-01-01-preview\",\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 },\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 \"2021-06-01-preview\",\r\n \"2021-01-01-preview\",\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 },\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 \"2021-06-01-preview\",\r\n \"2021-01-01-preview\",\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 },\r\n {\r\n \"resourceType\": \"namespaces/disasterrecoveryconfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-06-01-preview\",\r\n \"2021-01-01-preview\",\r\n \"2018-01-01-preview\",\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 \"2021-06-01-preview\",\r\n \"2021-01-01-preview\",\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 },\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}", + "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 \"Jio India West\",\r\n \"West US 3\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"UAE Central\",\r\n \"Norway West\",\r\n \"Sweden Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-11-01\",\r\n \"2021-06-01-preview\",\r\n \"2021-01-01-preview\",\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 \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"UAE Central\",\r\n \"Norway West\",\r\n \"Sweden Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-11-01\",\r\n \"2021-06-01-preview\",\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 \"2021-11-01\",\r\n \"2021-06-01-preview\",\r\n \"2021-01-01-preview\",\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 },\r\n {\r\n \"resourceType\": \"namespaces/networkrulesets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-11-01\",\r\n \"2021-06-01-preview\",\r\n \"2021-01-01-preview\",\r\n \"2018-01-01-preview\",\r\n \"2017-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/privateEndpointConnections\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-11-01\",\r\n \"2021-06-01-preview\",\r\n \"2021-01-01-preview\",\r\n \"2018-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/eventhubs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-11-01\",\r\n \"2021-06-01-preview\",\r\n \"2021-01-01-preview\",\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 },\r\n {\r\n \"resourceType\": \"namespaces/eventhubs/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-11-01\",\r\n \"2021-06-01-preview\",\r\n \"2021-01-01-preview\",\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 },\r\n {\r\n \"resourceType\": \"namespaces/eventhubs/consumergroups\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-11-01\",\r\n \"2021-06-01-preview\",\r\n \"2021-01-01-preview\",\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 },\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 \"2021-11-01\",\r\n \"2021-06-01-preview\",\r\n \"2021-01-01-preview\",\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 },\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 \"2021-11-01\",\r\n \"2021-06-01-preview\",\r\n \"2021-01-01-preview\",\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 },\r\n {\r\n \"resourceType\": \"namespaces/disasterrecoveryconfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-11-01\",\r\n \"2021-06-01-preview\",\r\n \"2021-01-01-preview\",\r\n \"2018-01-01-preview\",\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 \"2021-11-01\",\r\n \"2021-06-01-preview\",\r\n \"2021-01-01-preview\",\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 },\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/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/Default-EventHub-1523?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlZ3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMTUyMz9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/Default-EventHub-2530?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlZ3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMjUzMD9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"Australia East\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "59ef3c1f-7ccf-4c5b-9dcb-070245dff850" + "a95de191-099e-4223-bdc2-514b7548d699" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", + "OSVersion/Microsoft.Windows.10.0.22000.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ], "Content-Type": [ @@ -152,6 +89,9 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:21:32 GMT" + ], "Pragma": [ "no-cache" ], @@ -159,13 +99,13 @@ "1199" ], "x-ms-request-id": [ - "ba791ab1-b345-460f-80f3-47d06c6e4707" + "877f8a1b-68af-4c61-9ac2-dbcbdce4eca5" ], "x-ms-correlation-request-id": [ - "ba791ab1-b345-460f-80f3-47d06c6e4707" + "877f8a1b-68af-4c61-9ac2-dbcbdce4eca5" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T041109Z:ba791ab1-b345-460f-80f3-47d06c6e4707" + "SOUTHINDIA:20211115T022133Z:877f8a1b-68af-4c61-9ac2-dbcbdce4eca5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -173,9 +113,6 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:11:08 GMT" - ], "Content-Length": [ "202" ], @@ -186,26 +123,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-1523\",\r\n \"name\": \"Default-EventHub-1523\",\r\n \"location\": \"australiaeast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-2530\",\r\n \"name\": \"Default-EventHub-2530\",\r\n \"location\": \"australiaeast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-1523/providers/Microsoft.EventHub/namespaces/sdk-NS-3051?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMTUyMy9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTMwNTE/YXBpLXZlcnNpb249MjAyMS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-2530/providers/Microsoft.EventHub/namespaces/sdk-NS-2725?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMjUzMC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTI3MjU/YXBpLXZlcnNpb249MjAyMS0xMS0wMQ==", "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": [ - "1ae6da9f-4ec8-4bfb-8fc3-c388a873a150" + "516f9ca2-48ed-438e-a4a9-c6a112a06abe" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -218,27 +155,30 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:21:38 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "985228a8-5904-48a4-9503-eb760a1a4be6_M5SN1_M5SN1" + "32f09121-b3ae-4cc3-9104-26ce2e507a8b_M2CH3_M2CH3" ], "Server-SB": [ - "Service-Bus-Resource-Provider/SN1" - ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" + "Service-Bus-Resource-Provider/CH3" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "49" ], "x-ms-correlation-request-id": [ - "e7719b7a-402e-4595-ba0d-0a898aa306e8" + "79a20b45-907d-4974-a539-a3c84aac773f" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T041117Z:e7719b7a-402e-4595-ba0d-0a898aa306e8" + "SOUTHINDIA:20211115T022139Z:79a20b45-907d-4974-a539-a3c84aac773f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -246,11 +186,8 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:11:16 GMT" - ], "Content-Length": [ - "736" + "734" ], "Content-Type": [ "application/json; charset=utf-8" @@ -259,47 +196,50 @@ "-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-1523/providers/Microsoft.EventHub/namespaces/sdk-NS-3051\",\r\n \"name\": \"sdk-NS-3051\",\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 \"disableLocalAuth\": false,\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-3051\",\r\n \"createdAt\": \"2021-09-24T04:11:15.017Z\",\r\n \"updatedAt\": \"2021-09-24T04:11:15.017Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-3051.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-2530/providers/Microsoft.EventHub/namespaces/sdk-NS-2725\",\r\n \"name\": \"sdk-NS-2725\",\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 \"disableLocalAuth\": false,\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-2725\",\r\n \"createdAt\": \"2021-11-15T02:21:37.96Z\",\r\n \"updatedAt\": \"2021-11-15T02:21:37.96Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-2725.servicebus.windows.net:443/\",\r\n \"status\": \"Activating\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-1523/providers/Microsoft.EventHub/namespaces/sdk-NS-3051?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMTUyMy9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTMwNTE/YXBpLXZlcnNpb249MjAyMS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-2530/providers/Microsoft.EventHub/namespaces/sdk-NS-2725?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMjUzMC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTI3MjU/YXBpLXZlcnNpb249MjAyMS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:22:08 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "a3b68ad2-6b91-4d8d-a7b2-8b368beb14dd_M1SN1_M1SN1" + "7afeef7f-c097-4dc3-8924-90089386d6db_M2CH3_M2CH3" ], "Server-SB": [ - "Service-Bus-Resource-Provider/SN1" - ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" + "Service-Bus-Resource-Provider/CH3" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11999" ], "x-ms-correlation-request-id": [ - "fef67e42-ca44-44f6-a61b-66f83e112480" + "2e97744d-bdba-43e9-ae30-79658589ea2a" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T041147Z:fef67e42-ca44-44f6-a61b-66f83e112480" + "SOUTHINDIA:20211115T022209Z:2e97744d-bdba-43e9-ae30-79658589ea2a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -307,11 +247,8 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:11:46 GMT" - ], "Content-Length": [ - "736" + "734" ], "Content-Type": [ "application/json; charset=utf-8" @@ -320,47 +257,50 @@ "-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-1523/providers/Microsoft.EventHub/namespaces/sdk-NS-3051\",\r\n \"name\": \"sdk-NS-3051\",\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 \"disableLocalAuth\": false,\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-3051\",\r\n \"createdAt\": \"2021-09-24T04:11:15.017Z\",\r\n \"updatedAt\": \"2021-09-24T04:11:15.017Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-3051.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-2530/providers/Microsoft.EventHub/namespaces/sdk-NS-2725\",\r\n \"name\": \"sdk-NS-2725\",\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 \"disableLocalAuth\": false,\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-2725\",\r\n \"createdAt\": \"2021-11-15T02:21:37.96Z\",\r\n \"updatedAt\": \"2021-11-15T02:21:37.96Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-2725.servicebus.windows.net:443/\",\r\n \"status\": \"Activating\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-1523/providers/Microsoft.EventHub/namespaces/sdk-NS-3051?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMTUyMy9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTMwNTE/YXBpLXZlcnNpb249MjAyMS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-2530/providers/Microsoft.EventHub/namespaces/sdk-NS-2725?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMjUzMC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTI3MjU/YXBpLXZlcnNpb249MjAyMS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:22:39 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "dccdb652-9ea8-469c-a541-3e5c3951f7b3_M5SN1_M5SN1" + "12761b4c-5c5c-4287-9f16-75a163ab4d38_M2CH3_M2CH3" ], "Server-SB": [ - "Service-Bus-Resource-Provider/SN1" - ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" + "Service-Bus-Resource-Provider/CH3" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11998" ], "x-ms-correlation-request-id": [ - "2c49c532-b890-4d35-ac37-069084f8c235" + "bb7a68ea-011b-4eb2-8f19-b8db01090a0f" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T041217Z:2c49c532-b890-4d35-ac37-069084f8c235" + "SOUTHINDIA:20211115T022239Z:bb7a68ea-011b-4eb2-8f19-b8db01090a0f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -368,11 +308,8 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:12:16 GMT" - ], "Content-Length": [ - "734" + "733" ], "Content-Type": [ "application/json; charset=utf-8" @@ -381,53 +318,56 @@ "-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-1523/providers/Microsoft.EventHub/namespaces/sdk-NS-3051\",\r\n \"name\": \"sdk-NS-3051\",\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 \"disableLocalAuth\": false,\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-3051\",\r\n \"createdAt\": \"2021-09-24T04:11:15.017Z\",\r\n \"updatedAt\": \"2021-09-24T04:12:08.543Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-3051.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-2530/providers/Microsoft.EventHub/namespaces/sdk-NS-2725\",\r\n \"name\": \"sdk-NS-2725\",\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 \"disableLocalAuth\": false,\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-2725\",\r\n \"createdAt\": \"2021-11-15T02:21:37.96Z\",\r\n \"updatedAt\": \"2021-11-15T02:22:29.973Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-2725.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-1523/providers/Microsoft.EventHub/namespaces/sdk-NS-3051?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMTUyMy9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTMwNTE/YXBpLXZlcnNpb249MjAyMS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-2530/providers/Microsoft.EventHub/namespaces/sdk-NS-2725?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMjUzMC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTI3MjU/YXBpLXZlcnNpb249MjAyMS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "78f24999-8295-47dc-b675-0a83c6863911" + "9d35e821-257e-4767-90f2-9c941e1ea1d1" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:22:44 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "3249601b-dd39-4b26-b0cf-76f2489bdf71_M5SN1_M5SN1" + "9adaf207-7129-4f53-9859-bfe0bd231f2d_M2CH3_M2CH3" ], "Server-SB": [ - "Service-Bus-Resource-Provider/SN1" - ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" + "Service-Bus-Resource-Provider/CH3" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11997" ], "x-ms-correlation-request-id": [ - "eb6b147d-a8a5-49c2-9111-cf06c4f49c5c" + "04c97508-bd15-4040-a002-86758d179715" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T041222Z:eb6b147d-a8a5-49c2-9111-cf06c4f49c5c" + "SOUTHINDIA:20211115T022245Z:04c97508-bd15-4040-a002-86758d179715" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -435,11 +375,8 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:12:22 GMT" - ], "Content-Length": [ - "734" + "733" ], "Content-Type": [ "application/json; charset=utf-8" @@ -448,53 +385,56 @@ "-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-1523/providers/Microsoft.EventHub/namespaces/sdk-NS-3051\",\r\n \"name\": \"sdk-NS-3051\",\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 \"disableLocalAuth\": false,\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-3051\",\r\n \"createdAt\": \"2021-09-24T04:11:15.017Z\",\r\n \"updatedAt\": \"2021-09-24T04:12:08.543Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-3051.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-2530/providers/Microsoft.EventHub/namespaces/sdk-NS-2725\",\r\n \"name\": \"sdk-NS-2725\",\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 \"disableLocalAuth\": false,\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-2725\",\r\n \"createdAt\": \"2021-11-15T02:21:37.96Z\",\r\n \"updatedAt\": \"2021-11-15T02:22:29.973Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-2725.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-1523/providers/Microsoft.EventHub/namespaces/sdk-NS-3051?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMTUyMy9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTMwNTE/YXBpLXZlcnNpb249MjAyMS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-2530/providers/Microsoft.EventHub/namespaces/sdk-NS-2725?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMjUzMC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTI3MjU/YXBpLXZlcnNpb249MjAyMS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "eb1cf629-7bd2-4323-ba5e-54ab08766400" + "c3c9dcf4-ac2a-45b4-88f5-2f4629612e13" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:22:44 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "63e4b31a-d2fc-4cb7-a015-090d40c32199_M5SN1_M5SN1" + "ce53adc4-01c0-4213-802d-c53029aef773_M2CH3_M2CH3" ], "Server-SB": [ - "Service-Bus-Resource-Provider/SN1" - ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" + "Service-Bus-Resource-Provider/CH3" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11996" ], "x-ms-correlation-request-id": [ - "307ddda3-6515-4715-8c8e-adcdfdba3137" + "afb9371a-00ba-4526-809f-5629d5e30b20" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T041222Z:307ddda3-6515-4715-8c8e-adcdfdba3137" + "SOUTHINDIA:20211115T022245Z:afb9371a-00ba-4526-809f-5629d5e30b20" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -502,11 +442,8 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:12:22 GMT" - ], "Content-Length": [ - "734" + "733" ], "Content-Type": [ "application/json; charset=utf-8" @@ -515,26 +452,26 @@ "-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-1523/providers/Microsoft.EventHub/namespaces/sdk-NS-3051\",\r\n \"name\": \"sdk-NS-3051\",\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 \"disableLocalAuth\": false,\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-3051\",\r\n \"createdAt\": \"2021-09-24T04:11:15.017Z\",\r\n \"updatedAt\": \"2021-09-24T04:12:08.543Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-3051.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-2530/providers/Microsoft.EventHub/namespaces/sdk-NS-2725\",\r\n \"name\": \"sdk-NS-2725\",\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 \"disableLocalAuth\": false,\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-2725\",\r\n \"createdAt\": \"2021-11-15T02:21:37.96Z\",\r\n \"updatedAt\": \"2021-11-15T02:22:29.973Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-2725.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-1523/providers/Microsoft.EventHub/namespaces/sdk-NS-3051/eventhubs/sdk-EventHub-4040?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMTUyMy9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTMwNTEvZXZlbnRodWJzL3Nkay1FdmVudEh1Yi00MDQwP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-2530/providers/Microsoft.EventHub/namespaces/sdk-NS-2725/eventhubs/sdk-EventHub-9543?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMjUzMC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTI3MjUvZXZlbnRodWJzL3Nkay1FdmVudEh1Yi05NTQzP2FwaS12ZXJzaW9uPTIwMjEtMTEtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"messageRetentionInDays\": 5\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "b622c78f-3ee4-4fee-91ba-eb471e574ae6" + "ed1dde9b-052e-432b-ba02-ebefaa661cce" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -547,27 +484,30 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:22:47 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "80f7cfff-7059-4d71-9d04-1f597565a179_M5SN1_M5SN1" + "0b54c3d7-1065-4627-ac8e-59bfb59b89d9_M2CH3_M2CH3" ], "Server-SB": [ - "Service-Bus-Resource-Provider/SN1" - ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" + "Service-Bus-Resource-Provider/CH3" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], "x-ms-correlation-request-id": [ - "30584a49-a39a-4cd0-939b-b4a0484774f8" + "33a7e099-5973-416a-988c-5ec8dbe1071e" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T041226Z:30584a49-a39a-4cd0-939b-b4a0484774f8" + "SOUTHINDIA:20211115T022248Z:33a7e099-5973-416a-988c-5ec8dbe1071e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -575,11 +515,8 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:12:25 GMT" - ], "Content-Length": [ - "470" + "471" ], "Content-Type": [ "application/json; charset=utf-8" @@ -588,53 +525,56 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-1523/providers/Microsoft.EventHub/namespaces/sdk-NS-3051/eventhubs/sdk-EventHub-4040\",\r\n \"name\": \"sdk-EventHub-4040\",\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\": \"2021-09-24T04:12:25.637Z\",\r\n \"updatedAt\": \"2021-09-24T04:12:25.82Z\",\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-2530/providers/Microsoft.EventHub/namespaces/sdk-NS-2725/eventhubs/sdk-EventHub-9543\",\r\n \"name\": \"sdk-EventHub-9543\",\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\": \"2021-11-15T02:22:47.437Z\",\r\n \"updatedAt\": \"2021-11-15T02:22:47.743Z\",\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/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-1523/providers/Microsoft.EventHub/namespaces/sdk-NS-3051/eventhubs/sdk-EventHub-4040?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMTUyMy9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTMwNTEvZXZlbnRodWJzL3Nkay1FdmVudEh1Yi00MDQwP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-2530/providers/Microsoft.EventHub/namespaces/sdk-NS-2725/eventhubs/sdk-EventHub-9543?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMjUzMC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTI3MjUvZXZlbnRodWJzL3Nkay1FdmVudEh1Yi05NTQzP2FwaS12ZXJzaW9uPTIwMjEtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0ab47ce9-3d2b-4e5d-a19e-2093f908189c" + "dc494e68-eb07-4e5d-aaf3-89efe3122ead" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:22:48 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "bc2002c5-d14e-4656-a9a6-59701b0a11b5_M5SN1_M5SN1" + "a839fd31-b3b5-488b-a4cf-81295174403c_M2CH3_M2CH3" ], "Server-SB": [ - "Service-Bus-Resource-Provider/SN1" - ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" + "Service-Bus-Resource-Provider/CH3" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11995" ], "x-ms-correlation-request-id": [ - "efb6d85a-c410-417d-a760-305df980b4f0" + "5db0bcb2-950c-4fc4-894a-5bdd141a21ed" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T041226Z:efb6d85a-c410-417d-a760-305df980b4f0" + "SOUTHINDIA:20211115T022249Z:5db0bcb2-950c-4fc4-894a-5bdd141a21ed" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -642,11 +582,8 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:12:26 GMT" - ], "Content-Length": [ - "468" + "469" ], "Content-Type": [ "application/json; charset=utf-8" @@ -655,26 +592,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-1523/providers/Microsoft.EventHub/namespaces/sdk-NS-3051/eventhubs/sdk-EventHub-4040\",\r\n \"name\": \"sdk-EventHub-4040\",\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\": \"2021-09-24T04:12:25.637\",\r\n \"updatedAt\": \"2021-09-24T04:12:25.82\",\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-2530/providers/Microsoft.EventHub/namespaces/sdk-NS-2725/eventhubs/sdk-EventHub-9543\",\r\n \"name\": \"sdk-EventHub-9543\",\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\": \"2021-11-15T02:22:47.437\",\r\n \"updatedAt\": \"2021-11-15T02:22:47.743\",\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/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-1523/providers/Microsoft.EventHub/namespaces/sdk-NS-3051/eventhubs/sdk-EventHub-4040/authorizationRules/sdk-Authrules-421?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMTUyMy9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTMwNTEvZXZlbnRodWJzL3Nkay1FdmVudEh1Yi00MDQwL2F1dGhvcml6YXRpb25SdWxlcy9zZGstQXV0aHJ1bGVzLTQyMT9hcGktdmVyc2lvbj0yMDIxLTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-2530/providers/Microsoft.EventHub/namespaces/sdk-NS-2725/eventhubs/sdk-EventHub-9543/authorizationRules/sdk-Authrules-7557?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMjUzMC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTI3MjUvZXZlbnRodWJzL3Nkay1FdmVudEh1Yi05NTQzL2F1dGhvcml6YXRpb25SdWxlcy9zZGstQXV0aHJ1bGVzLTc1NTc/YXBpLXZlcnNpb249MjAyMS0xMS0wMQ==", "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": [ - "9d8b36c9-d792-43ca-b4d4-0bb097dc7348" + "faf7558f-5ac6-4b08-a135-b2d143eb6d3e" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -687,27 +624,30 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:22:49 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "071160db-8558-45fa-a5a9-3fd001850533_M5SN1_M5SN1" + "3d4b0bc3-e3d7-4c76-a665-f198918b963b_M2CH3_M2CH3" ], "Server-SB": [ - "Service-Bus-Resource-Provider/SN1" - ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" + "Service-Bus-Resource-Provider/CH3" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1198" ], "x-ms-correlation-request-id": [ - "e165085d-7d40-4e9a-bf0c-9c0f14d164fe" + "95257fb6-ce1b-4a49-aa6d-be8a8fda19ef" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T041227Z:e165085d-7d40-4e9a-bf0c-9c0f14d164fe" + "SOUTHINDIA:20211115T022250Z:95257fb6-ce1b-4a49-aa6d-be8a8fda19ef" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -715,11 +655,8 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:12:27 GMT" - ], "Content-Length": [ - "379" + "381" ], "Content-Type": [ "application/json; charset=utf-8" @@ -728,26 +665,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-1523/providers/Microsoft.EventHub/namespaces/sdk-NS-3051/eventhubs/sdk-EventHub-4040/authorizationRules/sdk-Authrules-421\",\r\n \"name\": \"sdk-Authrules-421\",\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-2530/providers/Microsoft.EventHub/namespaces/sdk-NS-2725/eventhubs/sdk-EventHub-9543/authorizationRules/sdk-Authrules-7557\",\r\n \"name\": \"sdk-Authrules-7557\",\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/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-1523/providers/Microsoft.EventHub/namespaces/sdk-NS-3051/eventhubs/sdk-EventHub-4040/authorizationRules/sdk-Authrules-421?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMTUyMy9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTMwNTEvZXZlbnRodWJzL3Nkay1FdmVudEh1Yi00MDQwL2F1dGhvcml6YXRpb25SdWxlcy9zZGstQXV0aHJ1bGVzLTQyMT9hcGktdmVyc2lvbj0yMDIxLTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-2530/providers/Microsoft.EventHub/namespaces/sdk-NS-2725/eventhubs/sdk-EventHub-9543/authorizationRules/sdk-Authrules-7557?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMjUzMC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTI3MjUvZXZlbnRodWJzL3Nkay1FdmVudEh1Yi05NTQzL2F1dGhvcml6YXRpb25SdWxlcy9zZGstQXV0aHJ1bGVzLTc1NTc/YXBpLXZlcnNpb249MjAyMS0xMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"rights\": [\r\n \"Listen\"\r\n ]\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "3088ae48-1960-4375-8665-d478971383de" + "1575bd14-acde-47fe-a23d-616ef44230b9" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -760,27 +697,30 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:22:52 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "590f091e-efb4-462b-b247-1869575c7736_M5SN1_M5SN1" + "79ca0a40-229c-4fa4-bbab-a23ec85c32ad_M2CH3_M2CH3" ], "Server-SB": [ - "Service-Bus-Resource-Provider/SN1" - ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" + "Service-Bus-Resource-Provider/CH3" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1197" ], "x-ms-correlation-request-id": [ - "8fbb2f30-55a9-4b68-8b4e-e0efbfdd1dc3" + "89ea6253-0972-4d72-bc5f-ed6ed90292b7" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T041229Z:8fbb2f30-55a9-4b68-8b4e-e0efbfdd1dc3" + "SOUTHINDIA:20211115T022253Z:89ea6253-0972-4d72-bc5f-ed6ed90292b7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -788,11 +728,8 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:12:29 GMT" - ], "Content-Length": [ - "372" + "374" ], "Content-Type": [ "application/json; charset=utf-8" @@ -801,53 +738,56 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-1523/providers/Microsoft.EventHub/namespaces/sdk-NS-3051/eventhubs/sdk-EventHub-4040/authorizationRules/sdk-Authrules-421\",\r\n \"name\": \"sdk-Authrules-421\",\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-2530/providers/Microsoft.EventHub/namespaces/sdk-NS-2725/eventhubs/sdk-EventHub-9543/authorizationRules/sdk-Authrules-7557\",\r\n \"name\": \"sdk-Authrules-7557\",\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/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-1523/providers/Microsoft.EventHub/namespaces/sdk-NS-3051/eventhubs/sdk-EventHub-4040/authorizationRules/sdk-Authrules-421?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMTUyMy9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTMwNTEvZXZlbnRodWJzL3Nkay1FdmVudEh1Yi00MDQwL2F1dGhvcml6YXRpb25SdWxlcy9zZGstQXV0aHJ1bGVzLTQyMT9hcGktdmVyc2lvbj0yMDIxLTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-2530/providers/Microsoft.EventHub/namespaces/sdk-NS-2725/eventhubs/sdk-EventHub-9543/authorizationRules/sdk-Authrules-7557?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMjUzMC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTI3MjUvZXZlbnRodWJzL3Nkay1FdmVudEh1Yi05NTQzL2F1dGhvcml6YXRpb25SdWxlcy9zZGstQXV0aHJ1bGVzLTc1NTc/YXBpLXZlcnNpb249MjAyMS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5bb13932-0d54-4a05-813e-4428052420a2" + "40a6e7e0-ab87-469a-99fd-e1759dd806f5" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:22:50 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "b9228e09-1473-4e2f-9185-50b6a629a3b6_M5SN1_M5SN1" + "237d2606-69b5-46c5-aa34-177c610cfaee_M2CH3_M2CH3" ], "Server-SB": [ - "Service-Bus-Resource-Provider/SN1" - ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" + "Service-Bus-Resource-Provider/CH3" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11994" ], "x-ms-correlation-request-id": [ - "e4c59179-b65a-4380-9c52-aabdf75ab679" + "68c7e5bf-1c87-4e72-a059-757ac4fe11b7" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T041228Z:e4c59179-b65a-4380-9c52-aabdf75ab679" + "SOUTHINDIA:20211115T022251Z:68c7e5bf-1c87-4e72-a059-757ac4fe11b7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -855,11 +795,8 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:12:27 GMT" - ], "Content-Length": [ - "379" + "381" ], "Content-Type": [ "application/json; charset=utf-8" @@ -868,53 +805,56 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-1523/providers/Microsoft.EventHub/namespaces/sdk-NS-3051/eventhubs/sdk-EventHub-4040/authorizationRules/sdk-Authrules-421\",\r\n \"name\": \"sdk-Authrules-421\",\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-2530/providers/Microsoft.EventHub/namespaces/sdk-NS-2725/eventhubs/sdk-EventHub-9543/authorizationRules/sdk-Authrules-7557\",\r\n \"name\": \"sdk-Authrules-7557\",\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/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-1523/providers/Microsoft.EventHub/namespaces/sdk-NS-3051/eventhubs/sdk-EventHub-4040/authorizationRules/sdk-Authrules-421?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMTUyMy9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTMwNTEvZXZlbnRodWJzL3Nkay1FdmVudEh1Yi00MDQwL2F1dGhvcml6YXRpb25SdWxlcy9zZGstQXV0aHJ1bGVzLTQyMT9hcGktdmVyc2lvbj0yMDIxLTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-2530/providers/Microsoft.EventHub/namespaces/sdk-NS-2725/eventhubs/sdk-EventHub-9543/authorizationRules/sdk-Authrules-7557?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMjUzMC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTI3MjUvZXZlbnRodWJzL3Nkay1FdmVudEh1Yi05NTQzL2F1dGhvcml6YXRpb25SdWxlcy9zZGstQXV0aHJ1bGVzLTc1NTc/YXBpLXZlcnNpb249MjAyMS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ddec765c-a963-40d2-a0da-a2c9617f6916" + "e9bce099-4760-431b-af73-92508cd85149" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:22:52 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "dbc8e6fc-f55e-4aa1-bcf2-b006c8402a79_M5SN1_M5SN1" + "91adf435-bdfa-4cd0-a183-6a3e6313a204_M2CH3_M2CH3" ], "Server-SB": [ - "Service-Bus-Resource-Provider/SN1" - ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" + "Service-Bus-Resource-Provider/CH3" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11992" ], "x-ms-correlation-request-id": [ - "d4de8388-0ad7-4b64-b8e0-aad2a375e47d" + "ab8cc0dd-2f67-4735-9f5e-bc1219db801b" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T041230Z:d4de8388-0ad7-4b64-b8e0-aad2a375e47d" + "SOUTHINDIA:20211115T022253Z:ab8cc0dd-2f67-4735-9f5e-bc1219db801b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -922,11 +862,8 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:12:29 GMT" - ], "Content-Length": [ - "372" + "374" ], "Content-Type": [ "application/json; charset=utf-8" @@ -935,53 +872,56 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-1523/providers/Microsoft.EventHub/namespaces/sdk-NS-3051/eventhubs/sdk-EventHub-4040/authorizationRules/sdk-Authrules-421\",\r\n \"name\": \"sdk-Authrules-421\",\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-2530/providers/Microsoft.EventHub/namespaces/sdk-NS-2725/eventhubs/sdk-EventHub-9543/authorizationRules/sdk-Authrules-7557\",\r\n \"name\": \"sdk-Authrules-7557\",\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/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-1523/providers/Microsoft.EventHub/namespaces/sdk-NS-3051/eventhubs/sdk-EventHub-4040/authorizationRules?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMTUyMy9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTMwNTEvZXZlbnRodWJzL3Nkay1FdmVudEh1Yi00MDQwL2F1dGhvcml6YXRpb25SdWxlcz9hcGktdmVyc2lvbj0yMDIxLTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-2530/providers/Microsoft.EventHub/namespaces/sdk-NS-2725/eventhubs/sdk-EventHub-9543/authorizationRules?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMjUzMC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTI3MjUvZXZlbnRodWJzL3Nkay1FdmVudEh1Yi05NTQzL2F1dGhvcml6YXRpb25SdWxlcz9hcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a42ea9a0-5144-4251-9a5a-0f664489786e" + "3dbe71df-cb88-42eb-b1d8-db6c9f3fd4e1" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:22:50 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "b7cc2c19-e2f4-41a2-82c3-70e7dab649f5_M5SN1_M5SN1" + "f65ebef0-fe19-4e38-be7e-7bb9370396b3_M2CH3_M2CH3" ], "Server-SB": [ - "Service-Bus-Resource-Provider/SN1" - ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" + "Service-Bus-Resource-Provider/CH3" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11993" ], "x-ms-correlation-request-id": [ - "8fbe0e0e-d23f-4e15-ba40-7ace5b8d2a46" + "96bb4568-909a-4638-92f2-e97f309c0a0d" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T041228Z:8fbe0e0e-d23f-4e15-ba40-7ace5b8d2a46" + "SOUTHINDIA:20211115T022251Z:96bb4568-909a-4638-92f2-e97f309c0a0d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -989,11 +929,8 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:12:28 GMT" - ], "Content-Length": [ - "391" + "393" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1002,53 +939,56 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-1523/providers/Microsoft.EventHub/namespaces/sdk-NS-3051/eventhubs/sdk-EventHub-4040/authorizationRules/sdk-Authrules-421\",\r\n \"name\": \"sdk-Authrules-421\",\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-2530/providers/Microsoft.EventHub/namespaces/sdk-NS-2725/eventhubs/sdk-EventHub-9543/authorizationRules/sdk-Authrules-7557\",\r\n \"name\": \"sdk-Authrules-7557\",\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/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-1523/providers/Microsoft.EventHub/namespaces/sdk-NS-3051/eventhubs/sdk-EventHub-4040/authorizationRules/sdk-Authrules-421/listKeys?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMTUyMy9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTMwNTEvZXZlbnRodWJzL3Nkay1FdmVudEh1Yi00MDQwL2F1dGhvcml6YXRpb25SdWxlcy9zZGstQXV0aHJ1bGVzLTQyMS9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDIxLTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-2530/providers/Microsoft.EventHub/namespaces/sdk-NS-2725/eventhubs/sdk-EventHub-9543/authorizationRules/sdk-Authrules-7557/listKeys?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMjUzMC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTI3MjUvZXZlbnRodWJzL3Nkay1FdmVudEh1Yi05NTQzL2F1dGhvcml6YXRpb25SdWxlcy9zZGstQXV0aHJ1bGVzLTc1NTcvbGlzdEtleXM/YXBpLXZlcnNpb249MjAyMS0xMS0wMQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "83d24ee2-18d4-4a8a-8a30-499b4d9d2269" + "da9c0a0d-db49-4f80-8552-1e9aa2119581" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:22:53 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "d96ba6f4-00c7-492a-8d91-7b5aaf092642_M5SN1_M5SN1" + "34f2c13d-8f92-45a1-b8ad-e6e91a52adcf_M2CH3_M2CH3" ], "Server-SB": [ - "Service-Bus-Resource-Provider/SN1" - ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" + "Service-Bus-Resource-Provider/CH3" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], "x-ms-correlation-request-id": [ - "02568156-e61f-4e9d-902b-b2bc96df11a3" + "9d03dea8-86ab-4c0c-a1a8-7d93718ad6b7" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T041231Z:02568156-e61f-4e9d-902b-b2bc96df11a3" + "SOUTHINDIA:20211115T022254Z:9d03dea8-86ab-4c0c-a1a8-7d93718ad6b7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1056,11 +996,8 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:12:30 GMT" - ], "Content-Length": [ - "567" + "570" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1069,26 +1006,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"primaryConnectionString\": \"Endpoint=sb://sdk-ns-3051.servicebus.windows.net/;SharedAccessKeyName=sdk-Authrules-421;SharedAccessKey=yBPQkO8W02CQKldqoms7vp/77OHowIfULk4lKvzq1xI=;EntityPath=sdk-EventHub-4040\",\r\n \"secondaryConnectionString\": \"Endpoint=sb://sdk-ns-3051.servicebus.windows.net/;SharedAccessKeyName=sdk-Authrules-421;SharedAccessKey=SEuXzvOC+UAoGmRNyiay9+8SPmLpycU4wj4dZec1R7Y=;EntityPath=sdk-EventHub-4040\",\r\n \"primaryKey\": \"yBPQkO8W02CQKldqoms7vp/77OHowIfULk4lKvzq1xI=\",\r\n \"secondaryKey\": \"SEuXzvOC+UAoGmRNyiay9+8SPmLpycU4wj4dZec1R7Y=\",\r\n \"keyName\": \"sdk-Authrules-421\"\r\n}", + "ResponseBody": "{\r\n \"primaryConnectionString\": \"Endpoint=sb://sdk-ns-2725.servicebus.windows.net/;SharedAccessKeyName=sdk-Authrules-7557;SharedAccessKey=GqO/GCqhwAB/GA4N6sfQkAOyguVzkhIuJl/zOfiSnVE=;EntityPath=sdk-EventHub-9543\",\r\n \"secondaryConnectionString\": \"Endpoint=sb://sdk-ns-2725.servicebus.windows.net/;SharedAccessKeyName=sdk-Authrules-7557;SharedAccessKey=739mybm1H2mBD+5A5pJPXYg0v51OH3RHQ5KyS/iAtk8=;EntityPath=sdk-EventHub-9543\",\r\n \"primaryKey\": \"GqO/GCqhwAB/GA4N6sfQkAOyguVzkhIuJl/zOfiSnVE=\",\r\n \"secondaryKey\": \"739mybm1H2mBD+5A5pJPXYg0v51OH3RHQ5KyS/iAtk8=\",\r\n \"keyName\": \"sdk-Authrules-7557\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-1523/providers/Microsoft.EventHub/namespaces/sdk-NS-3051/eventhubs/sdk-EventHub-4040/authorizationRules/sdk-Authrules-421/regenerateKeys?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMTUyMy9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTMwNTEvZXZlbnRodWJzL3Nkay1FdmVudEh1Yi00MDQwL2F1dGhvcml6YXRpb25SdWxlcy9zZGstQXV0aHJ1bGVzLTQyMS9yZWdlbmVyYXRlS2V5cz9hcGktdmVyc2lvbj0yMDIxLTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-2530/providers/Microsoft.EventHub/namespaces/sdk-NS-2725/eventhubs/sdk-EventHub-9543/authorizationRules/sdk-Authrules-7557/regenerateKeys?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMjUzMC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTI3MjUvZXZlbnRodWJzL3Nkay1FdmVudEh1Yi05NTQzL2F1dGhvcml6YXRpb25SdWxlcy9zZGstQXV0aHJ1bGVzLTc1NTcvcmVnZW5lcmF0ZUtleXM/YXBpLXZlcnNpb249MjAyMS0xMS0wMQ==", "RequestMethod": "POST", "RequestBody": "{\r\n \"keyType\": \"PrimaryKey\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "9c17076d-3a42-4cbf-a8ee-913e3c3c024c" + "66ea085c-3aae-4710-a776-6c4b1c7a8eea" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1101,27 +1038,30 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:22:54 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "89fc58eb-9622-488a-b46b-71017a6c0ead_M5SN1_M5SN1" + "5fd06a9a-c797-48f2-9ccf-346756d99731_M2CH3_M2CH3" ], "Server-SB": [ - "Service-Bus-Resource-Provider/SN1" - ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" + "Service-Bus-Resource-Provider/CH3" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1198" ], "x-ms-correlation-request-id": [ - "9aee930e-0d76-4580-88b5-15b2d277e29b" + "c6313fc8-ca36-45e4-a5df-e9710d6ac5a5" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T041232Z:9aee930e-0d76-4580-88b5-15b2d277e29b" + "SOUTHINDIA:20211115T022255Z:c6313fc8-ca36-45e4-a5df-e9710d6ac5a5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1129,11 +1069,8 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:12:31 GMT" - ], "Content-Length": [ - "567" + "570" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1142,53 +1079,56 @@ "-1" ] }, - "ResponseBody": "{\r\n \"primaryConnectionString\": \"Endpoint=sb://sdk-ns-3051.servicebus.windows.net/;SharedAccessKeyName=sdk-Authrules-421;SharedAccessKey=ACSIBVFLbL8OvvBeFahYase/o0eJaopyhQsHhdD8mIg=;EntityPath=sdk-EventHub-4040\",\r\n \"secondaryConnectionString\": \"Endpoint=sb://sdk-ns-3051.servicebus.windows.net/;SharedAccessKeyName=sdk-Authrules-421;SharedAccessKey=SEuXzvOC+UAoGmRNyiay9+8SPmLpycU4wj4dZec1R7Y=;EntityPath=sdk-EventHub-4040\",\r\n \"primaryKey\": \"ACSIBVFLbL8OvvBeFahYase/o0eJaopyhQsHhdD8mIg=\",\r\n \"secondaryKey\": \"SEuXzvOC+UAoGmRNyiay9+8SPmLpycU4wj4dZec1R7Y=\",\r\n \"keyName\": \"sdk-Authrules-421\"\r\n}", + "ResponseBody": "{\r\n \"primaryConnectionString\": \"Endpoint=sb://sdk-ns-2725.servicebus.windows.net/;SharedAccessKeyName=sdk-Authrules-7557;SharedAccessKey=urAj1YxlRuVoOmSyJsuwbTxGrp/AkabxpQ15FiXFZyw=;EntityPath=sdk-EventHub-9543\",\r\n \"secondaryConnectionString\": \"Endpoint=sb://sdk-ns-2725.servicebus.windows.net/;SharedAccessKeyName=sdk-Authrules-7557;SharedAccessKey=739mybm1H2mBD+5A5pJPXYg0v51OH3RHQ5KyS/iAtk8=;EntityPath=sdk-EventHub-9543\",\r\n \"primaryKey\": \"urAj1YxlRuVoOmSyJsuwbTxGrp/AkabxpQ15FiXFZyw=\",\r\n \"secondaryKey\": \"739mybm1H2mBD+5A5pJPXYg0v51OH3RHQ5KyS/iAtk8=\",\r\n \"keyName\": \"sdk-Authrules-7557\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-1523/providers/Microsoft.EventHub/namespaces/sdk-NS-3051/eventhubs/sdk-EventHub-4040/authorizationRules/sdk-Authrules-421?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMTUyMy9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTMwNTEvZXZlbnRodWJzL3Nkay1FdmVudEh1Yi00MDQwL2F1dGhvcml6YXRpb25SdWxlcy9zZGstQXV0aHJ1bGVzLTQyMT9hcGktdmVyc2lvbj0yMDIxLTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-2530/providers/Microsoft.EventHub/namespaces/sdk-NS-2725/eventhubs/sdk-EventHub-9543/authorizationRules/sdk-Authrules-7557?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMjUzMC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTI3MjUvZXZlbnRodWJzL3Nkay1FdmVudEh1Yi05NTQzL2F1dGhvcml6YXRpb25SdWxlcy9zZGstQXV0aHJ1bGVzLTc1NTc/YXBpLXZlcnNpb249MjAyMS0xMS0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "09ac9adc-24e6-4285-b8e4-d098aba5ed7c" + "ec29939b-d2ef-4678-a30d-2b9bd742392c" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:22:55 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "f3b02dbf-9e9e-4844-8596-c31ed1a9c193_M5SN1_M5SN1" + "0c558e0b-bd2c-4f84-8adc-67bbda44db9a_M2CH3_M2CH3" ], "Server-SB": [ - "Service-Bus-Resource-Provider/SN1" - ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" + "Service-Bus-Resource-Provider/CH3" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14999" ], "x-ms-correlation-request-id": [ - "1bbd6e10-1675-484e-ab1a-e836b9e1d675" + "a687d0dd-8e96-4268-908b-95988378ccc2" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T041233Z:1bbd6e10-1675-484e-ab1a-e836b9e1d675" + "SOUTHINDIA:20211115T022256Z:a687d0dd-8e96-4268-908b-95988378ccc2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1196,63 +1136,63 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:12:32 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-1523/providers/Microsoft.EventHub/namespaces/sdk-NS-3051/eventhubs/sdk-EventHub-4040?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMTUyMy9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTMwNTEvZXZlbnRodWJzL3Nkay1FdmVudEh1Yi00MDQwP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-2530/providers/Microsoft.EventHub/namespaces/sdk-NS-2725/eventhubs/sdk-EventHub-9543?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMjUzMC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTI3MjUvZXZlbnRodWJzL3Nkay1FdmVudEh1Yi05NTQzP2FwaS12ZXJzaW9uPTIwMjEtMTEtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "75a35330-4d20-4168-9a16-446e9b2b6a66" + "62d63d31-2aa5-49c5-a806-e969d5986467" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:23:03 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "29b229f5-6aa8-41b2-9188-caafa694bcea_M5SN1_M5SN1" + "2b200b39-fade-4a7a-805e-6ec2b0b8ee27_M2CH3_M2CH3" ], "Server-SB": [ - "Service-Bus-Resource-Provider/SN1" - ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" + "Service-Bus-Resource-Provider/CH3" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14998" ], "x-ms-correlation-request-id": [ - "41f6da28-3a45-45bb-9faf-6f037a550a3d" + "24b6aa91-06cb-44ad-a0ca-ecd5950ca448" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T041240Z:41f6da28-3a45-45bb-9faf-6f037a550a3d" + "SOUTHINDIA:20211115T022303Z:24b6aa91-06cb-44ad-a0ca-ecd5950ca448" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1260,66 +1200,66 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:12:39 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-1523/providers/Microsoft.EventHub/namespaces/sdk-NS-3051?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMTUyMy9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTMwNTE/YXBpLXZlcnNpb249MjAyMS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-2530/providers/Microsoft.EventHub/namespaces/sdk-NS-2725?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMjUzMC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTI3MjU/YXBpLXZlcnNpb249MjAyMS0xMS0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2db1e384-5ca7-4aca-9849-4fd17a8fd150" + "2345dd0f-ff7b-4807-8cfe-c3bc6ce633b4" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:23:05 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-1523/providers/Microsoft.EventHub/namespaces/sdk-NS-3051/operationresults/sdk-NS-3051?api-version=2021-06-01-preview" + "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-2530/providers/Microsoft.EventHub/namespaces/sdk-NS-2725/operationresults/sdk-NS-2725?api-version=2021-11-01" + ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "973e9773-3d04-45ea-bf2f-9ba6fdef6c9a_M5SN1_M5SN1" + "3e258523-5979-44ad-ae8e-91bfeb784819_M2CH3_M2CH3" ], "Server-SB": [ - "Service-Bus-Resource-Provider/SN1" - ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" + "Service-Bus-Resource-Provider/CH3" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14997" ], "x-ms-correlation-request-id": [ - "1a44f0eb-3fd3-440c-954a-99dcc2079345" + "7793526d-f7f5-4d14-aaa2-5af7000533ab" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T041241Z:1a44f0eb-3fd3-440c-954a-99dcc2079345" + "SOUTHINDIA:20211115T022305Z:7793526d-f7f5-4d14-aaa2-5af7000533ab" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1327,57 +1267,57 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:12:40 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-1523/providers/Microsoft.EventHub/namespaces/sdk-NS-3051/operationresults/sdk-NS-3051?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMTUyMy9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTMwNTEvb3BlcmF0aW9ucmVzdWx0cy9zZGstTlMtMzA1MT9hcGktdmVyc2lvbj0yMDIxLTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-2530/providers/Microsoft.EventHub/namespaces/sdk-NS-2725/operationresults/sdk-NS-2725?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMjUzMC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTI3MjUvb3BlcmF0aW9ucmVzdWx0cy9zZGstTlMtMjcyNT9hcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:23:34 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "5210d3c6-2389-4fb2-9680-e6bc649962b2_M5SN1_M5SN1" + "47f855b1-95ef-4a85-aa57-df73049f6df6_M2CH3_M2CH3" ], "Server-SB": [ - "Service-Bus-Resource-Provider/SN1" - ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" + "Service-Bus-Resource-Provider/CH3" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11991" ], "x-ms-correlation-request-id": [ - "3b625cab-16e8-4386-b781-91a171fc247e" + "2867cf59-41c1-4e0c-bb9a-1aa36f9ea2c3" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T041311Z:3b625cab-16e8-4386-b781-91a171fc247e" + "SOUTHINDIA:20211115T022335Z:2867cf59-41c1-4e0c-bb9a-1aa36f9ea2c3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1385,57 +1325,57 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:13:10 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-1523/providers/Microsoft.EventHub/namespaces/sdk-NS-3051/operationresults/sdk-NS-3051?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMTUyMy9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTMwNTEvb3BlcmF0aW9ucmVzdWx0cy9zZGstTlMtMzA1MT9hcGktdmVyc2lvbj0yMDIxLTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-2530/providers/Microsoft.EventHub/namespaces/sdk-NS-2725/operationresults/sdk-NS-2725?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMjUzMC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTI3MjUvb3BlcmF0aW9ucmVzdWx0cy9zZGstTlMtMjcyNT9hcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:23:36 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "407b0a53-0cd4-46ab-a7ea-542dcd6e46f1_M5SN1_M5SN1" + "dde0aa7e-b161-433b-8fa9-5e214e919f77_M2CH3_M2CH3" ], "Server-SB": [ - "Service-Bus-Resource-Provider/SN1" - ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" + "Service-Bus-Resource-Provider/CH3" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11990" ], "x-ms-correlation-request-id": [ - "21d5e19f-e671-4928-a243-d35c37538dec" + "f8ff2f11-5694-4392-a4c4-5864d92df438" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T041311Z:21d5e19f-e671-4928-a243-d35c37538dec" + "SOUTHINDIA:20211115T022336Z:f8ff2f11-5694-4392-a4c4-5864d92df438" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1443,14 +1383,11 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:13:10 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", @@ -1459,15 +1396,15 @@ ], "Names": { "EventhubCreateGetUpdateDeleteAuthorizationRules": [ - "Default-EventHub-1523", - "sdk-NS-3051", - "sdk-EventHub-4040", - "sdk-Authrules-421" + "Default-EventHub-2530", + "sdk-NS-2725", + "sdk-EventHub-9543", + "sdk-Authrules-7557" ] }, "Variables": { "SubscriptionId": "326100e2-f69d-4268-8503-075374f62b6e", - "CreatePrimaryKey": "MFa8Ajz6+LQwsqXw/F8HDYGDTRVBbHyvb6HID/02OpU=", - "UpdatePrimaryKey": "sdrmscXbpNOZRKAld+DBusLLY0mAfazTdzarCd7r17M=" + "CreatePrimaryKey": "1/5JYkadccY8zuV3V1CQ3JUgyV6eFqQVchKjlUt8iiE=", + "UpdatePrimaryKey": "BNCKZggL2hOHzazyRQp06bwqRCwE5TRZLi860/VwBrg=" } } \ 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 23feec358167..09b8a459003e 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,139 +1,5 @@ { "Entries": [ - { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3335/providers/Microsoft.EventHub/namespaces/sdk-NS-4625?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMzMzNS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTQ2MjU/YXBpLXZlcnNpb249MjAyMS0wNi0wMS1wcmV2aWV3", - "RequestMethod": "DELETE", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "2d83370c-9200-4012-ae36-86a8957e60c5" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.27817.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3335/providers/Microsoft.EventHub/namespaces/sdk-NS-4625/operationresults/sdk-NS-4625?api-version=2021-06-01-preview" - ], - "x-ms-request-id": [ - "4bace5d8-f1f7-47b0-8a18-bb593e4c2ce6_M10SN1_M10SN1" - ], - "Server-SB": [ - "Service-Bus-Resource-Provider/SN1" - ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" - ], - "x-ms-correlation-request-id": [ - "503f3d23-20ce-495a-9f9e-9bc9eeb6cd37" - ], - "x-ms-routing-request-id": [ - "WESTUS:20210924T043255Z:503f3d23-20ce-495a-9f9e-9bc9eeb6cd37" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 24 Sep 2021 04:32:55 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3335/providers/Microsoft.EventHub/namespaces/sdk-NS-2038?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMzMzNS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTIwMzg/YXBpLXZlcnNpb249MjAyMS0wNi0wMS1wcmV2aWV3", - "RequestMethod": "DELETE", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "d77e6bdb-6938-467a-aef1-990f3e0e0623" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.27817.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3335/providers/Microsoft.EventHub/namespaces/sdk-NS-2038/operationresults/sdk-NS-2038?api-version=2021-06-01-preview" - ], - "x-ms-request-id": [ - "29d78a51-1985-40a1-8823-7b8ded837c87_M4SN1_M4SN1" - ], - "Server-SB": [ - "Service-Bus-Resource-Provider/SN1" - ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" - ], - "x-ms-correlation-request-id": [ - "97c9327d-a756-4cdd-ba6c-e72bcb509191" - ], - "x-ms-routing-request-id": [ - "WESTUS:20210924T043255Z:97c9327d-a756-4cdd-ba6c-e72bcb509191" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 24 Sep 2021 04:32:54 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, { "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.EventHub?api-version=2015-11-01", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWI/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", @@ -141,15 +7,15 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c2c131a8-901a-4707-9c9f-47fce4564425" + "1da93846-7ef4-477c-81e3-4a7114e97129" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", + "OSVersion/Microsoft.Windows.10.0.22000.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -157,20 +23,23 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:45:00 GMT" + ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11997" ], "x-ms-request-id": [ - "3d0d63dd-815f-4f51-9ac2-66734b8d00f1" + "205e24cf-2c6e-4175-9a54-314143a68d3e" ], "x-ms-correlation-request-id": [ - "3d0d63dd-815f-4f51-9ac2-66734b8d00f1" + "205e24cf-2c6e-4175-9a54-314143a68d3e" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T043255Z:3d0d63dd-815f-4f51-9ac2-66734b8d00f1" + "SOUTHINDIA:20211115T024500Z:205e24cf-2c6e-4175-9a54-314143a68d3e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -178,105 +47,35 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:32:54 GMT" + "Content-Length": [ + "4451" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" - ], - "Content-Length": [ - "4274" ] }, - "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 \"Jio India West\",\r\n \"West US 3\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"UAE Central\",\r\n \"Norway West\",\r\n \"Sweden Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01-preview\",\r\n \"2021-01-01-preview\",\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 \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"UAE Central\",\r\n \"Norway West\",\r\n \"Sweden 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 \"2021-06-01-preview\",\r\n \"2021-01-01-preview\",\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 },\r\n {\r\n \"resourceType\": \"namespaces/networkrulesets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-06-01-preview\",\r\n \"2021-01-01-preview\",\r\n \"2018-01-01-preview\",\r\n \"2017-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/privateEndpointConnections\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-06-01-preview\",\r\n \"2021-01-01-preview\",\r\n \"2018-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/eventhubs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-06-01-preview\",\r\n \"2021-01-01-preview\",\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 },\r\n {\r\n \"resourceType\": \"namespaces/eventhubs/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-06-01-preview\",\r\n \"2021-01-01-preview\",\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 },\r\n {\r\n \"resourceType\": \"namespaces/eventhubs/consumergroups\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-06-01-preview\",\r\n \"2021-01-01-preview\",\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 },\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 \"2021-06-01-preview\",\r\n \"2021-01-01-preview\",\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 },\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 \"2021-06-01-preview\",\r\n \"2021-01-01-preview\",\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 },\r\n {\r\n \"resourceType\": \"namespaces/disasterrecoveryconfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-06-01-preview\",\r\n \"2021-01-01-preview\",\r\n \"2018-01-01-preview\",\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 \"2021-06-01-preview\",\r\n \"2021-01-01-preview\",\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 },\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}", + "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 \"Jio India West\",\r\n \"West US 3\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"UAE Central\",\r\n \"Norway West\",\r\n \"Sweden Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-11-01\",\r\n \"2021-06-01-preview\",\r\n \"2021-01-01-preview\",\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 \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"UAE Central\",\r\n \"Norway West\",\r\n \"Sweden Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-11-01\",\r\n \"2021-06-01-preview\",\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 \"2021-11-01\",\r\n \"2021-06-01-preview\",\r\n \"2021-01-01-preview\",\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 },\r\n {\r\n \"resourceType\": \"namespaces/networkrulesets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-11-01\",\r\n \"2021-06-01-preview\",\r\n \"2021-01-01-preview\",\r\n \"2018-01-01-preview\",\r\n \"2017-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/privateEndpointConnections\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-11-01\",\r\n \"2021-06-01-preview\",\r\n \"2021-01-01-preview\",\r\n \"2018-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/eventhubs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-11-01\",\r\n \"2021-06-01-preview\",\r\n \"2021-01-01-preview\",\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 },\r\n {\r\n \"resourceType\": \"namespaces/eventhubs/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-11-01\",\r\n \"2021-06-01-preview\",\r\n \"2021-01-01-preview\",\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 },\r\n {\r\n \"resourceType\": \"namespaces/eventhubs/consumergroups\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-11-01\",\r\n \"2021-06-01-preview\",\r\n \"2021-01-01-preview\",\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 },\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 \"2021-11-01\",\r\n \"2021-06-01-preview\",\r\n \"2021-01-01-preview\",\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 },\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 \"2021-11-01\",\r\n \"2021-06-01-preview\",\r\n \"2021-01-01-preview\",\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 },\r\n {\r\n \"resourceType\": \"namespaces/disasterrecoveryconfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-11-01\",\r\n \"2021-06-01-preview\",\r\n \"2021-01-01-preview\",\r\n \"2018-01-01-preview\",\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 \"2021-11-01\",\r\n \"2021-06-01-preview\",\r\n \"2021-01-01-preview\",\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 },\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/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3335/providers/Microsoft.EventHub/namespaces/sdk-NS-6015?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMzMzNS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTYwMTU/YXBpLXZlcnNpb249MjAyMS0wNi0wMS1wcmV2aWV3", - "RequestMethod": "DELETE", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "6f01037f-1e3c-45c3-9183-40cf8f9850e6" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.27817.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3335/providers/Microsoft.EventHub/namespaces/sdk-NS-6015/operationresults/sdk-NS-6015?api-version=2021-06-01-preview" - ], - "x-ms-request-id": [ - "02c8f9cc-44a8-432e-95cc-d5d3dc1bdb2b_M7SN1_M7SN1" - ], - "Server-SB": [ - "Service-Bus-Resource-Provider/SN1" - ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-deletes": [ - "14998" - ], - "x-ms-correlation-request-id": [ - "e18c2c96-504b-4821-84ff-69444f45a612" - ], - "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210924T043255Z:e18c2c96-504b-4821-84ff-69444f45a612" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 24 Sep 2021 04:32:55 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/Default-EventHub-3634?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlZ3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMzYzND9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/Default-EventHub-876?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlZ3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItODc2P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"Australia East\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "e4da27eb-3dad-4d35-b7f6-53b4ca35e457" + "6f89a706-91c6-4f4c-96c4-8868fa0af9fc" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", + "OSVersion/Microsoft.Windows.10.0.22000.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ], "Content-Type": [ @@ -290,20 +89,23 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:45:02 GMT" + ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1196" ], "x-ms-request-id": [ - "1a435c9e-35cc-46bd-8957-b4bb089f1f67" + "53cb664e-b2ca-40f7-9717-a68c090f2031" ], "x-ms-correlation-request-id": [ - "1a435c9e-35cc-46bd-8957-b4bb089f1f67" + "53cb664e-b2ca-40f7-9717-a68c090f2031" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T043257Z:1a435c9e-35cc-46bd-8957-b4bb089f1f67" + "SOUTHINDIA:20211115T024503Z:53cb664e-b2ca-40f7-9717-a68c090f2031" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -311,11 +113,8 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:32:56 GMT" - ], "Content-Length": [ - "202" + "200" ], "Content-Type": [ "application/json; charset=utf-8" @@ -324,26 +123,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3634\",\r\n \"name\": \"Default-EventHub-3634\",\r\n \"location\": \"australiaeast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-876\",\r\n \"name\": \"Default-EventHub-876\",\r\n \"location\": \"australiaeast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3634/providers/Microsoft.EventHub/namespaces/sdk-NS-6819?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMzYzNC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTY4MTk/YXBpLXZlcnNpb249MjAyMS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-876/providers/Microsoft.EventHub/namespaces/sdk-NS-672?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItODc2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTlMtNjcyP2FwaS12ZXJzaW9uPTIwMjEtMTEtMDE=", "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": [ - "a9d34ab8-ef23-4c50-836b-5bc411837a96" + "d80e1305-1278-44a0-be56-87648592fb5b" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -356,27 +155,30 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:45:09 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "787ea68b-13fb-4475-82ed-e1ab85df7c8e_M6SN1_M6SN1" + "63917900-a474-41e3-a3aa-2b2bb1d0dcdf_M5SN1_M5SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "49" ], "x-ms-correlation-request-id": [ - "3a39f8d4-4a8e-4faa-a08d-62ebdce6c82f" + "a854eb21-c1e0-424b-916e-bb9ebe0e8828" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T043306Z:3a39f8d4-4a8e-4faa-a08d-62ebdce6c82f" + "SOUTHINDIA:20211115T024509Z:a854eb21-c1e0-424b-916e-bb9ebe0e8828" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -384,11 +186,8 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:33:05 GMT" - ], "Content-Length": [ - "734" + "731" ], "Content-Type": [ "application/json; charset=utf-8" @@ -397,47 +196,50 @@ "-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-3634/providers/Microsoft.EventHub/namespaces/sdk-NS-6819\",\r\n \"name\": \"sdk-NS-6819\",\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 \"disableLocalAuth\": false,\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-6819\",\r\n \"createdAt\": \"2021-09-24T04:33:04.27Z\",\r\n \"updatedAt\": \"2021-09-24T04:33:04.27Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-6819.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-876/providers/Microsoft.EventHub/namespaces/sdk-NS-672\",\r\n \"name\": \"sdk-NS-672\",\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 \"disableLocalAuth\": false,\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-672\",\r\n \"createdAt\": \"2021-11-15T02:45:08.213Z\",\r\n \"updatedAt\": \"2021-11-15T02:45:08.213Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-672.servicebus.windows.net:443/\",\r\n \"status\": \"Activating\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3634/providers/Microsoft.EventHub/namespaces/sdk-NS-6819?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMzYzNC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTY4MTk/YXBpLXZlcnNpb249MjAyMS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-876/providers/Microsoft.EventHub/namespaces/sdk-NS-672?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItODc2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTlMtNjcyP2FwaS12ZXJzaW9uPTIwMjEtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:45:40 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "902a6074-1bb5-49c2-99e6-a89cdd0e943c_M5SN1_M5SN1" + "a4e954e6-625b-4c26-ae9b-8cbab98dbbf0_M5SN1_M5SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11953" ], "x-ms-correlation-request-id": [ - "13876b4b-7e8f-4e35-8d17-de1d0b0e45c8" + "38d53bf0-4b8b-43d4-91a8-a58ca0982439" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T043336Z:13876b4b-7e8f-4e35-8d17-de1d0b0e45c8" + "SOUTHINDIA:20211115T024540Z:38d53bf0-4b8b-43d4-91a8-a58ca0982439" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -445,11 +247,8 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:33:35 GMT" - ], "Content-Length": [ - "734" + "731" ], "Content-Type": [ "application/json; charset=utf-8" @@ -458,47 +257,50 @@ "-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-3634/providers/Microsoft.EventHub/namespaces/sdk-NS-6819\",\r\n \"name\": \"sdk-NS-6819\",\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 \"disableLocalAuth\": false,\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-6819\",\r\n \"createdAt\": \"2021-09-24T04:33:04.27Z\",\r\n \"updatedAt\": \"2021-09-24T04:33:04.27Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-6819.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-876/providers/Microsoft.EventHub/namespaces/sdk-NS-672\",\r\n \"name\": \"sdk-NS-672\",\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 \"disableLocalAuth\": false,\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-672\",\r\n \"createdAt\": \"2021-11-15T02:45:08.213Z\",\r\n \"updatedAt\": \"2021-11-15T02:45:08.213Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-672.servicebus.windows.net:443/\",\r\n \"status\": \"Activating\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3634/providers/Microsoft.EventHub/namespaces/sdk-NS-6819?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMzYzNC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTY4MTk/YXBpLXZlcnNpb249MjAyMS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-876/providers/Microsoft.EventHub/namespaces/sdk-NS-672?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItODc2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTlMtNjcyP2FwaS12ZXJzaW9uPTIwMjEtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:46:09 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "ccf4fc26-4cb8-4796-823d-933a86e66c69_M5SN1_M5SN1" + "d6387682-57f1-427c-97c7-f54dac15362e_M5SN1_M5SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11952" ], "x-ms-correlation-request-id": [ - "5efe139e-7d1c-46a8-a2fb-7b2c6a805f1f" + "4bc4f2ec-540f-4530-aa0c-911e33768285" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T043406Z:5efe139e-7d1c-46a8-a2fb-7b2c6a805f1f" + "SOUTHINDIA:20211115T024610Z:4bc4f2ec-540f-4530-aa0c-911e33768285" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -506,11 +308,8 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:34:05 GMT" - ], "Content-Length": [ - "733" + "729" ], "Content-Type": [ "application/json; charset=utf-8" @@ -519,53 +318,56 @@ "-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-3634/providers/Microsoft.EventHub/namespaces/sdk-NS-6819\",\r\n \"name\": \"sdk-NS-6819\",\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 \"disableLocalAuth\": false,\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-6819\",\r\n \"createdAt\": \"2021-09-24T04:33:04.27Z\",\r\n \"updatedAt\": \"2021-09-24T04:33:52.483Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-6819.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-876/providers/Microsoft.EventHub/namespaces/sdk-NS-672\",\r\n \"name\": \"sdk-NS-672\",\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 \"disableLocalAuth\": false,\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-672\",\r\n \"createdAt\": \"2021-11-15T02:45:08.213Z\",\r\n \"updatedAt\": \"2021-11-15T02:46:00.537Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-672.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3634/providers/Microsoft.EventHub/namespaces/sdk-NS-6819?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMzYzNC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTY4MTk/YXBpLXZlcnNpb249MjAyMS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-876/providers/Microsoft.EventHub/namespaces/sdk-NS-672?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItODc2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTlMtNjcyP2FwaS12ZXJzaW9uPTIwMjEtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "50be10dd-95ee-4cd6-8233-ed254a2455ce" + "fbb01f75-41ec-4214-916f-a2f6a876af17" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:46:15 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "e5ca0ee8-8a8a-41a4-bf1a-a5a550c0f939_M5SN1_M5SN1" + "14f44b20-ac72-44fd-8896-add435513351_M5SN1_M5SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11951" ], "x-ms-correlation-request-id": [ - "f1789392-0a58-4e74-9b1f-0b85aba0d035" + "91b18079-9f63-4356-a04a-80ec2fdbb2f3" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T043411Z:f1789392-0a58-4e74-9b1f-0b85aba0d035" + "SOUTHINDIA:20211115T024615Z:91b18079-9f63-4356-a04a-80ec2fdbb2f3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -573,11 +375,8 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:34:10 GMT" - ], "Content-Length": [ - "733" + "729" ], "Content-Type": [ "application/json; charset=utf-8" @@ -586,53 +385,56 @@ "-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-3634/providers/Microsoft.EventHub/namespaces/sdk-NS-6819\",\r\n \"name\": \"sdk-NS-6819\",\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 \"disableLocalAuth\": false,\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-6819\",\r\n \"createdAt\": \"2021-09-24T04:33:04.27Z\",\r\n \"updatedAt\": \"2021-09-24T04:33:52.483Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-6819.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-876/providers/Microsoft.EventHub/namespaces/sdk-NS-672\",\r\n \"name\": \"sdk-NS-672\",\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 \"disableLocalAuth\": false,\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-672\",\r\n \"createdAt\": \"2021-11-15T02:45:08.213Z\",\r\n \"updatedAt\": \"2021-11-15T02:46:00.537Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-672.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3634/providers/Microsoft.EventHub/namespaces/sdk-NS-6819?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMzYzNC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTY4MTk/YXBpLXZlcnNpb249MjAyMS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-876/providers/Microsoft.EventHub/namespaces/sdk-NS-672?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItODc2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTlMtNjcyP2FwaS12ZXJzaW9uPTIwMjEtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4ece1379-1ce3-4225-81bd-01bc9482c747" + "bf3a8061-0b17-4429-a4e9-cd0e2810f232" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:46:15 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "2fde8407-8942-4bbc-8781-ee8a9245bad2_M5SN1_M5SN1" + "61d10a8a-9cac-41f3-9732-c0690c91be04_M5SN1_M5SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11950" ], "x-ms-correlation-request-id": [ - "50fa7ef5-a74c-4faf-bffe-f3503b85862e" + "ba751e4c-16dd-4866-9d55-0b2affb75333" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T043411Z:50fa7ef5-a74c-4faf-bffe-f3503b85862e" + "SOUTHINDIA:20211115T024616Z:ba751e4c-16dd-4866-9d55-0b2affb75333" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -640,11 +442,8 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:34:10 GMT" - ], "Content-Length": [ - "733" + "729" ], "Content-Type": [ "application/json; charset=utf-8" @@ -653,26 +452,26 @@ "-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-3634/providers/Microsoft.EventHub/namespaces/sdk-NS-6819\",\r\n \"name\": \"sdk-NS-6819\",\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 \"disableLocalAuth\": false,\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-6819\",\r\n \"createdAt\": \"2021-09-24T04:33:04.27Z\",\r\n \"updatedAt\": \"2021-09-24T04:33:52.483Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-6819.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-876/providers/Microsoft.EventHub/namespaces/sdk-NS-672\",\r\n \"name\": \"sdk-NS-672\",\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 \"disableLocalAuth\": false,\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-672\",\r\n \"createdAt\": \"2021-11-15T02:45:08.213Z\",\r\n \"updatedAt\": \"2021-11-15T02:46:00.537Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-672.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3634/providers/Microsoft.EventHub/namespaces/sdk-NS-6819/eventhubs/dk-EventHub-azsmnet2715azsmnet4263azsmnet2126azsmnet4804azsmnet5558azsmnet2095azsmnet9560azsmnet640azsmnet6891azsmnet2235azsmnet1064azsmnet4826azsmnet286azsmnet8829azsmnet2760azsmnet9436azsmnet2510azsmnet1574azsmnet5834azsmnet7128azsmnet1625azsmnet4876azsm?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMzYzNC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTY4MTkvZXZlbnRodWJzL2RrLUV2ZW50SHViLWF6c21uZXQyNzE1YXpzbW5ldDQyNjNhenNtbmV0MjEyNmF6c21uZXQ0ODA0YXpzbW5ldDU1NThhenNtbmV0MjA5NWF6c21uZXQ5NTYwYXpzbW5ldDY0MGF6c21uZXQ2ODkxYXpzbW5ldDIyMzVhenNtbmV0MTA2NGF6c21uZXQ0ODI2YXpzbW5ldDI4NmF6c21uZXQ4ODI5YXpzbW5ldDI3NjBhenNtbmV0OTQzNmF6c21uZXQyNTEwYXpzbW5ldDE1NzRhenNtbmV0NTgzNGF6c21uZXQ3MTI4YXpzbW5ldDE2MjVhenNtbmV0NDg3NmF6c20/YXBpLXZlcnNpb249MjAyMS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-876/providers/Microsoft.EventHub/namespaces/sdk-NS-672/eventhubs/dk-EventHub-azsmnet2808azsmnet7266azsmnet505azsmnet3275azsmnet8518azsmnet4247azsmnet5516azsmnet3321azsmnet9020azsmnet920azsmnet6731azsmnet6040azsmnet7603azsmnet8378azsmnet9783azsmnet831azsmnet259azsmnet6168azsmnet4921azsmnet8683azsmnet7343azsmnet3763azsmne?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItODc2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTlMtNjcyL2V2ZW50aHVicy9kay1FdmVudEh1Yi1henNtbmV0MjgwOGF6c21uZXQ3MjY2YXpzbW5ldDUwNWF6c21uZXQzMjc1YXpzbW5ldDg1MThhenNtbmV0NDI0N2F6c21uZXQ1NTE2YXpzbW5ldDMzMjFhenNtbmV0OTAyMGF6c21uZXQ5MjBhenNtbmV0NjczMWF6c21uZXQ2MDQwYXpzbW5ldDc2MDNhenNtbmV0ODM3OGF6c21uZXQ5NzgzYXpzbW5ldDgzMWF6c21uZXQyNTlhenNtbmV0NjE2OGF6c21uZXQ0OTIxYXpzbW5ldDg2ODNhenNtbmV0NzM0M2F6c21uZXQzNzYzYXpzbW5lP2FwaS12ZXJzaW9uPTIwMjEtMTEtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"messageRetentionInDays\": 5\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "b6aa4279-52ae-46b6-a6eb-6dd14e233749" + "556a3947-04d3-4ab2-b399-35579aeef3b8" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -685,27 +484,30 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:46:17 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "80873df9-39fd-433c-abdf-8f54eff301e7_M5SN1_M5SN1" + "a0fa7ddb-75bc-441e-bdd7-4095ca217bf5_M5SN1_M5SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1195" ], "x-ms-correlation-request-id": [ - "05958ffb-be62-4c78-a902-dd67d306fa8e" + "9a781047-e07f-4b72-91f9-6920319761a9" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T043415Z:05958ffb-be62-4c78-a902-dd67d306fa8e" + "SOUTHINDIA:20211115T024618Z:9a781047-e07f-4b72-91f9-6920319761a9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -713,11 +515,8 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:34:14 GMT" - ], "Content-Length": [ - "947" + "946" ], "Content-Type": [ "application/json; charset=utf-8" @@ -726,53 +525,56 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3634/providers/Microsoft.EventHub/namespaces/sdk-NS-6819/eventhubs/dk-EventHub-azsmnet2715azsmnet4263azsmnet2126azsmnet4804azsmnet5558azsmnet2095azsmnet9560azsmnet640azsmnet6891azsmnet2235azsmnet1064azsmnet4826azsmnet286azsmnet8829azsmnet2760azsmnet9436azsmnet2510azsmnet1574azsmnet5834azsmnet7128azsmnet1625azsmnet4876azsm\",\r\n \"name\": \"dk-EventHub-azsmnet2715azsmnet4263azsmnet2126azsmnet4804azsmnet5558azsmnet2095azsmnet9560azsmnet640azsmnet6891azsmnet2235azsmnet1064azsmnet4826azsmnet286azsmnet8829azsmnet2760azsmnet9436azsmnet2510azsmnet1574azsmnet5834azsmnet7128azsmnet1625azsmnet4876azsm\",\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\": \"2021-09-24T04:34:14.3Z\",\r\n \"updatedAt\": \"2021-09-24T04:34:14.543Z\",\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-876/providers/Microsoft.EventHub/namespaces/sdk-NS-672/eventhubs/dk-EventHub-azsmnet2808azsmnet7266azsmnet505azsmnet3275azsmnet8518azsmnet4247azsmnet5516azsmnet3321azsmnet9020azsmnet920azsmnet6731azsmnet6040azsmnet7603azsmnet8378azsmnet9783azsmnet831azsmnet259azsmnet6168azsmnet4921azsmnet8683azsmnet7343azsmnet3763azsmne\",\r\n \"name\": \"dk-EventHub-azsmnet2808azsmnet7266azsmnet505azsmnet3275azsmnet8518azsmnet4247azsmnet5516azsmnet3321azsmnet9020azsmnet920azsmnet6731azsmnet6040azsmnet7603azsmnet8378azsmnet9783azsmnet831azsmnet259azsmnet6168azsmnet4921azsmnet8683azsmnet7343azsmnet3763azsmne\",\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\": \"2021-11-15T02:46:17.897Z\",\r\n \"updatedAt\": \"2021-11-15T02:46:18.11Z\",\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/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3634/providers/Microsoft.EventHub/namespaces/sdk-NS-6819/eventhubs/dk-EventHub-azsmnet2715azsmnet4263azsmnet2126azsmnet4804azsmnet5558azsmnet2095azsmnet9560azsmnet640azsmnet6891azsmnet2235azsmnet1064azsmnet4826azsmnet286azsmnet8829azsmnet2760azsmnet9436azsmnet2510azsmnet1574azsmnet5834azsmnet7128azsmnet1625azsmnet4876azsm?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMzYzNC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTY4MTkvZXZlbnRodWJzL2RrLUV2ZW50SHViLWF6c21uZXQyNzE1YXpzbW5ldDQyNjNhenNtbmV0MjEyNmF6c21uZXQ0ODA0YXpzbW5ldDU1NThhenNtbmV0MjA5NWF6c21uZXQ5NTYwYXpzbW5ldDY0MGF6c21uZXQ2ODkxYXpzbW5ldDIyMzVhenNtbmV0MTA2NGF6c21uZXQ0ODI2YXpzbW5ldDI4NmF6c21uZXQ4ODI5YXpzbW5ldDI3NjBhenNtbmV0OTQzNmF6c21uZXQyNTEwYXpzbW5ldDE1NzRhenNtbmV0NTgzNGF6c21uZXQ3MTI4YXpzbW5ldDE2MjVhenNtbmV0NDg3NmF6c20/YXBpLXZlcnNpb249MjAyMS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-876/providers/Microsoft.EventHub/namespaces/sdk-NS-672/eventhubs/dk-EventHub-azsmnet2808azsmnet7266azsmnet505azsmnet3275azsmnet8518azsmnet4247azsmnet5516azsmnet3321azsmnet9020azsmnet920azsmnet6731azsmnet6040azsmnet7603azsmnet8378azsmnet9783azsmnet831azsmnet259azsmnet6168azsmnet4921azsmnet8683azsmnet7343azsmnet3763azsmne?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItODc2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTlMtNjcyL2V2ZW50aHVicy9kay1FdmVudEh1Yi1henNtbmV0MjgwOGF6c21uZXQ3MjY2YXpzbW5ldDUwNWF6c21uZXQzMjc1YXpzbW5ldDg1MThhenNtbmV0NDI0N2F6c21uZXQ1NTE2YXpzbW5ldDMzMjFhenNtbmV0OTAyMGF6c21uZXQ5MjBhenNtbmV0NjczMWF6c21uZXQ2MDQwYXpzbW5ldDc2MDNhenNtbmV0ODM3OGF6c21uZXQ5NzgzYXpzbW5ldDgzMWF6c21uZXQyNTlhenNtbmV0NjE2OGF6c21uZXQ0OTIxYXpzbW5ldDg2ODNhenNtbmV0NzM0M2F6c21uZXQzNzYzYXpzbW5lP2FwaS12ZXJzaW9uPTIwMjEtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9c3a6897-bbe9-40dd-9b7a-0ac66e054b89" + "9f0cf7f8-98f3-419a-ac39-c3733b0fb49d" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:46:18 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "45c94932-9a14-40b4-8662-a33de048f251_M6SN1_M6SN1" + "f56910bb-aa8c-4bd8-93d3-71fed35cdb0f_M5SN1_M5SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11949" ], "x-ms-correlation-request-id": [ - "7bee83e7-9e4e-4f26-93de-4d03cf0c0440" + "a39baa41-c619-483c-80e0-7f427d06f27a" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T043416Z:7bee83e7-9e4e-4f26-93de-4d03cf0c0440" + "SOUTHINDIA:20211115T024619Z:a39baa41-c619-483c-80e0-7f427d06f27a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -780,11 +582,8 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:34:15 GMT" - ], "Content-Length": [ - "945" + "944" ], "Content-Type": [ "application/json; charset=utf-8" @@ -793,26 +592,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3634/providers/Microsoft.EventHub/namespaces/sdk-NS-6819/eventhubs/dk-EventHub-azsmnet2715azsmnet4263azsmnet2126azsmnet4804azsmnet5558azsmnet2095azsmnet9560azsmnet640azsmnet6891azsmnet2235azsmnet1064azsmnet4826azsmnet286azsmnet8829azsmnet2760azsmnet9436azsmnet2510azsmnet1574azsmnet5834azsmnet7128azsmnet1625azsmnet4876azsm\",\r\n \"name\": \"dk-EventHub-azsmnet2715azsmnet4263azsmnet2126azsmnet4804azsmnet5558azsmnet2095azsmnet9560azsmnet640azsmnet6891azsmnet2235azsmnet1064azsmnet4826azsmnet286azsmnet8829azsmnet2760azsmnet9436azsmnet2510azsmnet1574azsmnet5834azsmnet7128azsmnet1625azsmnet4876azsm\",\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\": \"2021-09-24T04:34:14.3\",\r\n \"updatedAt\": \"2021-09-24T04:34:14.543\",\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-876/providers/Microsoft.EventHub/namespaces/sdk-NS-672/eventhubs/dk-EventHub-azsmnet2808azsmnet7266azsmnet505azsmnet3275azsmnet8518azsmnet4247azsmnet5516azsmnet3321azsmnet9020azsmnet920azsmnet6731azsmnet6040azsmnet7603azsmnet8378azsmnet9783azsmnet831azsmnet259azsmnet6168azsmnet4921azsmnet8683azsmnet7343azsmnet3763azsmne\",\r\n \"name\": \"dk-EventHub-azsmnet2808azsmnet7266azsmnet505azsmnet3275azsmnet8518azsmnet4247azsmnet5516azsmnet3321azsmnet9020azsmnet920azsmnet6731azsmnet6040azsmnet7603azsmnet8378azsmnet9783azsmnet831azsmnet259azsmnet6168azsmnet4921azsmnet8683azsmnet7343azsmnet3763azsmne\",\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\": \"2021-11-15T02:46:17.897\",\r\n \"updatedAt\": \"2021-11-15T02:46:18.11\",\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/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3634/providers/Microsoft.EventHub/namespaces/sdk-NS-6819/eventhubs/dk-EventHub-azsmnet2715azsmnet4263azsmnet2126azsmnet4804azsmnet5558azsmnet2095azsmnet9560azsmnet640azsmnet6891azsmnet2235azsmnet1064azsmnet4826azsmnet286azsmnet8829azsmnet2760azsmnet9436azsmnet2510azsmnet1574azsmnet5834azsmnet7128azsmnet1625azsmnet4876azsm/authorizationRules/sdk-Authrules-?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMzYzNC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTY4MTkvZXZlbnRodWJzL2RrLUV2ZW50SHViLWF6c21uZXQyNzE1YXpzbW5ldDQyNjNhenNtbmV0MjEyNmF6c21uZXQ0ODA0YXpzbW5ldDU1NThhenNtbmV0MjA5NWF6c21uZXQ5NTYwYXpzbW5ldDY0MGF6c21uZXQ2ODkxYXpzbW5ldDIyMzVhenNtbmV0MTA2NGF6c21uZXQ0ODI2YXpzbW5ldDI4NmF6c21uZXQ4ODI5YXpzbW5ldDI3NjBhenNtbmV0OTQzNmF6c21uZXQyNTEwYXpzbW5ldDE1NzRhenNtbmV0NTgzNGF6c21uZXQ3MTI4YXpzbW5ldDE2MjVhenNtbmV0NDg3NmF6c20vYXV0aG9yaXphdGlvblJ1bGVzL3Nkay1BdXRocnVsZXMtP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-876/providers/Microsoft.EventHub/namespaces/sdk-NS-672/eventhubs/dk-EventHub-azsmnet2808azsmnet7266azsmnet505azsmnet3275azsmnet8518azsmnet4247azsmnet5516azsmnet3321azsmnet9020azsmnet920azsmnet6731azsmnet6040azsmnet7603azsmnet8378azsmnet9783azsmnet831azsmnet259azsmnet6168azsmnet4921azsmnet8683azsmnet7343azsmnet3763azsmne/authorizationRules/sdk-Authrules-?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItODc2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTlMtNjcyL2V2ZW50aHVicy9kay1FdmVudEh1Yi1henNtbmV0MjgwOGF6c21uZXQ3MjY2YXpzbW5ldDUwNWF6c21uZXQzMjc1YXpzbW5ldDg1MThhenNtbmV0NDI0N2F6c21uZXQ1NTE2YXpzbW5ldDMzMjFhenNtbmV0OTAyMGF6c21uZXQ5MjBhenNtbmV0NjczMWF6c21uZXQ2MDQwYXpzbW5ldDc2MDNhenNtbmV0ODM3OGF6c21uZXQ5NzgzYXpzbW5ldDgzMWF6c21uZXQyNTlhenNtbmV0NjE2OGF6c21uZXQ0OTIxYXpzbW5ldDg2ODNhenNtbmV0NzM0M2F6c21uZXQzNzYzYXpzbW5lL2F1dGhvcml6YXRpb25SdWxlcy9zZGstQXV0aHJ1bGVzLT9hcGktdmVyc2lvbj0yMDIxLTExLTAx", "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": [ - "93db74ef-5cc1-4e37-a183-7966edf2e6c4" + "f27b3301-daf2-4952-ac80-509926843e43" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -825,27 +624,30 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:46:19 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "1944a6a4-40de-4b52-b67a-835a9fe37883_M6SN1_M6SN1" + "d0bccd0f-06a2-4e69-bdc6-9a2aed339378_M5SN1_M5SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1194" ], "x-ms-correlation-request-id": [ - "b859b508-96f9-4efd-a473-d181b399d3a2" + "81aeedf2-9e0f-48d6-8294-f439d767fd62" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T043417Z:b859b508-96f9-4efd-a473-d181b399d3a2" + "SOUTHINDIA:20211115T024620Z:81aeedf2-9e0f-48d6-8294-f439d767fd62" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -853,11 +655,8 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:34:16 GMT" - ], "Content-Length": [ - "612" + "610" ], "Content-Type": [ "application/json; charset=utf-8" @@ -866,26 +665,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3634/providers/Microsoft.EventHub/namespaces/sdk-NS-6819/eventhubs/dk-EventHub-azsmnet2715azsmnet4263azsmnet2126azsmnet4804azsmnet5558azsmnet2095azsmnet9560azsmnet640azsmnet6891azsmnet2235azsmnet1064azsmnet4826azsmnet286azsmnet8829azsmnet2760azsmnet9436azsmnet2510azsmnet1574azsmnet5834azsmnet7128azsmnet1625azsmnet4876azsm/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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-876/providers/Microsoft.EventHub/namespaces/sdk-NS-672/eventhubs/dk-EventHub-azsmnet2808azsmnet7266azsmnet505azsmnet3275azsmnet8518azsmnet4247azsmnet5516azsmnet3321azsmnet9020azsmnet920azsmnet6731azsmnet6040azsmnet7603azsmnet8378azsmnet9783azsmnet831azsmnet259azsmnet6168azsmnet4921azsmnet8683azsmnet7343azsmnet3763azsmne/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/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3634/providers/Microsoft.EventHub/namespaces/sdk-NS-6819/eventhubs/dk-EventHub-azsmnet2715azsmnet4263azsmnet2126azsmnet4804azsmnet5558azsmnet2095azsmnet9560azsmnet640azsmnet6891azsmnet2235azsmnet1064azsmnet4826azsmnet286azsmnet8829azsmnet2760azsmnet9436azsmnet2510azsmnet1574azsmnet5834azsmnet7128azsmnet1625azsmnet4876azsm/authorizationRules/sdk-Authrules-?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMzYzNC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTY4MTkvZXZlbnRodWJzL2RrLUV2ZW50SHViLWF6c21uZXQyNzE1YXpzbW5ldDQyNjNhenNtbmV0MjEyNmF6c21uZXQ0ODA0YXpzbW5ldDU1NThhenNtbmV0MjA5NWF6c21uZXQ5NTYwYXpzbW5ldDY0MGF6c21uZXQ2ODkxYXpzbW5ldDIyMzVhenNtbmV0MTA2NGF6c21uZXQ0ODI2YXpzbW5ldDI4NmF6c21uZXQ4ODI5YXpzbW5ldDI3NjBhenNtbmV0OTQzNmF6c21uZXQyNTEwYXpzbW5ldDE1NzRhenNtbmV0NTgzNGF6c21uZXQ3MTI4YXpzbW5ldDE2MjVhenNtbmV0NDg3NmF6c20vYXV0aG9yaXphdGlvblJ1bGVzL3Nkay1BdXRocnVsZXMtP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-876/providers/Microsoft.EventHub/namespaces/sdk-NS-672/eventhubs/dk-EventHub-azsmnet2808azsmnet7266azsmnet505azsmnet3275azsmnet8518azsmnet4247azsmnet5516azsmnet3321azsmnet9020azsmnet920azsmnet6731azsmnet6040azsmnet7603azsmnet8378azsmnet9783azsmnet831azsmnet259azsmnet6168azsmnet4921azsmnet8683azsmnet7343azsmnet3763azsmne/authorizationRules/sdk-Authrules-?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItODc2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTlMtNjcyL2V2ZW50aHVicy9kay1FdmVudEh1Yi1henNtbmV0MjgwOGF6c21uZXQ3MjY2YXpzbW5ldDUwNWF6c21uZXQzMjc1YXpzbW5ldDg1MThhenNtbmV0NDI0N2F6c21uZXQ1NTE2YXpzbW5ldDMzMjFhenNtbmV0OTAyMGF6c21uZXQ5MjBhenNtbmV0NjczMWF6c21uZXQ2MDQwYXpzbW5ldDc2MDNhenNtbmV0ODM3OGF6c21uZXQ5NzgzYXpzbW5ldDgzMWF6c21uZXQyNTlhenNtbmV0NjE2OGF6c21uZXQ0OTIxYXpzbW5ldDg2ODNhenNtbmV0NzM0M2F6c21uZXQzNzYzYXpzbW5lL2F1dGhvcml6YXRpb25SdWxlcy9zZGstQXV0aHJ1bGVzLT9hcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"rights\": [\r\n \"Listen\"\r\n ]\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "d92e23af-1b8e-477d-bd44-079193498c47" + "882cb6bc-b93c-436e-96e0-2493896bc69f" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -898,27 +697,30 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:46:21 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "96613159-ece7-412b-b158-50ce8970dc62_M6SN1_M6SN1" + "b47b233d-deca-45c8-ab40-d37627be7375_M5SN1_M5SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1193" ], "x-ms-correlation-request-id": [ - "fa533613-3ac2-4537-a1e3-f9d549adce95" + "3acecb20-007b-4187-93ea-31acb268bf27" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T043419Z:fa533613-3ac2-4537-a1e3-f9d549adce95" + "SOUTHINDIA:20211115T024622Z:3acecb20-007b-4187-93ea-31acb268bf27" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -926,11 +728,8 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:34:18 GMT" - ], "Content-Length": [ - "605" + "603" ], "Content-Type": [ "application/json; charset=utf-8" @@ -939,53 +738,56 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3634/providers/Microsoft.EventHub/namespaces/sdk-NS-6819/eventhubs/dk-EventHub-azsmnet2715azsmnet4263azsmnet2126azsmnet4804azsmnet5558azsmnet2095azsmnet9560azsmnet640azsmnet6891azsmnet2235azsmnet1064azsmnet4826azsmnet286azsmnet8829azsmnet2760azsmnet9436azsmnet2510azsmnet1574azsmnet5834azsmnet7128azsmnet1625azsmnet4876azsm/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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-876/providers/Microsoft.EventHub/namespaces/sdk-NS-672/eventhubs/dk-EventHub-azsmnet2808azsmnet7266azsmnet505azsmnet3275azsmnet8518azsmnet4247azsmnet5516azsmnet3321azsmnet9020azsmnet920azsmnet6731azsmnet6040azsmnet7603azsmnet8378azsmnet9783azsmnet831azsmnet259azsmnet6168azsmnet4921azsmnet8683azsmnet7343azsmnet3763azsmne/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/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3634/providers/Microsoft.EventHub/namespaces/sdk-NS-6819/eventhubs/dk-EventHub-azsmnet2715azsmnet4263azsmnet2126azsmnet4804azsmnet5558azsmnet2095azsmnet9560azsmnet640azsmnet6891azsmnet2235azsmnet1064azsmnet4826azsmnet286azsmnet8829azsmnet2760azsmnet9436azsmnet2510azsmnet1574azsmnet5834azsmnet7128azsmnet1625azsmnet4876azsm/authorizationRules/sdk-Authrules-?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMzYzNC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTY4MTkvZXZlbnRodWJzL2RrLUV2ZW50SHViLWF6c21uZXQyNzE1YXpzbW5ldDQyNjNhenNtbmV0MjEyNmF6c21uZXQ0ODA0YXpzbW5ldDU1NThhenNtbmV0MjA5NWF6c21uZXQ5NTYwYXpzbW5ldDY0MGF6c21uZXQ2ODkxYXpzbW5ldDIyMzVhenNtbmV0MTA2NGF6c21uZXQ0ODI2YXpzbW5ldDI4NmF6c21uZXQ4ODI5YXpzbW5ldDI3NjBhenNtbmV0OTQzNmF6c21uZXQyNTEwYXpzbW5ldDE1NzRhenNtbmV0NTgzNGF6c21uZXQ3MTI4YXpzbW5ldDE2MjVhenNtbmV0NDg3NmF6c20vYXV0aG9yaXphdGlvblJ1bGVzL3Nkay1BdXRocnVsZXMtP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-876/providers/Microsoft.EventHub/namespaces/sdk-NS-672/eventhubs/dk-EventHub-azsmnet2808azsmnet7266azsmnet505azsmnet3275azsmnet8518azsmnet4247azsmnet5516azsmnet3321azsmnet9020azsmnet920azsmnet6731azsmnet6040azsmnet7603azsmnet8378azsmnet9783azsmnet831azsmnet259azsmnet6168azsmnet4921azsmnet8683azsmnet7343azsmnet3763azsmne/authorizationRules/sdk-Authrules-?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItODc2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTlMtNjcyL2V2ZW50aHVicy9kay1FdmVudEh1Yi1henNtbmV0MjgwOGF6c21uZXQ3MjY2YXpzbW5ldDUwNWF6c21uZXQzMjc1YXpzbW5ldDg1MThhenNtbmV0NDI0N2F6c21uZXQ1NTE2YXpzbW5ldDMzMjFhenNtbmV0OTAyMGF6c21uZXQ5MjBhenNtbmV0NjczMWF6c21uZXQ2MDQwYXpzbW5ldDc2MDNhenNtbmV0ODM3OGF6c21uZXQ5NzgzYXpzbW5ldDgzMWF6c21uZXQyNTlhenNtbmV0NjE2OGF6c21uZXQ0OTIxYXpzbW5ldDg2ODNhenNtbmV0NzM0M2F6c21uZXQzNzYzYXpzbW5lL2F1dGhvcml6YXRpb25SdWxlcy9zZGstQXV0aHJ1bGVzLT9hcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f4928564-8bc3-48fa-8b3d-99fb411b23db" + "c0b8da9f-9c4b-4406-8309-04b740c04268" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:46:20 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "594ae6b5-9334-40f3-9a22-995e606a8c8b_M6SN1_M6SN1" + "7c8382c8-2d8a-440e-8b88-2250d4b47015_M5SN1_M5SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11948" ], "x-ms-correlation-request-id": [ - "4354b320-6a13-4444-8b24-92c817362b77" + "b632a3e2-27a2-431a-9fc6-1bfa59e04611" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T043418Z:4354b320-6a13-4444-8b24-92c817362b77" + "SOUTHINDIA:20211115T024620Z:b632a3e2-27a2-431a-9fc6-1bfa59e04611" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -993,11 +795,8 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:34:17 GMT" - ], "Content-Length": [ - "612" + "610" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1006,53 +805,56 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3634/providers/Microsoft.EventHub/namespaces/sdk-NS-6819/eventhubs/dk-EventHub-azsmnet2715azsmnet4263azsmnet2126azsmnet4804azsmnet5558azsmnet2095azsmnet9560azsmnet640azsmnet6891azsmnet2235azsmnet1064azsmnet4826azsmnet286azsmnet8829azsmnet2760azsmnet9436azsmnet2510azsmnet1574azsmnet5834azsmnet7128azsmnet1625azsmnet4876azsm/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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-876/providers/Microsoft.EventHub/namespaces/sdk-NS-672/eventhubs/dk-EventHub-azsmnet2808azsmnet7266azsmnet505azsmnet3275azsmnet8518azsmnet4247azsmnet5516azsmnet3321azsmnet9020azsmnet920azsmnet6731azsmnet6040azsmnet7603azsmnet8378azsmnet9783azsmnet831azsmnet259azsmnet6168azsmnet4921azsmnet8683azsmnet7343azsmnet3763azsmne/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/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3634/providers/Microsoft.EventHub/namespaces/sdk-NS-6819/eventhubs/dk-EventHub-azsmnet2715azsmnet4263azsmnet2126azsmnet4804azsmnet5558azsmnet2095azsmnet9560azsmnet640azsmnet6891azsmnet2235azsmnet1064azsmnet4826azsmnet286azsmnet8829azsmnet2760azsmnet9436azsmnet2510azsmnet1574azsmnet5834azsmnet7128azsmnet1625azsmnet4876azsm/authorizationRules/sdk-Authrules-?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMzYzNC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTY4MTkvZXZlbnRodWJzL2RrLUV2ZW50SHViLWF6c21uZXQyNzE1YXpzbW5ldDQyNjNhenNtbmV0MjEyNmF6c21uZXQ0ODA0YXpzbW5ldDU1NThhenNtbmV0MjA5NWF6c21uZXQ5NTYwYXpzbW5ldDY0MGF6c21uZXQ2ODkxYXpzbW5ldDIyMzVhenNtbmV0MTA2NGF6c21uZXQ0ODI2YXpzbW5ldDI4NmF6c21uZXQ4ODI5YXpzbW5ldDI3NjBhenNtbmV0OTQzNmF6c21uZXQyNTEwYXpzbW5ldDE1NzRhenNtbmV0NTgzNGF6c21uZXQ3MTI4YXpzbW5ldDE2MjVhenNtbmV0NDg3NmF6c20vYXV0aG9yaXphdGlvblJ1bGVzL3Nkay1BdXRocnVsZXMtP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-876/providers/Microsoft.EventHub/namespaces/sdk-NS-672/eventhubs/dk-EventHub-azsmnet2808azsmnet7266azsmnet505azsmnet3275azsmnet8518azsmnet4247azsmnet5516azsmnet3321azsmnet9020azsmnet920azsmnet6731azsmnet6040azsmnet7603azsmnet8378azsmnet9783azsmnet831azsmnet259azsmnet6168azsmnet4921azsmnet8683azsmnet7343azsmnet3763azsmne/authorizationRules/sdk-Authrules-?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItODc2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTlMtNjcyL2V2ZW50aHVicy9kay1FdmVudEh1Yi1henNtbmV0MjgwOGF6c21uZXQ3MjY2YXpzbW5ldDUwNWF6c21uZXQzMjc1YXpzbW5ldDg1MThhenNtbmV0NDI0N2F6c21uZXQ1NTE2YXpzbW5ldDMzMjFhenNtbmV0OTAyMGF6c21uZXQ5MjBhenNtbmV0NjczMWF6c21uZXQ2MDQwYXpzbW5ldDc2MDNhenNtbmV0ODM3OGF6c21uZXQ5NzgzYXpzbW5ldDgzMWF6c21uZXQyNTlhenNtbmV0NjE2OGF6c21uZXQ0OTIxYXpzbW5ldDg2ODNhenNtbmV0NzM0M2F6c21uZXQzNzYzYXpzbW5lL2F1dGhvcml6YXRpb25SdWxlcy9zZGstQXV0aHJ1bGVzLT9hcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a7d4b005-2aeb-45aa-8a8a-ce74c28a23d5" + "c52ce54b-78ed-44e8-9577-0289e4046902" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:46:22 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "a56517fe-eb1a-4385-a785-af5d59a9d1fb_M6SN1_M6SN1" + "5978cd91-ae4f-4604-8eb3-0d678d4b5e5b_M5SN1_M5SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11946" ], "x-ms-correlation-request-id": [ - "75016848-bc5d-4a81-bc20-96552f971987" + "45d33b30-7cda-4033-9d29-b5dc74cb0db0" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T043419Z:75016848-bc5d-4a81-bc20-96552f971987" + "SOUTHINDIA:20211115T024623Z:45d33b30-7cda-4033-9d29-b5dc74cb0db0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1060,11 +862,8 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:34:18 GMT" - ], "Content-Length": [ - "605" + "603" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1073,53 +872,56 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3634/providers/Microsoft.EventHub/namespaces/sdk-NS-6819/eventhubs/dk-EventHub-azsmnet2715azsmnet4263azsmnet2126azsmnet4804azsmnet5558azsmnet2095azsmnet9560azsmnet640azsmnet6891azsmnet2235azsmnet1064azsmnet4826azsmnet286azsmnet8829azsmnet2760azsmnet9436azsmnet2510azsmnet1574azsmnet5834azsmnet7128azsmnet1625azsmnet4876azsm/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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-876/providers/Microsoft.EventHub/namespaces/sdk-NS-672/eventhubs/dk-EventHub-azsmnet2808azsmnet7266azsmnet505azsmnet3275azsmnet8518azsmnet4247azsmnet5516azsmnet3321azsmnet9020azsmnet920azsmnet6731azsmnet6040azsmnet7603azsmnet8378azsmnet9783azsmnet831azsmnet259azsmnet6168azsmnet4921azsmnet8683azsmnet7343azsmnet3763azsmne/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/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3634/providers/Microsoft.EventHub/namespaces/sdk-NS-6819/eventhubs/dk-EventHub-azsmnet2715azsmnet4263azsmnet2126azsmnet4804azsmnet5558azsmnet2095azsmnet9560azsmnet640azsmnet6891azsmnet2235azsmnet1064azsmnet4826azsmnet286azsmnet8829azsmnet2760azsmnet9436azsmnet2510azsmnet1574azsmnet5834azsmnet7128azsmnet1625azsmnet4876azsm/authorizationRules?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMzYzNC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTY4MTkvZXZlbnRodWJzL2RrLUV2ZW50SHViLWF6c21uZXQyNzE1YXpzbW5ldDQyNjNhenNtbmV0MjEyNmF6c21uZXQ0ODA0YXpzbW5ldDU1NThhenNtbmV0MjA5NWF6c21uZXQ5NTYwYXpzbW5ldDY0MGF6c21uZXQ2ODkxYXpzbW5ldDIyMzVhenNtbmV0MTA2NGF6c21uZXQ0ODI2YXpzbW5ldDI4NmF6c21uZXQ4ODI5YXpzbW5ldDI3NjBhenNtbmV0OTQzNmF6c21uZXQyNTEwYXpzbW5ldDE1NzRhenNtbmV0NTgzNGF6c21uZXQ3MTI4YXpzbW5ldDE2MjVhenNtbmV0NDg3NmF6c20vYXV0aG9yaXphdGlvblJ1bGVzP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-876/providers/Microsoft.EventHub/namespaces/sdk-NS-672/eventhubs/dk-EventHub-azsmnet2808azsmnet7266azsmnet505azsmnet3275azsmnet8518azsmnet4247azsmnet5516azsmnet3321azsmnet9020azsmnet920azsmnet6731azsmnet6040azsmnet7603azsmnet8378azsmnet9783azsmnet831azsmnet259azsmnet6168azsmnet4921azsmnet8683azsmnet7343azsmnet3763azsmne/authorizationRules?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItODc2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTlMtNjcyL2V2ZW50aHVicy9kay1FdmVudEh1Yi1henNtbmV0MjgwOGF6c21uZXQ3MjY2YXpzbW5ldDUwNWF6c21uZXQzMjc1YXpzbW5ldDg1MThhenNtbmV0NDI0N2F6c21uZXQ1NTE2YXpzbW5ldDMzMjFhenNtbmV0OTAyMGF6c21uZXQ5MjBhenNtbmV0NjczMWF6c21uZXQ2MDQwYXpzbW5ldDc2MDNhenNtbmV0ODM3OGF6c21uZXQ5NzgzYXpzbW5ldDgzMWF6c21uZXQyNTlhenNtbmV0NjE2OGF6c21uZXQ0OTIxYXpzbW5ldDg2ODNhenNtbmV0NzM0M2F6c21uZXQzNzYzYXpzbW5lL2F1dGhvcml6YXRpb25SdWxlcz9hcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bc85db80-66b0-47ce-9652-853a8947c864" + "21eb1cb8-5e19-442d-a911-73897d880759" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:46:20 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "f9d7eb47-2437-46e3-baf8-8f924340a55b_M6SN1_M6SN1" + "1ab32f86-970e-424d-bbf2-e7812d099ff0_M5SN1_M5SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11947" ], "x-ms-correlation-request-id": [ - "9a24451c-074c-40c1-a485-77816aa75122" + "65deff8d-79ef-4512-9822-221e89980402" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T043418Z:9a24451c-074c-40c1-a485-77816aa75122" + "SOUTHINDIA:20211115T024621Z:65deff8d-79ef-4512-9822-221e89980402" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1127,11 +929,8 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:34:17 GMT" - ], "Content-Length": [ - "624" + "622" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1140,53 +939,56 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3634/providers/Microsoft.EventHub/namespaces/sdk-NS-6819/eventhubs/dk-EventHub-azsmnet2715azsmnet4263azsmnet2126azsmnet4804azsmnet5558azsmnet2095azsmnet9560azsmnet640azsmnet6891azsmnet2235azsmnet1064azsmnet4826azsmnet286azsmnet8829azsmnet2760azsmnet9436azsmnet2510azsmnet1574azsmnet5834azsmnet7128azsmnet1625azsmnet4876azsm/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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-876/providers/Microsoft.EventHub/namespaces/sdk-NS-672/eventhubs/dk-EventHub-azsmnet2808azsmnet7266azsmnet505azsmnet3275azsmnet8518azsmnet4247azsmnet5516azsmnet3321azsmnet9020azsmnet920azsmnet6731azsmnet6040azsmnet7603azsmnet8378azsmnet9783azsmnet831azsmnet259azsmnet6168azsmnet4921azsmnet8683azsmnet7343azsmnet3763azsmne/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/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3634/providers/Microsoft.EventHub/namespaces/sdk-NS-6819/eventhubs/dk-EventHub-azsmnet2715azsmnet4263azsmnet2126azsmnet4804azsmnet5558azsmnet2095azsmnet9560azsmnet640azsmnet6891azsmnet2235azsmnet1064azsmnet4826azsmnet286azsmnet8829azsmnet2760azsmnet9436azsmnet2510azsmnet1574azsmnet5834azsmnet7128azsmnet1625azsmnet4876azsm/authorizationRules/sdk-Authrules-/listKeys?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMzYzNC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTY4MTkvZXZlbnRodWJzL2RrLUV2ZW50SHViLWF6c21uZXQyNzE1YXpzbW5ldDQyNjNhenNtbmV0MjEyNmF6c21uZXQ0ODA0YXpzbW5ldDU1NThhenNtbmV0MjA5NWF6c21uZXQ5NTYwYXpzbW5ldDY0MGF6c21uZXQ2ODkxYXpzbW5ldDIyMzVhenNtbmV0MTA2NGF6c21uZXQ0ODI2YXpzbW5ldDI4NmF6c21uZXQ4ODI5YXpzbW5ldDI3NjBhenNtbmV0OTQzNmF6c21uZXQyNTEwYXpzbW5ldDE1NzRhenNtbmV0NTgzNGF6c21uZXQ3MTI4YXpzbW5ldDE2MjVhenNtbmV0NDg3NmF6c20vYXV0aG9yaXphdGlvblJ1bGVzL3Nkay1BdXRocnVsZXMtL2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-876/providers/Microsoft.EventHub/namespaces/sdk-NS-672/eventhubs/dk-EventHub-azsmnet2808azsmnet7266azsmnet505azsmnet3275azsmnet8518azsmnet4247azsmnet5516azsmnet3321azsmnet9020azsmnet920azsmnet6731azsmnet6040azsmnet7603azsmnet8378azsmnet9783azsmnet831azsmnet259azsmnet6168azsmnet4921azsmnet8683azsmnet7343azsmnet3763azsmne/authorizationRules/sdk-Authrules-/listKeys?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItODc2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTlMtNjcyL2V2ZW50aHVicy9kay1FdmVudEh1Yi1henNtbmV0MjgwOGF6c21uZXQ3MjY2YXpzbW5ldDUwNWF6c21uZXQzMjc1YXpzbW5ldDg1MThhenNtbmV0NDI0N2F6c21uZXQ1NTE2YXpzbW5ldDMzMjFhenNtbmV0OTAyMGF6c21uZXQ5MjBhenNtbmV0NjczMWF6c21uZXQ2MDQwYXpzbW5ldDc2MDNhenNtbmV0ODM3OGF6c21uZXQ5NzgzYXpzbW5ldDgzMWF6c21uZXQyNTlhenNtbmV0NjE2OGF6c21uZXQ0OTIxYXpzbW5ldDg2ODNhenNtbmV0NzM0M2F6c21uZXQzNzYzYXpzbW5lL2F1dGhvcml6YXRpb25SdWxlcy9zZGstQXV0aHJ1bGVzLS9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "44f62bd3-f262-496c-a055-aac3fbc9907a" + "e3789c25-cac7-4890-a836-0859aba2041d" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:46:23 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "38702f08-af38-4c0f-939f-03bdcae283a9_M6SN1_M6SN1" + "c01b8049-e91e-4f0e-917d-ed44593e4931_M5SN1_M5SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1193" ], "x-ms-correlation-request-id": [ - "1968d67c-cf66-4d22-973f-5105f807db41" + "db0aa56f-e26a-4c93-8810-3eaf2859ca1d" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T043420Z:1968d67c-cf66-4d22-973f-5105f807db41" + "SOUTHINDIA:20211115T024624Z:db0aa56f-e26a-4c93-8810-3eaf2859ca1d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1194,11 +996,8 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:34:19 GMT" - ], "Content-Length": [ - "1036" + "1034" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1207,26 +1006,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"primaryConnectionString\": \"Endpoint=sb://sdk-ns-6819.servicebus.windows.net/;SharedAccessKeyName=sdk-Authrules-;SharedAccessKey=V+zTSh9lT9ZUe10jq8kl3uIRlkMwTkX+qTuOBNqIpTw=;EntityPath=dk-EventHub-azsmnet2715azsmnet4263azsmnet2126azsmnet4804azsmnet5558azsmnet2095azsmnet9560azsmnet640azsmnet6891azsmnet2235azsmnet1064azsmnet4826azsmnet286azsmnet8829azsmnet2760azsmnet9436azsmnet2510azsmnet1574azsmnet5834azsmnet7128azsmnet1625azsmnet4876azsm\",\r\n \"secondaryConnectionString\": \"Endpoint=sb://sdk-ns-6819.servicebus.windows.net/;SharedAccessKeyName=sdk-Authrules-;SharedAccessKey=8g0T0iOYJPmejHVmix9LDCS1Ka9CMQU4G8wZZuh1IwM=;EntityPath=dk-EventHub-azsmnet2715azsmnet4263azsmnet2126azsmnet4804azsmnet5558azsmnet2095azsmnet9560azsmnet640azsmnet6891azsmnet2235azsmnet1064azsmnet4826azsmnet286azsmnet8829azsmnet2760azsmnet9436azsmnet2510azsmnet1574azsmnet5834azsmnet7128azsmnet1625azsmnet4876azsm\",\r\n \"primaryKey\": \"V+zTSh9lT9ZUe10jq8kl3uIRlkMwTkX+qTuOBNqIpTw=\",\r\n \"secondaryKey\": \"8g0T0iOYJPmejHVmix9LDCS1Ka9CMQU4G8wZZuh1IwM=\",\r\n \"keyName\": \"sdk-Authrules-\"\r\n}", + "ResponseBody": "{\r\n \"primaryConnectionString\": \"Endpoint=sb://sdk-ns-672.servicebus.windows.net/;SharedAccessKeyName=sdk-Authrules-;SharedAccessKey=eomHH4AAwvNThinCmQvEEi0rNoTQqGQ+mp9QNWm2wfQ=;EntityPath=dk-EventHub-azsmnet2808azsmnet7266azsmnet505azsmnet3275azsmnet8518azsmnet4247azsmnet5516azsmnet3321azsmnet9020azsmnet920azsmnet6731azsmnet6040azsmnet7603azsmnet8378azsmnet9783azsmnet831azsmnet259azsmnet6168azsmnet4921azsmnet8683azsmnet7343azsmnet3763azsmne\",\r\n \"secondaryConnectionString\": \"Endpoint=sb://sdk-ns-672.servicebus.windows.net/;SharedAccessKeyName=sdk-Authrules-;SharedAccessKey=jP98NynmMWCQdfTg43spTXPsDSRstS9G3oS7W3prXw8=;EntityPath=dk-EventHub-azsmnet2808azsmnet7266azsmnet505azsmnet3275azsmnet8518azsmnet4247azsmnet5516azsmnet3321azsmnet9020azsmnet920azsmnet6731azsmnet6040azsmnet7603azsmnet8378azsmnet9783azsmnet831azsmnet259azsmnet6168azsmnet4921azsmnet8683azsmnet7343azsmnet3763azsmne\",\r\n \"primaryKey\": \"eomHH4AAwvNThinCmQvEEi0rNoTQqGQ+mp9QNWm2wfQ=\",\r\n \"secondaryKey\": \"jP98NynmMWCQdfTg43spTXPsDSRstS9G3oS7W3prXw8=\",\r\n \"keyName\": \"sdk-Authrules-\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3634/providers/Microsoft.EventHub/namespaces/sdk-NS-6819/eventhubs/dk-EventHub-azsmnet2715azsmnet4263azsmnet2126azsmnet4804azsmnet5558azsmnet2095azsmnet9560azsmnet640azsmnet6891azsmnet2235azsmnet1064azsmnet4826azsmnet286azsmnet8829azsmnet2760azsmnet9436azsmnet2510azsmnet1574azsmnet5834azsmnet7128azsmnet1625azsmnet4876azsm/authorizationRules/sdk-Authrules-/regenerateKeys?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMzYzNC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTY4MTkvZXZlbnRodWJzL2RrLUV2ZW50SHViLWF6c21uZXQyNzE1YXpzbW5ldDQyNjNhenNtbmV0MjEyNmF6c21uZXQ0ODA0YXpzbW5ldDU1NThhenNtbmV0MjA5NWF6c21uZXQ5NTYwYXpzbW5ldDY0MGF6c21uZXQ2ODkxYXpzbW5ldDIyMzVhenNtbmV0MTA2NGF6c21uZXQ0ODI2YXpzbW5ldDI4NmF6c21uZXQ4ODI5YXpzbW5ldDI3NjBhenNtbmV0OTQzNmF6c21uZXQyNTEwYXpzbW5ldDE1NzRhenNtbmV0NTgzNGF6c21uZXQ3MTI4YXpzbW5ldDE2MjVhenNtbmV0NDg3NmF6c20vYXV0aG9yaXphdGlvblJ1bGVzL3Nkay1BdXRocnVsZXMtL3JlZ2VuZXJhdGVLZXlzP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-876/providers/Microsoft.EventHub/namespaces/sdk-NS-672/eventhubs/dk-EventHub-azsmnet2808azsmnet7266azsmnet505azsmnet3275azsmnet8518azsmnet4247azsmnet5516azsmnet3321azsmnet9020azsmnet920azsmnet6731azsmnet6040azsmnet7603azsmnet8378azsmnet9783azsmnet831azsmnet259azsmnet6168azsmnet4921azsmnet8683azsmnet7343azsmnet3763azsmne/authorizationRules/sdk-Authrules-/regenerateKeys?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItODc2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTlMtNjcyL2V2ZW50aHVicy9kay1FdmVudEh1Yi1henNtbmV0MjgwOGF6c21uZXQ3MjY2YXpzbW5ldDUwNWF6c21uZXQzMjc1YXpzbW5ldDg1MThhenNtbmV0NDI0N2F6c21uZXQ1NTE2YXpzbW5ldDMzMjFhenNtbmV0OTAyMGF6c21uZXQ5MjBhenNtbmV0NjczMWF6c21uZXQ2MDQwYXpzbW5ldDc2MDNhenNtbmV0ODM3OGF6c21uZXQ5NzgzYXpzbW5ldDgzMWF6c21uZXQyNTlhenNtbmV0NjE2OGF6c21uZXQ0OTIxYXpzbW5ldDg2ODNhenNtbmV0NzM0M2F6c21uZXQzNzYzYXpzbW5lL2F1dGhvcml6YXRpb25SdWxlcy9zZGstQXV0aHJ1bGVzLS9yZWdlbmVyYXRlS2V5cz9hcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "POST", "RequestBody": "{\r\n \"keyType\": \"PrimaryKey\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "1d64405f-8b5b-436b-b5ba-5966a86cbcab" + "687bc879-ffff-4aba-ad78-ccf31dcdbb4f" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1239,27 +1038,30 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:46:24 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "52de28a4-e311-4f22-bb40-7b790ecc4739_M6SN1_M6SN1" + "a5bf76cd-f153-45a8-9e05-119917df8a26_M5SN1_M5SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1192" ], "x-ms-correlation-request-id": [ - "bea39b01-a0c9-4c62-9dc8-0919363a68fd" + "93f52e71-454f-47c7-b8d8-f1dcbc3d63fb" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T043421Z:bea39b01-a0c9-4c62-9dc8-0919363a68fd" + "SOUTHINDIA:20211115T024625Z:93f52e71-454f-47c7-b8d8-f1dcbc3d63fb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1267,11 +1069,8 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:34:21 GMT" - ], "Content-Length": [ - "1036" + "1034" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1280,53 +1079,56 @@ "-1" ] }, - "ResponseBody": "{\r\n \"primaryConnectionString\": \"Endpoint=sb://sdk-ns-6819.servicebus.windows.net/;SharedAccessKeyName=sdk-Authrules-;SharedAccessKey=vjeyrWkL5bmGO7j0sUsYygnpAimB2g6we1LyKo6IVYE=;EntityPath=dk-EventHub-azsmnet2715azsmnet4263azsmnet2126azsmnet4804azsmnet5558azsmnet2095azsmnet9560azsmnet640azsmnet6891azsmnet2235azsmnet1064azsmnet4826azsmnet286azsmnet8829azsmnet2760azsmnet9436azsmnet2510azsmnet1574azsmnet5834azsmnet7128azsmnet1625azsmnet4876azsm\",\r\n \"secondaryConnectionString\": \"Endpoint=sb://sdk-ns-6819.servicebus.windows.net/;SharedAccessKeyName=sdk-Authrules-;SharedAccessKey=8g0T0iOYJPmejHVmix9LDCS1Ka9CMQU4G8wZZuh1IwM=;EntityPath=dk-EventHub-azsmnet2715azsmnet4263azsmnet2126azsmnet4804azsmnet5558azsmnet2095azsmnet9560azsmnet640azsmnet6891azsmnet2235azsmnet1064azsmnet4826azsmnet286azsmnet8829azsmnet2760azsmnet9436azsmnet2510azsmnet1574azsmnet5834azsmnet7128azsmnet1625azsmnet4876azsm\",\r\n \"primaryKey\": \"vjeyrWkL5bmGO7j0sUsYygnpAimB2g6we1LyKo6IVYE=\",\r\n \"secondaryKey\": \"8g0T0iOYJPmejHVmix9LDCS1Ka9CMQU4G8wZZuh1IwM=\",\r\n \"keyName\": \"sdk-Authrules-\"\r\n}", + "ResponseBody": "{\r\n \"primaryConnectionString\": \"Endpoint=sb://sdk-ns-672.servicebus.windows.net/;SharedAccessKeyName=sdk-Authrules-;SharedAccessKey=x0yb1cK25DhkICu/c9j/D5aBIeIKxR5DbHwgxPhQe2g=;EntityPath=dk-EventHub-azsmnet2808azsmnet7266azsmnet505azsmnet3275azsmnet8518azsmnet4247azsmnet5516azsmnet3321azsmnet9020azsmnet920azsmnet6731azsmnet6040azsmnet7603azsmnet8378azsmnet9783azsmnet831azsmnet259azsmnet6168azsmnet4921azsmnet8683azsmnet7343azsmnet3763azsmne\",\r\n \"secondaryConnectionString\": \"Endpoint=sb://sdk-ns-672.servicebus.windows.net/;SharedAccessKeyName=sdk-Authrules-;SharedAccessKey=jP98NynmMWCQdfTg43spTXPsDSRstS9G3oS7W3prXw8=;EntityPath=dk-EventHub-azsmnet2808azsmnet7266azsmnet505azsmnet3275azsmnet8518azsmnet4247azsmnet5516azsmnet3321azsmnet9020azsmnet920azsmnet6731azsmnet6040azsmnet7603azsmnet8378azsmnet9783azsmnet831azsmnet259azsmnet6168azsmnet4921azsmnet8683azsmnet7343azsmnet3763azsmne\",\r\n \"primaryKey\": \"x0yb1cK25DhkICu/c9j/D5aBIeIKxR5DbHwgxPhQe2g=\",\r\n \"secondaryKey\": \"jP98NynmMWCQdfTg43spTXPsDSRstS9G3oS7W3prXw8=\",\r\n \"keyName\": \"sdk-Authrules-\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3634/providers/Microsoft.EventHub/namespaces/sdk-NS-6819/eventhubs/dk-EventHub-azsmnet2715azsmnet4263azsmnet2126azsmnet4804azsmnet5558azsmnet2095azsmnet9560azsmnet640azsmnet6891azsmnet2235azsmnet1064azsmnet4826azsmnet286azsmnet8829azsmnet2760azsmnet9436azsmnet2510azsmnet1574azsmnet5834azsmnet7128azsmnet1625azsmnet4876azsm/authorizationRules/sdk-Authrules-?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMzYzNC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTY4MTkvZXZlbnRodWJzL2RrLUV2ZW50SHViLWF6c21uZXQyNzE1YXpzbW5ldDQyNjNhenNtbmV0MjEyNmF6c21uZXQ0ODA0YXpzbW5ldDU1NThhenNtbmV0MjA5NWF6c21uZXQ5NTYwYXpzbW5ldDY0MGF6c21uZXQ2ODkxYXpzbW5ldDIyMzVhenNtbmV0MTA2NGF6c21uZXQ0ODI2YXpzbW5ldDI4NmF6c21uZXQ4ODI5YXpzbW5ldDI3NjBhenNtbmV0OTQzNmF6c21uZXQyNTEwYXpzbW5ldDE1NzRhenNtbmV0NTgzNGF6c21uZXQ3MTI4YXpzbW5ldDE2MjVhenNtbmV0NDg3NmF6c20vYXV0aG9yaXphdGlvblJ1bGVzL3Nkay1BdXRocnVsZXMtP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-876/providers/Microsoft.EventHub/namespaces/sdk-NS-672/eventhubs/dk-EventHub-azsmnet2808azsmnet7266azsmnet505azsmnet3275azsmnet8518azsmnet4247azsmnet5516azsmnet3321azsmnet9020azsmnet920azsmnet6731azsmnet6040azsmnet7603azsmnet8378azsmnet9783azsmnet831azsmnet259azsmnet6168azsmnet4921azsmnet8683azsmnet7343azsmnet3763azsmne/authorizationRules/sdk-Authrules-?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItODc2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTlMtNjcyL2V2ZW50aHVicy9kay1FdmVudEh1Yi1henNtbmV0MjgwOGF6c21uZXQ3MjY2YXpzbW5ldDUwNWF6c21uZXQzMjc1YXpzbW5ldDg1MThhenNtbmV0NDI0N2F6c21uZXQ1NTE2YXpzbW5ldDMzMjFhenNtbmV0OTAyMGF6c21uZXQ5MjBhenNtbmV0NjczMWF6c21uZXQ2MDQwYXpzbW5ldDc2MDNhenNtbmV0ODM3OGF6c21uZXQ5NzgzYXpzbW5ldDgzMWF6c21uZXQyNTlhenNtbmV0NjE2OGF6c21uZXQ0OTIxYXpzbW5ldDg2ODNhenNtbmV0NzM0M2F6c21uZXQzNzYzYXpzbW5lL2F1dGhvcml6YXRpb25SdWxlcy9zZGstQXV0aHJ1bGVzLT9hcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a1fd13f5-4529-48b6-91c1-c5c6eafdea41" + "6b0df6fe-6a9a-46d1-9d61-681886e79c74" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:46:25 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "9d978ce0-19b5-41d4-af48-b81803c218f4_M6SN1_M6SN1" + "8b78272a-86bd-4e9e-8be1-61566b0579cf_M5SN1_M5SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" + "14996" ], "x-ms-correlation-request-id": [ - "84742d9c-636d-4262-a59a-77fd7cc0ea95" + "275aee0f-7acf-446d-be3e-43dd172e9b68" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T043422Z:84742d9c-636d-4262-a59a-77fd7cc0ea95" + "SOUTHINDIA:20211115T024626Z:275aee0f-7acf-446d-be3e-43dd172e9b68" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1334,63 +1136,63 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:34:22 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3634/providers/Microsoft.EventHub/namespaces/sdk-NS-6819/eventhubs/dk-EventHub-azsmnet2715azsmnet4263azsmnet2126azsmnet4804azsmnet5558azsmnet2095azsmnet9560azsmnet640azsmnet6891azsmnet2235azsmnet1064azsmnet4826azsmnet286azsmnet8829azsmnet2760azsmnet9436azsmnet2510azsmnet1574azsmnet5834azsmnet7128azsmnet1625azsmnet4876azsm?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMzYzNC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTY4MTkvZXZlbnRodWJzL2RrLUV2ZW50SHViLWF6c21uZXQyNzE1YXpzbW5ldDQyNjNhenNtbmV0MjEyNmF6c21uZXQ0ODA0YXpzbW5ldDU1NThhenNtbmV0MjA5NWF6c21uZXQ5NTYwYXpzbW5ldDY0MGF6c21uZXQ2ODkxYXpzbW5ldDIyMzVhenNtbmV0MTA2NGF6c21uZXQ0ODI2YXpzbW5ldDI4NmF6c21uZXQ4ODI5YXpzbW5ldDI3NjBhenNtbmV0OTQzNmF6c21uZXQyNTEwYXpzbW5ldDE1NzRhenNtbmV0NTgzNGF6c21uZXQ3MTI4YXpzbW5ldDE2MjVhenNtbmV0NDg3NmF6c20/YXBpLXZlcnNpb249MjAyMS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-876/providers/Microsoft.EventHub/namespaces/sdk-NS-672/eventhubs/dk-EventHub-azsmnet2808azsmnet7266azsmnet505azsmnet3275azsmnet8518azsmnet4247azsmnet5516azsmnet3321azsmnet9020azsmnet920azsmnet6731azsmnet6040azsmnet7603azsmnet8378azsmnet9783azsmnet831azsmnet259azsmnet6168azsmnet4921azsmnet8683azsmnet7343azsmnet3763azsmne?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItODc2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTlMtNjcyL2V2ZW50aHVicy9kay1FdmVudEh1Yi1henNtbmV0MjgwOGF6c21uZXQ3MjY2YXpzbW5ldDUwNWF6c21uZXQzMjc1YXpzbW5ldDg1MThhenNtbmV0NDI0N2F6c21uZXQ1NTE2YXpzbW5ldDMzMjFhenNtbmV0OTAyMGF6c21uZXQ5MjBhenNtbmV0NjczMWF6c21uZXQ2MDQwYXpzbW5ldDc2MDNhenNtbmV0ODM3OGF6c21uZXQ5NzgzYXpzbW5ldDgzMWF6c21uZXQyNTlhenNtbmV0NjE2OGF6c21uZXQ0OTIxYXpzbW5ldDg2ODNhenNtbmV0NzM0M2F6c21uZXQzNzYzYXpzbW5lP2FwaS12ZXJzaW9uPTIwMjEtMTEtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "42b7b366-fe59-402c-a26b-e0506ea7f1b3" + "daa3e540-52e7-4e2f-bbf6-d5f866d2a164" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:46:33 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "462f82c2-16f9-450b-afb2-7733c864df8c_M6SN1_M6SN1" + "08febe5b-e2bc-461a-b19b-4d4e6453776a_M5SN1_M5SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14998" + "14995" ], "x-ms-correlation-request-id": [ - "4d478ab3-2f92-4d96-ad9a-795f7361379b" + "9c51460f-05d8-4b69-a514-347bb8abea78" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T043429Z:4d478ab3-2f92-4d96-ad9a-795f7361379b" + "SOUTHINDIA:20211115T024633Z:9c51460f-05d8-4b69-a514-347bb8abea78" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1398,66 +1200,66 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:34:29 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3634/providers/Microsoft.EventHub/namespaces/sdk-NS-6819?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMzYzNC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTY4MTk/YXBpLXZlcnNpb249MjAyMS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-876/providers/Microsoft.EventHub/namespaces/sdk-NS-672?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItODc2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTlMtNjcyP2FwaS12ZXJzaW9uPTIwMjEtMTEtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6e80066f-ae36-4bdd-b22b-8871f61c179d" + "db18700a-dfda-46e6-9f66-0d33688dfcf1" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:46:34 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3634/providers/Microsoft.EventHub/namespaces/sdk-NS-6819/operationresults/sdk-NS-6819?api-version=2021-06-01-preview" + "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-876/providers/Microsoft.EventHub/namespaces/sdk-NS-672/operationresults/sdk-NS-672?api-version=2021-11-01" + ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "8bc03cba-02bd-49d9-bbe2-4017440c5508_M6SN1_M6SN1" + "6f8a0f86-6c4e-4edf-8b66-aeca8b25afe4_M5SN1_M5SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14997" + "14994" ], "x-ms-correlation-request-id": [ - "3a0f4e69-eb4f-4ac8-b362-01c1f64c53e1" + "a54059fe-0a47-41ea-8d5e-ea9360694108" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T043430Z:3a0f4e69-eb4f-4ac8-b362-01c1f64c53e1" + "SOUTHINDIA:20211115T024634Z:a54059fe-0a47-41ea-8d5e-ea9360694108" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1465,57 +1267,57 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:34:30 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3634/providers/Microsoft.EventHub/namespaces/sdk-NS-6819/operationresults/sdk-NS-6819?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMzYzNC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTY4MTkvb3BlcmF0aW9ucmVzdWx0cy9zZGstTlMtNjgxOT9hcGktdmVyc2lvbj0yMDIxLTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-876/providers/Microsoft.EventHub/namespaces/sdk-NS-672/operationresults/sdk-NS-672?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItODc2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTlMtNjcyL29wZXJhdGlvbnJlc3VsdHMvc2RrLU5TLTY3Mj9hcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:47:04 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "d4bc526e-3a9d-47c4-bf74-4092826a018c_M5SN1_M5SN1" + "24cce8b4-82c2-4345-8225-1cc4ad58161f_M5SN1_M5SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11945" ], "x-ms-correlation-request-id": [ - "046f79cb-13c1-4087-9ca9-6bf287ddae52" + "56998b59-9e4b-48b5-bdd8-4676da67ff83" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T043501Z:046f79cb-13c1-4087-9ca9-6bf287ddae52" + "SOUTHINDIA:20211115T024705Z:56998b59-9e4b-48b5-bdd8-4676da67ff83" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1523,57 +1325,57 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:35:00 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3634/providers/Microsoft.EventHub/namespaces/sdk-NS-6819/operationresults/sdk-NS-6819?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMzYzNC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTY4MTkvb3BlcmF0aW9ucmVzdWx0cy9zZGstTlMtNjgxOT9hcGktdmVyc2lvbj0yMDIxLTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-876/providers/Microsoft.EventHub/namespaces/sdk-NS-672/operationresults/sdk-NS-672?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItODc2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTlMtNjcyL29wZXJhdGlvbnJlc3VsdHMvc2RrLU5TLTY3Mj9hcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:47:04 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "41b33766-c8a6-4fa4-a8ef-da8af4620837_M5SN1_M5SN1" + "81991798-0f33-4191-9329-945b881503ae_M5SN1_M5SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11944" ], "x-ms-correlation-request-id": [ - "e0ce2880-b91c-43ab-bef1-9923664b3a8f" + "ad189b0f-bd5f-4743-b73c-333d95335b76" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T043501Z:e0ce2880-b91c-43ab-bef1-9923664b3a8f" + "SOUTHINDIA:20211115T024705Z:ad189b0f-bd5f-4743-b73c-333d95335b76" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1581,14 +1383,11 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:35:00 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", @@ -1597,36 +1396,36 @@ ], "Names": { "EventhubCreateGetUpdateDeleteAuthorizationRules_Length": [ - "azsmnet2715", - "azsmnet4263", - "azsmnet2126", - "azsmnet4804", - "azsmnet5558", - "azsmnet2095", - "azsmnet9560", - "azsmnet640", - "azsmnet6891", - "azsmnet2235", - "azsmnet1064", - "azsmnet4826", - "azsmnet286", - "azsmnet8829", - "azsmnet2760", - "azsmnet9436", - "azsmnet2510", - "azsmnet1574", - "azsmnet5834", - "azsmnet7128", - "azsmnet1625", - "azsmnet4876", - "azsmnet8004", - "Default-EventHub-3634", - "sdk-NS-6819" + "azsmnet2808", + "azsmnet7266", + "azsmnet505", + "azsmnet3275", + "azsmnet8518", + "azsmnet4247", + "azsmnet5516", + "azsmnet3321", + "azsmnet9020", + "azsmnet920", + "azsmnet6731", + "azsmnet6040", + "azsmnet7603", + "azsmnet8378", + "azsmnet9783", + "azsmnet831", + "azsmnet259", + "azsmnet6168", + "azsmnet4921", + "azsmnet8683", + "azsmnet7343", + "azsmnet3763", + "azsmnet5859", + "Default-EventHub-876", + "sdk-NS-672" ] }, "Variables": { "SubscriptionId": "326100e2-f69d-4268-8503-075374f62b6e", - "CreatePrimaryKey": "T8V7yY5lllI8napiUvl/cgdEpNmZyKipgzsrrPFBF2E=", - "UpdatePrimaryKey": "Cn2IrMmfulMXII35uGIX5uf4d9bE183IL7t4YzUEKM0=" + "CreatePrimaryKey": "6js9QHz3MVYQfO5DkrBeHZt+AnFf4I79TBOHJeMkqkw=", + "UpdatePrimaryKey": "pITdVKSvCjYbHAjBwIwWFNwmO73cwfCCsvZDJsNc5/M=" } } \ 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 index 9ebfc0ca0907..861a4b3d1ca3 100644 --- a/sdk/eventhub/Microsoft.Azure.Management.EventHub/tests/SessionRecords/ScenarioTests/NamespaceBYOKCreateGetUpdateDelete.json +++ b/sdk/eventhub/Microsoft.Azure.Management.EventHub/tests/SessionRecords/ScenarioTests/NamespaceBYOKCreateGetUpdateDelete.json @@ -1,21 +1,84 @@ { "Entries": [ { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/Default-EventHub-5484?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlZ3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNTQ4ND9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/Default-EventHub-6839?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlZ3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNjgzOT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "10a0ba9e-a972-44a0-b912-0f0070527f69" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 15 Nov 2021 02:34:51 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1ERUZBVUxUOjJERVZFTlRIVUI6MkQ2ODM5LVNPVVRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJzb3V0aGNlbnRyYWx1cyJ9?api-version=2015-11-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14998" + ], + "x-ms-request-id": [ + "dd67a405-27fc-41e9-aac9-2dfe3735a3b9" + ], + "x-ms-correlation-request-id": [ + "dd67a405-27fc-41e9-aac9-2dfe3735a3b9" + ], + "x-ms-routing-request-id": [ + "SOUTHINDIA:20211115T023451Z:dd67a405-27fc-41e9-aac9-2dfe3735a3b9" + ], + "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-7599?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlZ3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNzU5OT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US 2\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "ee737836-8372-4a7f-a9de-9d9341ef23ed" + "6d8b5550-af43-47d7-b40a-ab22eb62d032" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", + "OSVersion/Microsoft.Windows.10.0.22000.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ], "Content-Type": [ @@ -29,20 +92,23 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:34:54 GMT" + ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1196" ], "x-ms-request-id": [ - "e32053d7-5c86-4343-8621-bb165a53ea52" + "cd1a8657-264f-42cb-a984-ac4b87452f98" ], "x-ms-correlation-request-id": [ - "e32053d7-5c86-4343-8621-bb165a53ea52" + "cd1a8657-264f-42cb-a984-ac4b87452f98" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210927T000520Z:e32053d7-5c86-4343-8621-bb165a53ea52" + "SOUTHINDIA:20211115T023454Z:cd1a8657-264f-42cb-a984-ac4b87452f98" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -50,9 +116,6 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Mon, 27 Sep 2021 00:05:20 GMT" - ], "Content-Length": [ "196" ], @@ -63,25 +126,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-5484\",\r\n \"name\": \"Default-EventHub-5484\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-7599\",\r\n \"name\": \"Default-EventHub-7599\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/v-ajnavtest/providers/Microsoft.EventHub/clusters/PMTestCluster1?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL3YtYWpuYXZ0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvY2x1c3RlcnMvUE1UZXN0Q2x1c3RlcjE/YXBpLXZlcnNpb249MjAyMS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/v-ajnavtest/providers/Microsoft.EventHub/clusters/PMTestCluster1?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL3YtYWpuYXZ0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvY2x1c3RlcnMvUE1UZXN0Q2x1c3RlcjE/YXBpLXZlcnNpb249MjAyMS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "939127a4-30ca-446c-8f5e-836798c21b82" + "3690465c-50f7-46df-8610-1e645ee6990b" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", + "OSVersion/Microsoft.Windows.10.0.22000.", "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, @@ -89,27 +152,30 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:34:55 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "2e85cb31-48f0-4fe1-a3c8-b9daa67e029d_M9CH3_M9CH3" + "0321f524-0dff-483b-846c-23d5ec1be60d_M7CH3_M7CH3" ], "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], - "Server": [ - "Service-Bus-Resource-Provider/CH3", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ "11999" ], "x-ms-correlation-request-id": [ - "5ea8ab04-d61a-4b6f-8464-c0fb908eca83" + "911a0a91-161d-468a-83ee-f61940c6769a" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210927T000521Z:5ea8ab04-d61a-4b6f-8464-c0fb908eca83" + "SOUTHINDIA:20211115T023456Z:911a0a91-161d-468a-83ee-f61940c6769a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -117,9 +183,6 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Mon, 27 Sep 2021 00:05:20 GMT" - ], "Content-Length": [ "391" ], @@ -134,21 +197,21 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.EventHub/checkNameAvailability?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvY2hlY2tOYW1lQXZhaWxhYmlsaXR5P2FwaS12ZXJzaW9uPTIwMjEtMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.EventHub/checkNameAvailability?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvY2hlY2tOYW1lQXZhaWxhYmlsaXR5P2FwaS12ZXJzaW9uPTIwMjEtMTEtMDE=", "RequestMethod": "POST", - "RequestBody": "{\r\n \"name\": \"sdk-NS-2562\"\r\n}", + "RequestBody": "{\r\n \"name\": \"sdk-NS-3778\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "95b855da-0918-4162-bd8c-2bf20833693c" + "6e65cfe7-2d60-48a0-9e1d-a33109747fc1" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", + "OSVersion/Microsoft.Windows.10.0.22000.", "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ], "Content-Type": [ @@ -162,27 +225,30 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:34:56 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "63bbd8e5-9ae5-4cc3-8f2e-44487582bafc_M7CH3_M7CH3" + "56b34110-d59e-4c5b-ac96-560e1a0f5d80_M10CH3_M10CH3" ], "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], - "Server": [ - "Service-Bus-Resource-Provider/CH3", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], "x-ms-correlation-request-id": [ - "413438f5-e98b-449e-9e63-f6a8e8f1cffe" + "3b5eb8bb-410e-4e68-bdb9-7f854cd81801" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210927T000521Z:413438f5-e98b-449e-9e63-f6a8e8f1cffe" + "SOUTHINDIA:20211115T023456Z:3b5eb8bb-410e-4e68-bdb9-7f854cd81801" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -190,9 +256,6 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Mon, 27 Sep 2021 00:05:21 GMT" - ], "Content-Length": [ "53" ], @@ -207,21 +270,21 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/v-ajnavtest/providers/Microsoft.EventHub/namespaces/sdk-NS-2562?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL3YtYWpuYXZ0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTlMtMjU2Mj9hcGktdmVyc2lvbj0yMDIxLTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/v-ajnavtest/providers/Microsoft.EventHub/namespaces/sdk-NS-3778?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL3YtYWpuYXZ0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTlMtMzc3OD9hcGktdmVyc2lvbj0yMDIxLTExLTAx", "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/v-ajnavtest/providers/Microsoft.EventHub/clusters/PMTestCluster1\",\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0\r\n },\r\n \"location\": \"West US 2\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "b2f44d21-fa93-4264-be1b-b930bbc7217b" + "2a6df698-7710-4a5c-aba9-aa3de71415f3" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", + "OSVersion/Microsoft.Windows.10.0.22000.", "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ], "Content-Type": [ @@ -235,27 +298,30 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:35:07 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "cbf78d31-5e06-4744-a135-9e482ece5c1c_M10CH3_M10CH3" + "78e0c680-5ad5-4572-9926-a88b39095dec_M10CH3_M10CH3" ], "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], - "Server": [ - "Service-Bus-Resource-Provider/CH3", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "49" ], "x-ms-correlation-request-id": [ - "63cb7345-a027-477f-87a1-c70be2cddb73" + "6d2cd88b-e0a8-4dae-a6eb-a0e2ad33a0e9" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210927T000525Z:63cb7345-a027-477f-87a1-c70be2cddb73" + "SOUTHINDIA:20211115T023508Z:6d2cd88b-e0a8-4dae-a6eb-a0e2ad33a0e9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -263,11 +329,8 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Mon, 27 Sep 2021 00:05:25 GMT" - ], "Content-Length": [ - "1021" + "1019" ], "Content-Type": [ "application/json; charset=utf-8" @@ -276,25 +339,25 @@ "-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/v-ajnavtest/providers/Microsoft.EventHub/namespaces/sdk-NS-2562\",\r\n \"name\": \"sdk-NS-2562\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"identity\": {\r\n \"principalId\": \"f5b466be-bc12-4540-a46e-9063bacd2769\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"clusterArmId\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/v-ajnavtest/providers/Microsoft.EventHub/clusters/PMTestCluster1\",\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"ActivatingIdentity\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:sdk-ns-2562\",\r\n \"createdAt\": \"2021-09-27T00:05:24.867Z\",\r\n \"updatedAt\": \"2021-09-27T00:05:24.867Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-2562.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/v-ajnavtest/providers/Microsoft.EventHub/namespaces/sdk-NS-3778\",\r\n \"name\": \"sdk-NS-3778\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"identity\": {\r\n \"principalId\": \"e96eb428-b123-4def-a6e8-679d3cfc4334\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"clusterArmId\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/v-ajnavtest/providers/Microsoft.EventHub/clusters/PMTestCluster1\",\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"ActivatingIdentity\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:sdk-ns-3778\",\r\n \"createdAt\": \"2021-11-15T02:35:05.84Z\",\r\n \"updatedAt\": \"2021-11-15T02:35:05.84Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-3778.servicebus.windows.net:443/\",\r\n \"status\": \"Activating\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/v-ajnavtest/providers/Microsoft.EventHub/namespaces/sdk-NS-2562?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL3YtYWpuYXZ0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTlMtMjU2Mj9hcGktdmVyc2lvbj0yMDIxLTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/v-ajnavtest/providers/Microsoft.EventHub/namespaces/sdk-NS-3778?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL3YtYWpuYXZ0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTlMtMzc3OD9hcGktdmVyc2lvbj0yMDIxLTExLTAx", "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 \"type\": \"SystemAssigned\"\r\n },\r\n \"properties\": {\r\n \"clusterArmId\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/v-ajnavtest/providers/Microsoft.EventHub/clusters/PMTestCluster1\",\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\": \"sdktestingkey11\",\r\n \"keyVaultUri\": \"https://sdktestingkey1.vault.azure.net/\",\r\n \"keyVersion\": \"\"\r\n }\r\n ],\r\n \"keySource\": \"Microsoft.KeyVault\"\r\n },\r\n \"disableLocalAuth\": false\r\n },\r\n \"location\": \"West US 2\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "1b1d338a-948b-4b67-900e-5eb5896c8ed3" + "07ea4b20-49b4-4b0d-adfb-30a8b7da28ce" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", + "OSVersion/Microsoft.Windows.10.0.22000.", "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ], "Content-Type": [ @@ -308,27 +371,30 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:37:04 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "5ea8f688-b080-40b3-8933-d0a0c276e845_M5CH3_M5CH3" + "62fbe237-280e-422b-8e80-82c0d4256ea1_M4CH3_M4CH3" ], "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], - "Server": [ - "Service-Bus-Resource-Provider/CH3", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "48" ], "x-ms-correlation-request-id": [ - "c8b3f6fe-c627-4422-9adc-cea55c0d52f6" + "9630e67b-c236-4d51-9b1e-2228de2256a7" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210927T000719Z:c8b3f6fe-c627-4422-9adc-cea55c0d52f6" + "SOUTHINDIA:20211115T023705Z:9630e67b-c236-4d51-9b1e-2228de2256a7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -336,11 +402,8 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Mon, 27 Sep 2021 00:07:19 GMT" - ], "Content-Length": [ - "1223" + "1221" ], "Content-Type": [ "application/json; charset=utf-8" @@ -349,19 +412,19 @@ "-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/v-ajnavtest/providers/Microsoft.EventHub/namespaces/sdk-NS-2562\",\r\n \"name\": \"sdk-NS-2562\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"identity\": {\r\n \"principalId\": \"f5b466be-bc12-4540-a46e-9063bacd2769\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"encryption\": {\r\n \"keySource\": \"Microsoft.KeyVault\",\r\n \"keyVaultProperties\": [\r\n {\r\n \"keyName\": \"sdktestingkey11\",\r\n \"keyVaultUri\": \"https://sdktestingkey1.vault.azure.net\",\r\n \"keyVersion\": \"\"\r\n }\r\n ],\r\n \"requireInfrastructureEncryption\": false\r\n },\r\n \"clusterArmId\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/v-ajnavtest/providers/Microsoft.EventHub/clusters/PMTestCluster1\",\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Updating\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:sdk-ns-2562\",\r\n \"createdAt\": \"2021-09-27T00:05:24.867Z\",\r\n \"updatedAt\": \"2021-09-27T00:07:18.603Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-2562.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/v-ajnavtest/providers/Microsoft.EventHub/namespaces/sdk-NS-3778\",\r\n \"name\": \"sdk-NS-3778\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"identity\": {\r\n \"principalId\": \"e96eb428-b123-4def-a6e8-679d3cfc4334\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"encryption\": {\r\n \"keySource\": \"Microsoft.KeyVault\",\r\n \"keyVaultProperties\": [\r\n {\r\n \"keyName\": \"sdktestingkey11\",\r\n \"keyVaultUri\": \"https://sdktestingkey1.vault.azure.net\",\r\n \"keyVersion\": \"\"\r\n }\r\n ],\r\n \"requireInfrastructureEncryption\": false\r\n },\r\n \"clusterArmId\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/v-ajnavtest/providers/Microsoft.EventHub/clusters/PMTestCluster1\",\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Updating\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:sdk-ns-3778\",\r\n \"createdAt\": \"2021-11-15T02:35:05.84Z\",\r\n \"updatedAt\": \"2021-11-15T02:37:02.87Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-3778.servicebus.windows.net:443/\",\r\n \"status\": \"Activating\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/v-ajnavtest/providers/Microsoft.EventHub/namespaces/sdk-NS-2562?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL3YtYWpuYXZ0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTlMtMjU2Mj9hcGktdmVyc2lvbj0yMDIxLTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/v-ajnavtest/providers/Microsoft.EventHub/namespaces/sdk-NS-3778?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL3YtYWpuYXZ0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTlMtMzc3OD9hcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", + "OSVersion/Microsoft.Windows.10.0.22000.", "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, @@ -369,27 +432,30 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:35:37 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "497d49a7-19c0-45cd-93c2-520e1c956598_M0CH3_M0CH3" + "115bee6d-c70b-4ed5-9059-cf669384931d_M10CH3_M10CH3" ], "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], - "Server": [ - "Service-Bus-Resource-Provider/CH3", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ "11998" ], "x-ms-correlation-request-id": [ - "19442ac5-4f03-4d43-919b-53127fb2ab54" + "7c53dd58-b29d-4831-a797-d5970dd20e5e" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210927T000555Z:19442ac5-4f03-4d43-919b-53127fb2ab54" + "SOUTHINDIA:20211115T023538Z:7c53dd58-b29d-4831-a797-d5970dd20e5e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -397,11 +463,8 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Mon, 27 Sep 2021 00:05:55 GMT" - ], "Content-Length": [ - "1021" + "1019" ], "Content-Type": [ "application/json; charset=utf-8" @@ -410,19 +473,19 @@ "-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/v-ajnavtest/providers/Microsoft.EventHub/namespaces/sdk-NS-2562\",\r\n \"name\": \"sdk-NS-2562\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"identity\": {\r\n \"principalId\": \"f5b466be-bc12-4540-a46e-9063bacd2769\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"clusterArmId\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/v-ajnavtest/providers/Microsoft.EventHub/clusters/PMTestCluster1\",\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"ActivatingIdentity\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:sdk-ns-2562\",\r\n \"createdAt\": \"2021-09-27T00:05:24.867Z\",\r\n \"updatedAt\": \"2021-09-27T00:05:24.867Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-2562.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/v-ajnavtest/providers/Microsoft.EventHub/namespaces/sdk-NS-3778\",\r\n \"name\": \"sdk-NS-3778\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"identity\": {\r\n \"principalId\": \"e96eb428-b123-4def-a6e8-679d3cfc4334\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"clusterArmId\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/v-ajnavtest/providers/Microsoft.EventHub/clusters/PMTestCluster1\",\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"ActivatingIdentity\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:sdk-ns-3778\",\r\n \"createdAt\": \"2021-11-15T02:35:05.84Z\",\r\n \"updatedAt\": \"2021-11-15T02:35:05.84Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-3778.servicebus.windows.net:443/\",\r\n \"status\": \"Activating\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/v-ajnavtest/providers/Microsoft.EventHub/namespaces/sdk-NS-2562?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL3YtYWpuYXZ0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTlMtMjU2Mj9hcGktdmVyc2lvbj0yMDIxLTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/v-ajnavtest/providers/Microsoft.EventHub/namespaces/sdk-NS-3778?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL3YtYWpuYXZ0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTlMtMzc3OD9hcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", + "OSVersion/Microsoft.Windows.10.0.22000.", "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, @@ -430,27 +493,30 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:36:08 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "190ac821-f5a3-4d04-a337-28ea86b8efde_M10CH3_M10CH3" + "0058bec6-fe84-4923-9278-0e2bc8a9e11a_M4CH3_M4CH3" ], "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], - "Server": [ - "Service-Bus-Resource-Provider/CH3", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ "11997" ], "x-ms-correlation-request-id": [ - "391f8dd5-e51f-460c-9909-ba291d751da6" + "b19891f5-54fa-4ae4-abd5-d309ffeb9180" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210927T000626Z:391f8dd5-e51f-460c-9909-ba291d751da6" + "SOUTHINDIA:20211115T023608Z:b19891f5-54fa-4ae4-abd5-d309ffeb9180" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -458,11 +524,8 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Mon, 27 Sep 2021 00:06:25 GMT" - ], "Content-Length": [ - "1017" + "1016" ], "Content-Type": [ "application/json; charset=utf-8" @@ -471,19 +534,19 @@ "-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/v-ajnavtest/providers/Microsoft.EventHub/namespaces/sdk-NS-2562\",\r\n \"name\": \"sdk-NS-2562\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"identity\": {\r\n \"principalId\": \"f5b466be-bc12-4540-a46e-9063bacd2769\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"clusterArmId\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/v-ajnavtest/providers/Microsoft.EventHub/clusters/PMTestCluster1\",\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"ActivatingIdentity\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:sdk-ns-2562\",\r\n \"createdAt\": \"2021-09-27T00:05:24.867Z\",\r\n \"updatedAt\": \"2021-09-27T00:06:19.223Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-2562.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/v-ajnavtest/providers/Microsoft.EventHub/namespaces/sdk-NS-3778\",\r\n \"name\": \"sdk-NS-3778\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"identity\": {\r\n \"principalId\": \"e96eb428-b123-4def-a6e8-679d3cfc4334\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"clusterArmId\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/v-ajnavtest/providers/Microsoft.EventHub/clusters/PMTestCluster1\",\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"ActivatingIdentity\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:sdk-ns-3778\",\r\n \"createdAt\": \"2021-11-15T02:35:05.84Z\",\r\n \"updatedAt\": \"2021-11-15T02:35:57.203Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-3778.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/v-ajnavtest/providers/Microsoft.EventHub/namespaces/sdk-NS-2562?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL3YtYWpuYXZ0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTlMtMjU2Mj9hcGktdmVyc2lvbj0yMDIxLTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/v-ajnavtest/providers/Microsoft.EventHub/namespaces/sdk-NS-3778?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL3YtYWpuYXZ0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTlMtMzc3OD9hcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", + "OSVersion/Microsoft.Windows.10.0.22000.", "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, @@ -491,27 +554,30 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:36:38 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "a0b787fa-5ac3-4176-872c-d7752438c9f3_M3CH3_M3CH3" + "322f52a0-afb9-42de-b09c-528e5d921a97_M10CH3_M10CH3" ], "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], - "Server": [ - "Service-Bus-Resource-Provider/CH3", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ "11996" ], "x-ms-correlation-request-id": [ - "cf268874-9443-4e8f-8d2f-a14b0dade637" + "a5c27c66-72c6-4b13-969c-14661f4f00a5" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210927T000656Z:cf268874-9443-4e8f-8d2f-a14b0dade637" + "SOUTHINDIA:20211115T023639Z:a5c27c66-72c6-4b13-969c-14661f4f00a5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -519,11 +585,8 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Mon, 27 Sep 2021 00:06:56 GMT" - ], "Content-Length": [ - "1008" + "1006" ], "Content-Type": [ "application/json; charset=utf-8" @@ -532,25 +595,25 @@ "-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/v-ajnavtest/providers/Microsoft.EventHub/namespaces/sdk-NS-2562\",\r\n \"name\": \"sdk-NS-2562\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"identity\": {\r\n \"principalId\": \"f5b466be-bc12-4540-a46e-9063bacd2769\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"clusterArmId\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/v-ajnavtest/providers/Microsoft.EventHub/clusters/PMTestCluster1\",\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:sdk-ns-2562\",\r\n \"createdAt\": \"2021-09-27T00:05:24.867Z\",\r\n \"updatedAt\": \"2021-09-27T00:06:33.333Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-2562.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/v-ajnavtest/providers/Microsoft.EventHub/namespaces/sdk-NS-3778\",\r\n \"name\": \"sdk-NS-3778\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"identity\": {\r\n \"principalId\": \"e96eb428-b123-4def-a6e8-679d3cfc4334\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"clusterArmId\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/v-ajnavtest/providers/Microsoft.EventHub/clusters/PMTestCluster1\",\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:sdk-ns-3778\",\r\n \"createdAt\": \"2021-11-15T02:35:05.84Z\",\r\n \"updatedAt\": \"2021-11-15T02:36:13.33Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-3778.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/v-ajnavtest/providers/Microsoft.EventHub/namespaces/sdk-NS-2562?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL3YtYWpuYXZ0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTlMtMjU2Mj9hcGktdmVyc2lvbj0yMDIxLTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/v-ajnavtest/providers/Microsoft.EventHub/namespaces/sdk-NS-3778?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL3YtYWpuYXZ0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTlMtMzc3OD9hcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "396de9d6-e4f9-442e-9526-85ff35c0244d" + "14c7548a-d375-410b-a2ac-2fe48d7847b5" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", + "OSVersion/Microsoft.Windows.10.0.22000.", "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, @@ -558,27 +621,30 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:36:51 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "f36b4d7d-3b24-4f57-a85a-183b03272ab0_M5CH3_M5CH3" + "3f6aaf55-37bb-401f-956c-2a2fa722fc17_M10CH3_M10CH3" ], "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], - "Server": [ - "Service-Bus-Resource-Provider/CH3", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ "11995" ], "x-ms-correlation-request-id": [ - "fa62f0f4-f876-4740-aace-f4a99d8dbf94" + "913ae2ae-745c-47a8-9145-49d59f3ad48c" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210927T000707Z:fa62f0f4-f876-4740-aace-f4a99d8dbf94" + "SOUTHINDIA:20211115T023651Z:913ae2ae-745c-47a8-9145-49d59f3ad48c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -586,11 +652,8 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Mon, 27 Sep 2021 00:07:07 GMT" - ], "Content-Length": [ - "1008" + "1006" ], "Content-Type": [ "application/json; charset=utf-8" @@ -599,19 +662,19 @@ "-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/v-ajnavtest/providers/Microsoft.EventHub/namespaces/sdk-NS-2562\",\r\n \"name\": \"sdk-NS-2562\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"identity\": {\r\n \"principalId\": \"f5b466be-bc12-4540-a46e-9063bacd2769\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"clusterArmId\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/v-ajnavtest/providers/Microsoft.EventHub/clusters/PMTestCluster1\",\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:sdk-ns-2562\",\r\n \"createdAt\": \"2021-09-27T00:05:24.867Z\",\r\n \"updatedAt\": \"2021-09-27T00:06:33.333Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-2562.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/v-ajnavtest/providers/Microsoft.EventHub/namespaces/sdk-NS-3778\",\r\n \"name\": \"sdk-NS-3778\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"identity\": {\r\n \"principalId\": \"e96eb428-b123-4def-a6e8-679d3cfc4334\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"clusterArmId\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/v-ajnavtest/providers/Microsoft.EventHub/clusters/PMTestCluster1\",\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:sdk-ns-3778\",\r\n \"createdAt\": \"2021-11-15T02:35:05.84Z\",\r\n \"updatedAt\": \"2021-11-15T02:36:13.33Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-3778.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/v-ajnavtest/providers/Microsoft.EventHub/namespaces/sdk-NS-2562?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL3YtYWpuYXZ0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTlMtMjU2Mj9hcGktdmVyc2lvbj0yMDIxLTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/v-ajnavtest/providers/Microsoft.EventHub/namespaces/sdk-NS-3778?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL3YtYWpuYXZ0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTlMtMzc3OD9hcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", + "OSVersion/Microsoft.Windows.10.0.22000.", "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, @@ -619,27 +682,30 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:37:34 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "bc0e6890-fc7e-4f1f-bfce-79e54cf68b8c_M9CH3_M9CH3" + "63a60d6f-6397-4b03-82ad-944859af998b_M10CH3_M10CH3" ], "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], - "Server": [ - "Service-Bus-Resource-Provider/CH3", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ "11994" ], "x-ms-correlation-request-id": [ - "9d888113-3b6c-47f0-8d4c-61ba7f82da55" + "d13ffbde-b7d5-4d18-acb1-4278c2e6c9c0" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210927T000749Z:9d888113-3b6c-47f0-8d4c-61ba7f82da55" + "SOUTHINDIA:20211115T023735Z:d13ffbde-b7d5-4d18-acb1-4278c2e6c9c0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -647,9 +713,6 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Mon, 27 Sep 2021 00:07:49 GMT" - ], "Content-Length": [ "1219" ], @@ -660,7 +723,7 @@ "-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/v-ajnavtest/providers/Microsoft.EventHub/namespaces/sdk-NS-2562\",\r\n \"name\": \"sdk-NS-2562\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"identity\": {\r\n \"principalId\": \"f5b466be-bc12-4540-a46e-9063bacd2769\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"encryption\": {\r\n \"keySource\": \"Microsoft.KeyVault\",\r\n \"keyVaultProperties\": [\r\n {\r\n \"keyName\": \"sdktestingkey11\",\r\n \"keyVaultUri\": \"https://sdktestingkey1.vault.azure.net\",\r\n \"keyVersion\": \"\"\r\n }\r\n ],\r\n \"requireInfrastructureEncryption\": false\r\n },\r\n \"clusterArmId\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/v-ajnavtest/providers/Microsoft.EventHub/clusters/PMTestCluster1\",\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:sdk-ns-2562\",\r\n \"createdAt\": \"2021-09-27T00:05:24.867Z\",\r\n \"updatedAt\": \"2021-09-27T00:07:21.06Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-2562.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/v-ajnavtest/providers/Microsoft.EventHub/namespaces/sdk-NS-3778\",\r\n \"name\": \"sdk-NS-3778\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"identity\": {\r\n \"principalId\": \"e96eb428-b123-4def-a6e8-679d3cfc4334\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"encryption\": {\r\n \"keySource\": \"Microsoft.KeyVault\",\r\n \"keyVaultProperties\": [\r\n {\r\n \"keyName\": \"sdktestingkey11\",\r\n \"keyVaultUri\": \"https://sdktestingkey1.vault.azure.net\",\r\n \"keyVersion\": \"\"\r\n }\r\n ],\r\n \"requireInfrastructureEncryption\": false\r\n },\r\n \"clusterArmId\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/v-ajnavtest/providers/Microsoft.EventHub/clusters/PMTestCluster1\",\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:sdk-ns-3778\",\r\n \"createdAt\": \"2021-11-15T02:35:05.84Z\",\r\n \"updatedAt\": \"2021-11-15T02:37:05.773Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-3778.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n}", "StatusCode": 200 }, { @@ -670,15 +733,15 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cedf9494-b26a-4bd4-b9f4-c60b53b4df00" + "eeb60b57-689f-44da-9c65-dc3d67ad9856" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", + "OSVersion/Microsoft.Windows.10.0.22000.", "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/3.0.0.0" ] }, @@ -686,17 +749,23 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:36:44 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-IIS/10.0" + ], "x-ms-client-request-id": [ - "cedf9494-b26a-4bd4-b9f4-c60b53b4df00" + "eeb60b57-689f-44da-9c65-dc3d67ad9856" ], "x-ms-keyvault-service-version": [ - "1.5.99.5" + "1.5.166.0" ], "x-ms-request-id": [ - "613db230-e55a-477f-8d19-26e2df23b397" + "e9992cae-8d67-45bb-a215-4964626d6158" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -704,9 +773,6 @@ "X-Content-Type-Options": [ "nosniff" ], - "Server": [ - "Microsoft-IIS/10.0" - ], "X-AspNet-Version": [ "4.0.30319" ], @@ -714,16 +780,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11999" ], "x-ms-correlation-request-id": [ - "240f9300-1347-4e5d-80b2-417efba3c83c" + "da095ee9-3cb1-42af-acfb-520d60350b22" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210927T000702Z:240f9300-1347-4e5d-80b2-417efba3c83c" - ], - "Date": [ - "Mon, 27 Sep 2021 00:07:01 GMT" + "SOUTHINDIA:20211115T023645Z:da095ee9-3cb1-42af-acfb-520d60350b22" ], "Content-Length": [ "1294" @@ -745,15 +808,15 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7786e2e4-74b8-4a59-9904-72579f9a6b2b" + "95df5f41-23c9-4581-9246-d8277f2f09ae" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", + "OSVersion/Microsoft.Windows.10.0.22000.", "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/3.0.0.0" ] }, @@ -761,17 +824,23 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:37:35 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-IIS/10.0" + ], "x-ms-client-request-id": [ - "7786e2e4-74b8-4a59-9904-72579f9a6b2b" + "95df5f41-23c9-4581-9246-d8277f2f09ae" ], "x-ms-keyvault-service-version": [ - "1.5.99.5" + "1.5.166.0" ], "x-ms-request-id": [ - "65c1269f-09f7-489c-ae65-7cc05dfb3ff2" + "86655848-5e06-4e76-9ca4-5dfead9112a6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -779,9 +848,6 @@ "X-Content-Type-Options": [ "nosniff" ], - "Server": [ - "Microsoft-IIS/10.0" - ], "X-AspNet-Version": [ "4.0.30319" ], @@ -789,16 +855,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11998" ], "x-ms-correlation-request-id": [ - "5fc20e01-b550-469a-ad7d-b8a14ae0121c" + "1fe91903-8a6e-4de7-9bd6-9bfca642d930" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210927T000749Z:5fc20e01-b550-469a-ad7d-b8a14ae0121c" - ], - "Date": [ - "Mon, 27 Sep 2021 00:07:49 GMT" + "SOUTHINDIA:20211115T023735Z:1fe91903-8a6e-4de7-9bd6-9bfca642d930" ], "Content-Length": [ "1449" @@ -810,25 +873,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/v-ajnavtest/providers/Microsoft.KeyVault/vaults/SDKTestingKey1\",\r\n \"name\": \"SDKTestingKey1\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\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\": \"5aa2c069-9493-4059-8398-e31105b9cb6c\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"Get\",\r\n \"UnwrapKey\",\r\n \"WrapKey\"\r\n ],\r\n \"secrets\": [],\r\n \"certificates\": []\r\n }\r\n },\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\": \"f5b466be-bc12-4540-a46e-9063bacd2769\",\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\": false,\r\n \"enabledForDiskEncryption\": false,\r\n \"enabledForTemplateDeployment\": false,\r\n \"enableSoftDelete\": true,\r\n \"softDeleteRetentionInDays\": 90,\r\n \"enableRbacAuthorization\": false,\r\n \"enablePurgeProtection\": true,\r\n \"vaultUri\": \"https://sdktestingkey1.vault.azure.net/\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/v-ajnavtest/providers/Microsoft.KeyVault/vaults/SDKTestingKey1\",\r\n \"name\": \"SDKTestingKey1\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\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\": \"5aa2c069-9493-4059-8398-e31105b9cb6c\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"Get\",\r\n \"UnwrapKey\",\r\n \"WrapKey\"\r\n ],\r\n \"secrets\": [],\r\n \"certificates\": []\r\n }\r\n },\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\": \"e96eb428-b123-4def-a6e8-679d3cfc4334\",\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\": false,\r\n \"enabledForDiskEncryption\": false,\r\n \"enabledForTemplateDeployment\": false,\r\n \"enableSoftDelete\": true,\r\n \"softDeleteRetentionInDays\": 90,\r\n \"enableRbacAuthorization\": false,\r\n \"enablePurgeProtection\": true,\r\n \"vaultUri\": \"https://sdktestingkey1.vault.azure.net/\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/v-ajnavtest/providers/Microsoft.KeyVault/vaults/SDKTestingKey1?api-version=2019-09-01", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL3YtYWpuYXZ0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuS2V5VmF1bHQvdmF1bHRzL1NES1Rlc3RpbmdLZXkxP2FwaS12ZXJzaW9uPTIwMTktMDktMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"eastus\",\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\": \"5aa2c069-9493-4059-8398-e31105b9cb6c\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"Get\",\r\n \"UnwrapKey\",\r\n \"WrapKey\"\r\n ],\r\n \"secrets\": [],\r\n \"certificates\": []\r\n }\r\n },\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\": \"f5b466be-bc12-4540-a46e-9063bacd2769\",\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://sdktestingkey1.vault.azure.net/\",\r\n \"enabledForDeployment\": false,\r\n \"enabledForDiskEncryption\": false,\r\n \"enabledForTemplateDeployment\": false,\r\n \"enableSoftDelete\": true,\r\n \"softDeleteRetentionInDays\": 90,\r\n \"enableRbacAuthorization\": false,\r\n \"enablePurgeProtection\": true\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"eastus\",\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\": \"5aa2c069-9493-4059-8398-e31105b9cb6c\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"Get\",\r\n \"UnwrapKey\",\r\n \"WrapKey\"\r\n ],\r\n \"secrets\": [],\r\n \"certificates\": []\r\n }\r\n },\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\": \"e96eb428-b123-4def-a6e8-679d3cfc4334\",\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://sdktestingkey1.vault.azure.net/\",\r\n \"enabledForDeployment\": false,\r\n \"enabledForDiskEncryption\": false,\r\n \"enabledForTemplateDeployment\": false,\r\n \"enableSoftDelete\": true,\r\n \"softDeleteRetentionInDays\": 90,\r\n \"enableRbacAuthorization\": false,\r\n \"enablePurgeProtection\": true\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "842f5dfb-534c-47bb-a861-22de5e7b7703" + "2bb567f2-33f5-40c8-9e48-6f784cc81823" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", + "OSVersion/Microsoft.Windows.10.0.22000.", "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/3.0.0.0" ], "Content-Type": [ @@ -842,17 +905,23 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:36:45 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-IIS/10.0" + ], "x-ms-client-request-id": [ - "842f5dfb-534c-47bb-a861-22de5e7b7703" + "2bb567f2-33f5-40c8-9e48-6f784cc81823" ], "x-ms-keyvault-service-version": [ - "1.5.99.5" + "1.5.166.0" ], "x-ms-request-id": [ - "43f54203-3e34-4380-a4fc-50056c38f730" + "c31211c5-1e74-4771-bff8-b48789ff4382" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -860,9 +929,6 @@ "X-Content-Type-Options": [ "nosniff" ], - "Server": [ - "Microsoft-IIS/10.0" - ], "X-AspNet-Version": [ "4.0.30319" ], @@ -870,16 +936,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1198" ], "x-ms-correlation-request-id": [ - "3131e415-c1e9-4ece-b85f-130dbb5540d0" + "f6127530-3bdc-4919-b583-e1efad73bdb7" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210927T000702Z:3131e415-c1e9-4ece-b85f-130dbb5540d0" - ], - "Date": [ - "Mon, 27 Sep 2021 00:07:01 GMT" + "SOUTHINDIA:20211115T023646Z:f6127530-3bdc-4919-b583-e1efad73bdb7" ], "Content-Length": [ "1449" @@ -891,7 +954,7 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/v-ajnavtest/providers/Microsoft.KeyVault/vaults/SDKTestingKey1\",\r\n \"name\": \"SDKTestingKey1\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\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\": \"5aa2c069-9493-4059-8398-e31105b9cb6c\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"Get\",\r\n \"UnwrapKey\",\r\n \"WrapKey\"\r\n ],\r\n \"secrets\": [],\r\n \"certificates\": []\r\n }\r\n },\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\": \"f5b466be-bc12-4540-a46e-9063bacd2769\",\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\": false,\r\n \"enabledForDiskEncryption\": false,\r\n \"enabledForTemplateDeployment\": false,\r\n \"enableSoftDelete\": true,\r\n \"softDeleteRetentionInDays\": 90,\r\n \"enableRbacAuthorization\": false,\r\n \"enablePurgeProtection\": true,\r\n \"vaultUri\": \"https://sdktestingkey1.vault.azure.net/\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/v-ajnavtest/providers/Microsoft.KeyVault/vaults/SDKTestingKey1\",\r\n \"name\": \"SDKTestingKey1\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\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\": \"5aa2c069-9493-4059-8398-e31105b9cb6c\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"Get\",\r\n \"UnwrapKey\",\r\n \"WrapKey\"\r\n ],\r\n \"secrets\": [],\r\n \"certificates\": []\r\n }\r\n },\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\": \"e96eb428-b123-4def-a6e8-679d3cfc4334\",\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\": false,\r\n \"enabledForDiskEncryption\": false,\r\n \"enabledForTemplateDeployment\": false,\r\n \"enableSoftDelete\": true,\r\n \"softDeleteRetentionInDays\": 90,\r\n \"enableRbacAuthorization\": false,\r\n \"enablePurgeProtection\": true,\r\n \"vaultUri\": \"https://sdktestingkey1.vault.azure.net/\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { @@ -901,15 +964,15 @@ "RequestBody": "{\r\n \"location\": \"eastus\",\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\": \"5aa2c069-9493-4059-8398-e31105b9cb6c\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"Get\",\r\n \"UnwrapKey\",\r\n \"WrapKey\"\r\n ],\r\n \"secrets\": [],\r\n \"certificates\": []\r\n }\r\n },\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 \"vaultUri\": \"https://sdktestingkey1.vault.azure.net/\",\r\n \"enabledForDeployment\": false,\r\n \"enabledForDiskEncryption\": false,\r\n \"enabledForTemplateDeployment\": false,\r\n \"enableSoftDelete\": true,\r\n \"softDeleteRetentionInDays\": 90,\r\n \"enableRbacAuthorization\": false,\r\n \"enablePurgeProtection\": true\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "8a913b97-3c81-406d-b73c-866fd000f97f" + "4a1caff4-af52-44db-ad38-19446e71b5d5" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", + "OSVersion/Microsoft.Windows.10.0.22000.", "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/3.0.0.0" ], "Content-Type": [ @@ -923,17 +986,23 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:37:36 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-IIS/10.0" + ], "x-ms-client-request-id": [ - "8a913b97-3c81-406d-b73c-866fd000f97f" + "4a1caff4-af52-44db-ad38-19446e71b5d5" ], "x-ms-keyvault-service-version": [ - "1.5.99.5" + "1.5.166.0" ], "x-ms-request-id": [ - "220c7f98-ba3b-4fac-a88d-075f951fa090" + "3c61fc3e-865f-4f58-8237-ced15f5a239d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -941,9 +1010,6 @@ "X-Content-Type-Options": [ "nosniff" ], - "Server": [ - "Microsoft-IIS/10.0" - ], "X-AspNet-Version": [ "4.0.30319" ], @@ -951,16 +1017,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1197" ], "x-ms-correlation-request-id": [ - "9cfe6f9f-371e-417f-9ae9-ffdb8f7f9842" + "0cc4bcc1-fca3-4e9b-a20f-2c8ebbbc5c99" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210927T000750Z:9cfe6f9f-371e-417f-9ae9-ffdb8f7f9842" - ], - "Date": [ - "Mon, 27 Sep 2021 00:07:50 GMT" + "SOUTHINDIA:20211115T023736Z:0cc4bcc1-fca3-4e9b-a20f-2c8ebbbc5c99" ], "Content-Length": [ "1294" @@ -974,12 +1037,79 @@ }, "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/v-ajnavtest/providers/Microsoft.KeyVault/vaults/SDKTestingKey1\",\r\n \"name\": \"SDKTestingKey1\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\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\": \"5aa2c069-9493-4059-8398-e31105b9cb6c\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"Get\",\r\n \"UnwrapKey\",\r\n \"WrapKey\"\r\n ],\r\n \"secrets\": [],\r\n \"certificates\": []\r\n }\r\n },\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 \"enabledForDeployment\": false,\r\n \"enabledForDiskEncryption\": false,\r\n \"enabledForTemplateDeployment\": false,\r\n \"enableSoftDelete\": true,\r\n \"softDeleteRetentionInDays\": 90,\r\n \"enableRbacAuthorization\": false,\r\n \"enablePurgeProtection\": true,\r\n \"vaultUri\": \"https://sdktestingkey1.vault.azure.net/\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/v-ajnavtest/providers/Microsoft.EventHub/namespaces/sdk-NS-3778?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL3YtYWpuYXZ0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTlMtMzc3OD9hcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "dc9cf6d1-ab80-4173-99a7-56b1445cbd51" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 15 Nov 2021 02:37:43 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/v-ajnavtest/providers/Microsoft.EventHub/namespaces/sdk-NS-3778/operationresults/sdk-NS-3778?api-version=2021-11-01" + ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "32200542-6d16-4952-8be6-53281e3ecd48_M10CH3_M10CH3" + ], + "Server-SB": [ + "Service-Bus-Resource-Provider/CH3" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-correlation-request-id": [ + "ae73c74f-4bcf-4036-9aef-30041db2ee3d" + ], + "x-ms-routing-request-id": [ + "SOUTHINDIA:20211115T023743Z:ae73c74f-4bcf-4036-9aef-30041db2ee3d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "", + "StatusCode": 202 } ], "Names": { "NamespaceBYOKCreateGetUpdateDelete": [ - "Default-EventHub-5484", - "sdk-NS-2562" + "Default-EventHub-7599", + "sdk-NS-3778" ] }, "Variables": { 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 7ae86af0db1f..b78bd0667e9a 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,21 +1,21 @@ { "Entries": [ { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/Default-EventHub-1523?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlZ3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMTUyMz9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/Default-EventHub-2530?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlZ3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMjUzMD9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "76e14d32-9767-4f93-ac99-35f112923e96" + "92fbe021-7d45-4a78-89cf-e5fddeef66fe" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", + "OSVersion/Microsoft.Windows.10.0.22000.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -23,11 +23,14 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:23:39 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1ERUZBVUxUOjJERVZFTlRIVUI6MkQxNTIzLUFVU1RSQUxJQUVBU1QiLCJqb2JMb2NhdGlvbiI6ImF1c3RyYWxpYWVhc3QifQ?api-version=2015-11-01" + "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1ERUZBVUxUOjJERVZFTlRIVUI6MkQyNTMwLUFVU1RSQUxJQUVBU1QiLCJqb2JMb2NhdGlvbiI6ImF1c3RyYWxpYWVhc3QifQ?api-version=2015-11-01" ], "Retry-After": [ "15" @@ -36,13 +39,13 @@ "14999" ], "x-ms-request-id": [ - "b1bc598a-ed2b-468c-a46d-d6fe8c493b64" + "d31c247b-6aad-4456-93ef-050cd21afc04" ], "x-ms-correlation-request-id": [ - "b1bc598a-ed2b-468c-a46d-d6fe8c493b64" + "d31c247b-6aad-4456-93ef-050cd21afc04" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210924T041316Z:b1bc598a-ed2b-468c-a46d-d6fe8c493b64" + "SOUTHINDIA:20211115T022340Z:d31c247b-6aad-4456-93ef-050cd21afc04" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -50,14 +53,11 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:13:16 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", @@ -70,15 +70,15 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7b7c0a68-9ad5-4c7e-9126-ee463c078ddb" + "97a155a8-11f0-4053-8e3e-b06b5f6c3652" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", + "OSVersion/Microsoft.Windows.10.0.22000.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -86,20 +86,23 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:23:40 GMT" + ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11999" ], "x-ms-request-id": [ - "2b83e2d6-d00c-4494-87af-409f33c146a9" + "77140eb9-5cd1-4c28-b8f6-117ba5c9e34d" ], "x-ms-correlation-request-id": [ - "2b83e2d6-d00c-4494-87af-409f33c146a9" + "77140eb9-5cd1-4c28-b8f6-117ba5c9e34d" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T041317Z:2b83e2d6-d00c-4494-87af-409f33c146a9" + "SOUTHINDIA:20211115T022340Z:77140eb9-5cd1-4c28-b8f6-117ba5c9e34d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -107,38 +110,35 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:13:17 GMT" + "Content-Length": [ + "4451" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" - ], - "Content-Length": [ - "4274" ] }, - "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 \"Jio India West\",\r\n \"West US 3\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"UAE Central\",\r\n \"Norway West\",\r\n \"Sweden Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01-preview\",\r\n \"2021-01-01-preview\",\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 \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"UAE Central\",\r\n \"Norway West\",\r\n \"Sweden 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 \"2021-06-01-preview\",\r\n \"2021-01-01-preview\",\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 },\r\n {\r\n \"resourceType\": \"namespaces/networkrulesets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-06-01-preview\",\r\n \"2021-01-01-preview\",\r\n \"2018-01-01-preview\",\r\n \"2017-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/privateEndpointConnections\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-06-01-preview\",\r\n \"2021-01-01-preview\",\r\n \"2018-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/eventhubs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-06-01-preview\",\r\n \"2021-01-01-preview\",\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 },\r\n {\r\n \"resourceType\": \"namespaces/eventhubs/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-06-01-preview\",\r\n \"2021-01-01-preview\",\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 },\r\n {\r\n \"resourceType\": \"namespaces/eventhubs/consumergroups\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-06-01-preview\",\r\n \"2021-01-01-preview\",\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 },\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 \"2021-06-01-preview\",\r\n \"2021-01-01-preview\",\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 },\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 \"2021-06-01-preview\",\r\n \"2021-01-01-preview\",\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 },\r\n {\r\n \"resourceType\": \"namespaces/disasterrecoveryconfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-06-01-preview\",\r\n \"2021-01-01-preview\",\r\n \"2018-01-01-preview\",\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 \"2021-06-01-preview\",\r\n \"2021-01-01-preview\",\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 },\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}", + "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 \"Jio India West\",\r\n \"West US 3\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"UAE Central\",\r\n \"Norway West\",\r\n \"Sweden Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-11-01\",\r\n \"2021-06-01-preview\",\r\n \"2021-01-01-preview\",\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 \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"UAE Central\",\r\n \"Norway West\",\r\n \"Sweden Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-11-01\",\r\n \"2021-06-01-preview\",\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 \"2021-11-01\",\r\n \"2021-06-01-preview\",\r\n \"2021-01-01-preview\",\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 },\r\n {\r\n \"resourceType\": \"namespaces/networkrulesets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-11-01\",\r\n \"2021-06-01-preview\",\r\n \"2021-01-01-preview\",\r\n \"2018-01-01-preview\",\r\n \"2017-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/privateEndpointConnections\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-11-01\",\r\n \"2021-06-01-preview\",\r\n \"2021-01-01-preview\",\r\n \"2018-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/eventhubs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-11-01\",\r\n \"2021-06-01-preview\",\r\n \"2021-01-01-preview\",\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 },\r\n {\r\n \"resourceType\": \"namespaces/eventhubs/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-11-01\",\r\n \"2021-06-01-preview\",\r\n \"2021-01-01-preview\",\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 },\r\n {\r\n \"resourceType\": \"namespaces/eventhubs/consumergroups\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-11-01\",\r\n \"2021-06-01-preview\",\r\n \"2021-01-01-preview\",\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 },\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 \"2021-11-01\",\r\n \"2021-06-01-preview\",\r\n \"2021-01-01-preview\",\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 },\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 \"2021-11-01\",\r\n \"2021-06-01-preview\",\r\n \"2021-01-01-preview\",\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 },\r\n {\r\n \"resourceType\": \"namespaces/disasterrecoveryconfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-11-01\",\r\n \"2021-06-01-preview\",\r\n \"2021-01-01-preview\",\r\n \"2018-01-01-preview\",\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 \"2021-11-01\",\r\n \"2021-06-01-preview\",\r\n \"2021-01-01-preview\",\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 },\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/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/Default-EventHub-4646?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlZ3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNDY0Nj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/Default-EventHub-5204?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlZ3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNTIwND9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"Australia East\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "93bf05d0-c422-4425-98a9-215ea5fc62c7" + "279ed1bf-5f7f-4a73-91a9-66f9b8b6b5bb" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", + "OSVersion/Microsoft.Windows.10.0.22000.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ], "Content-Type": [ @@ -152,6 +152,9 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:23:42 GMT" + ], "Pragma": [ "no-cache" ], @@ -159,13 +162,13 @@ "1199" ], "x-ms-request-id": [ - "95277516-f6ce-4731-a47d-ababaca3d488" + "229ddc94-3bb5-4e96-b87c-c53fbd469c94" ], "x-ms-correlation-request-id": [ - "95277516-f6ce-4731-a47d-ababaca3d488" + "229ddc94-3bb5-4e96-b87c-c53fbd469c94" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T041320Z:95277516-f6ce-4731-a47d-ababaca3d488" + "SOUTHINDIA:20211115T022343Z:229ddc94-3bb5-4e96-b87c-c53fbd469c94" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -173,9 +176,6 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:13:19 GMT" - ], "Content-Length": [ "202" ], @@ -186,53 +186,56 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-4646\",\r\n \"name\": \"Default-EventHub-4646\",\r\n \"location\": \"australiaeast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-5204\",\r\n \"name\": \"Default-EventHub-5204\",\r\n \"location\": \"australiaeast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/providers/Microsoft.EventHub/operations?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIxLTA2LTAxLXByZXZpZXc=", + "RequestUri": "/providers/Microsoft.EventHub/operations?api-version=2021-11-01", + "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8c3b683c-045a-442e-8ebd-50446c7813f4" + "5969b7e0-08a6-42eb-a5ba-5f1986ce6349" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:23:42 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "6b5ebe83-ee41-40ba-9bf3-76626dd88758_M5SN1_M5SN1" + "d15071d6-c271-4a30-bd85-02a2c9148fe0_M10CH3_M10CH3" ], "Server-SB": [ - "Service-Bus-Resource-Provider/SN1" - ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" + "Service-Bus-Resource-Provider/CH3" ], "x-ms-ratelimit-remaining-tenant-reads": [ "11999" ], "x-ms-correlation-request-id": [ - "9b11cbc4-e3bc-4db8-a816-64119c0b2e0f" + "84340e22-0e50-4398-a348-e05585ac7396" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T041320Z:9b11cbc4-e3bc-4db8-a816-64119c0b2e0f" + "SOUTHINDIA:20211115T022343Z:84340e22-0e50-4398-a348-e05585ac7396" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -240,11 +243,8 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:13:19 GMT" - ], "Content-Length": [ - "48635" + "48935" ], "Content-Type": [ "application/json; charset=utf-8" @@ -253,26 +253,26 @@ "-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 \"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/schemagroups/write\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"SchemaGroup\",\r\n \"operation\": \"Create or Update SchemaGroup\",\r\n \"description\": \"Create or Update SchemaGroup properties.\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/schemagroups/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"SchemaGroup\",\r\n \"operation\": \"Get SchemaGroup\",\r\n \"description\": \"Get list of SchemaGroup Resource Descriptions\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/schemagroups/delete\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"SchemaGroup\",\r\n \"operation\": \"Delete SchemaGroup\",\r\n \"description\": \"Operation to delete SchemaGroup Resource\"\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 \"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 \"fillGapWithZero\": false\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 \"Minimum\",\r\n \"Maximum\"\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 \"name\": \"NamespaceCpuUsage\",\r\n \"displayName\": \"CPU\",\r\n \"displayDescription\": \"CPU usage metric for Premium SKU namespaces.\",\r\n \"unit\": \"Percent\",\r\n \"aggregationType\": \"Maximum\",\r\n \"internalMetricName\": \"NamespaceCpuUsage\",\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\": \"Replica\",\r\n \"isHidden\": true,\r\n \"defaultDimensionValues\": [\r\n {\r\n \"value\": \"Primary\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"supportedAggregationTypes\": [\r\n \"Maximum\",\r\n \"Minimum\",\r\n \"Average\"\r\n ],\r\n \"metricFilterPattern\": \"(?i)^premium$\",\r\n \"fillGapWithZero\": false\r\n },\r\n {\r\n \"name\": \"NamespaceMemoryUsage\",\r\n \"displayName\": \"Memory Usage\",\r\n \"displayDescription\": \"Memory usage metric for Premium SKU namespaces.\",\r\n \"unit\": \"Percent\",\r\n \"aggregationType\": \"Maximum\",\r\n \"internalMetricName\": \"NamespaceWorkingSet64\",\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\": \"Replica\",\r\n \"isHidden\": true,\r\n \"defaultDimensionValues\": [\r\n {\r\n \"value\": \"Primary\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"supportedAggregationTypes\": [\r\n \"Maximum\",\r\n \"Minimum\",\r\n \"Average\"\r\n ],\r\n \"metricFilterPattern\": \"(?i)^premium$\",\r\n \"fillGapWithZero\": false\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 \"lockAggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"fillGapWithZero\": false\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\",\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 \"Minimum\",\r\n \"Maximum\"\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/schemas/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"Schemas\",\r\n \"operation\": \"Retrieve schemas\",\r\n \"description\": \"Retrieve schemas\"\r\n },\r\n \"isDataAction\": true\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/schemas/write\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"Schemas\",\r\n \"operation\": \"Write schemas\",\r\n \"description\": \"Write schemas\"\r\n },\r\n \"isDataAction\": true\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/schemas/delete\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"Schemas\",\r\n \"operation\": \"Delete schemas\",\r\n \"description\": \"Delete schemas\"\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 \"name\": \"Microsoft.EventHub/namespaces/privateEndpointConnectionProxies/operationstatus/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"Non Resource Operation\",\r\n \"operation\": \"Private endpoint operation status\",\r\n \"description\": \"Get the status of an asynchronous private endpoint operation\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/privateEndpointConnections/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"Private Endpoint Connection\",\r\n \"operation\": \"Get Private Endpoint Connection\",\r\n \"description\": \"Get Private Endpoint Connection\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/privateEndpointConnections/write\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"Private Endpoint Connection\",\r\n \"operation\": \"Create or Update Private Endpoint Connection\",\r\n \"description\": \"Create or Update Private Endpoint Connection\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/privateEndpointConnections/delete\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"Private Endpoint Connection\",\r\n \"operation\": \"Removes Private Endpoint Connection\",\r\n \"description\": \"Removes Private Endpoint Connection\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/privateLinkResources/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"PrivateLinks\",\r\n \"operation\": \"Gets the resource types that support private endpoint connections\",\r\n \"description\": \"Gets the resource types that support private endpoint connections\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/privateEndpointConnections/operationstatus/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"Non Resource Operation\",\r\n \"operation\": \"Private endpoint operation status\",\r\n \"description\": \"Get the status of an asynchronous private endpoint operation\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/privateEndpointConnectionsApproval/action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"Private Endpoint Connection\",\r\n \"operation\": \"Approve Private Endpoint Connection\",\r\n \"description\": \"Approve Private Endpoint Connection\"\r\n },\r\n \"isDataAction\": false\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/schemagroups/write\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"SchemaGroup\",\r\n \"operation\": \"Create or Update SchemaGroup\",\r\n \"description\": \"Create or Update SchemaGroup properties.\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/schemagroups/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"SchemaGroup\",\r\n \"operation\": \"Get SchemaGroup\",\r\n \"description\": \"Get list of SchemaGroup Resource Descriptions\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/schemagroups/delete\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"SchemaGroup\",\r\n \"operation\": \"Delete SchemaGroup\",\r\n \"description\": \"Operation to delete SchemaGroup Resource\"\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\": \"Maximum\",\r\n \"internalMetricName\": \"NamespaceActiveConnections\",\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 \"supportedAggregationTypes\": [\r\n \"Maximum\",\r\n \"Minimum\",\r\n \"Average\"\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\": \"Maximum\",\r\n \"internalMetricName\": \"ConnectionOpen\",\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 \"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\": \"Maximum\",\r\n \"internalMetricName\": \"ConnectionClose\",\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 \"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 \"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 \"fillGapWithZero\": false\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 \"Minimum\",\r\n \"Maximum\"\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 \"name\": \"NamespaceCpuUsage\",\r\n \"displayName\": \"CPU\",\r\n \"displayDescription\": \"CPU usage metric for Premium SKU namespaces.\",\r\n \"unit\": \"Percent\",\r\n \"aggregationType\": \"Maximum\",\r\n \"internalMetricName\": \"NamespaceCpuUsage\",\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\": \"Replica\",\r\n \"isHidden\": true,\r\n \"defaultDimensionValues\": [\r\n {\r\n \"value\": \"Primary\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"supportedAggregationTypes\": [\r\n \"Maximum\",\r\n \"Minimum\",\r\n \"Average\"\r\n ],\r\n \"metricFilterPattern\": \"(?i)^premium$\",\r\n \"fillGapWithZero\": false\r\n },\r\n {\r\n \"name\": \"NamespaceMemoryUsage\",\r\n \"displayName\": \"Memory Usage\",\r\n \"displayDescription\": \"Memory usage metric for Premium SKU namespaces.\",\r\n \"unit\": \"Percent\",\r\n \"aggregationType\": \"Maximum\",\r\n \"internalMetricName\": \"NamespaceWorkingSet64\",\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\": \"Replica\",\r\n \"isHidden\": true,\r\n \"defaultDimensionValues\": [\r\n {\r\n \"value\": \"Primary\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"supportedAggregationTypes\": [\r\n \"Maximum\",\r\n \"Minimum\",\r\n \"Average\"\r\n ],\r\n \"metricFilterPattern\": \"(?i)^premium$\",\r\n \"fillGapWithZero\": false\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\": \"Maximum\",\r\n \"internalMetricName\": \"NamespaceActiveConnections\",\r\n \"isDimensionRequired\": false,\r\n \"resourceIdDimensionNameOverride\": \"ScaleUnit\",\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 \"supportedAggregationTypes\": [\r\n \"Maximum\",\r\n \"Minimum\",\r\n \"Average\"\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\": \"Maximum\",\r\n \"internalMetricName\": \"ConnectionOpen\",\r\n \"isDimensionRequired\": false,\r\n \"resourceIdDimensionNameOverride\": \"ScaleUnit\",\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 \"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\": \"Maximum\",\r\n \"internalMetricName\": \"ConnectionClose\",\r\n \"isDimensionRequired\": false,\r\n \"resourceIdDimensionNameOverride\": \"ScaleUnit\",\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 \"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 \"lockAggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"fillGapWithZero\": false\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\",\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 \"Minimum\",\r\n \"Maximum\"\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/schemas/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"Schemas\",\r\n \"operation\": \"Retrieve schemas\",\r\n \"description\": \"Retrieve schemas\"\r\n },\r\n \"isDataAction\": true\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/schemas/write\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"Schemas\",\r\n \"operation\": \"Write schemas\",\r\n \"description\": \"Write schemas\"\r\n },\r\n \"isDataAction\": true\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/schemas/delete\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"Schemas\",\r\n \"operation\": \"Delete schemas\",\r\n \"description\": \"Delete schemas\"\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 \"name\": \"Microsoft.EventHub/namespaces/privateEndpointConnectionProxies/operationstatus/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"Non Resource Operation\",\r\n \"operation\": \"Private endpoint operation status\",\r\n \"description\": \"Get the status of an asynchronous private endpoint operation\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/privateEndpointConnections/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"Private Endpoint Connection\",\r\n \"operation\": \"Get Private Endpoint Connection\",\r\n \"description\": \"Get Private Endpoint Connection\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/privateEndpointConnections/write\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"Private Endpoint Connection\",\r\n \"operation\": \"Create or Update Private Endpoint Connection\",\r\n \"description\": \"Create or Update Private Endpoint Connection\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/privateEndpointConnections/delete\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"Private Endpoint Connection\",\r\n \"operation\": \"Removes Private Endpoint Connection\",\r\n \"description\": \"Removes Private Endpoint Connection\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/privateLinkResources/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"PrivateLinks\",\r\n \"operation\": \"Gets the resource types that support private endpoint connections\",\r\n \"description\": \"Gets the resource types that support private endpoint connections\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/privateEndpointConnections/operationstatus/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"Non Resource Operation\",\r\n \"operation\": \"Private endpoint operation status\",\r\n \"description\": \"Get the status of an asynchronous private endpoint operation\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/privateEndpointConnectionsApproval/action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"Private Endpoint Connection\",\r\n \"operation\": \"Approve Private Endpoint Connection\",\r\n \"description\": \"Approve Private Endpoint Connection\"\r\n },\r\n \"isDataAction\": false\r\n }\r\n ],\r\n \"nextLink\": \"\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.EventHub/checkNameAvailability?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvY2hlY2tOYW1lQXZhaWxhYmlsaXR5P2FwaS12ZXJzaW9uPTIwMjEtMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.EventHub/checkNameAvailability?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvY2hlY2tOYW1lQXZhaWxhYmlsaXR5P2FwaS12ZXJzaW9uPTIwMjEtMTEtMDE=", "RequestMethod": "POST", - "RequestBody": "{\r\n \"name\": \"sdk-NS-164\"\r\n}", + "RequestBody": "{\r\n \"name\": \"sdk-NS-642\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "40712bf5-e7f2-4c7e-8508-b0d6247a19f7" + "839dce54-c3c3-4b4e-86a3-27201f6984fd" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -285,27 +285,30 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:23:43 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "efda5a64-a7f7-4ad9-b33d-5fd93dd95591_M5SN1_M5SN1" + "c15e85c6-f3c3-4abc-b427-9aff67bb200e_M10CH3_M10CH3" ], "Server-SB": [ - "Service-Bus-Resource-Provider/SN1" - ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" + "Service-Bus-Resource-Provider/CH3" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], "x-ms-correlation-request-id": [ - "e3635f52-a652-49d0-9dbd-ddfd625b0dbb" + "83e48984-4ae7-4da8-9fcf-ea47745ca15d" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T041320Z:e3635f52-a652-49d0-9dbd-ddfd625b0dbb" + "SOUTHINDIA:20211115T022343Z:83e48984-4ae7-4da8-9fcf-ea47745ca15d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -313,9 +316,6 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:13:19 GMT" - ], "Content-Length": [ "53" ], @@ -330,22 +330,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-4646/providers/Microsoft.EventHub/namespaces/sdk-NS-164?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNDY0Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTE2ND9hcGktdmVyc2lvbj0yMDIxLTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-5204/providers/Microsoft.EventHub/namespaces/sdk-NS-642?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNTIwNC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTY0Mj9hcGktdmVyc2lvbj0yMDIxLTExLTAx", "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": [ - "d72def8a-76c4-4eef-8083-1cfe4ba220ff" + "7d65566b-6e72-4ee6-9862-35382c3291d3" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -358,27 +358,30 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:23:50 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "783a917a-145d-420f-a557-2d1bd99c9cae_M5SN1_M5SN1" + "bba6a051-94ec-4dc5-ae40-809aa9f1500d_M10CH3_M10CH3" ], "Server-SB": [ - "Service-Bus-Resource-Provider/SN1" - ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" + "Service-Bus-Resource-Provider/CH3" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "49" ], "x-ms-correlation-request-id": [ - "9ea1ef11-cd47-4b88-84ea-770ec82275fe" + "c1720147-ff47-4c70-9f23-ad5db3d39899" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T041328Z:9ea1ef11-cd47-4b88-84ea-770ec82275fe" + "SOUTHINDIA:20211115T022350Z:c1720147-ff47-4c70-9f23-ad5db3d39899" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -386,11 +389,8 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:13:27 GMT" - ], "Content-Length": [ - "730" + "732" ], "Content-Type": [ "application/json; charset=utf-8" @@ -399,47 +399,50 @@ "-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-4646/providers/Microsoft.EventHub/namespaces/sdk-NS-164\",\r\n \"name\": \"sdk-NS-164\",\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 \"disableLocalAuth\": false,\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-164\",\r\n \"createdAt\": \"2021-09-24T04:13:26.61Z\",\r\n \"updatedAt\": \"2021-09-24T04:13:26.61Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-164.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-5204/providers/Microsoft.EventHub/namespaces/sdk-NS-642\",\r\n \"name\": \"sdk-NS-642\",\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 \"disableLocalAuth\": false,\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-642\",\r\n \"createdAt\": \"2021-11-15T02:23:49.143Z\",\r\n \"updatedAt\": \"2021-11-15T02:23:49.143Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-642.servicebus.windows.net:443/\",\r\n \"status\": \"Activating\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-4646/providers/Microsoft.EventHub/namespaces/sdk-NS-164?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNDY0Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTE2ND9hcGktdmVyc2lvbj0yMDIxLTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-5204/providers/Microsoft.EventHub/namespaces/sdk-NS-642?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNTIwNC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTY0Mj9hcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:24:20 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "d08bfc96-69e1-4227-89e6-268e75c4cf34_M5SN1_M5SN1" + "e5e4ea1f-21e2-4a6d-8d88-1198b6686402_M5CH3_M5CH3" ], "Server-SB": [ - "Service-Bus-Resource-Provider/SN1" - ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" + "Service-Bus-Resource-Provider/CH3" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11999" ], "x-ms-correlation-request-id": [ - "6518f3f2-74c3-4dfe-8c66-dfca7218af3e" + "89d534e3-4a06-4537-9835-edffb97d6dd2" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T041358Z:6518f3f2-74c3-4dfe-8c66-dfca7218af3e" + "SOUTHINDIA:20211115T022420Z:89d534e3-4a06-4537-9835-edffb97d6dd2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -447,11 +450,8 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:13:58 GMT" - ], "Content-Length": [ - "730" + "732" ], "Content-Type": [ "application/json; charset=utf-8" @@ -460,47 +460,50 @@ "-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-4646/providers/Microsoft.EventHub/namespaces/sdk-NS-164\",\r\n \"name\": \"sdk-NS-164\",\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 \"disableLocalAuth\": false,\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-164\",\r\n \"createdAt\": \"2021-09-24T04:13:26.61Z\",\r\n \"updatedAt\": \"2021-09-24T04:13:26.61Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-164.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-5204/providers/Microsoft.EventHub/namespaces/sdk-NS-642\",\r\n \"name\": \"sdk-NS-642\",\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 \"disableLocalAuth\": false,\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-642\",\r\n \"createdAt\": \"2021-11-15T02:23:49.143Z\",\r\n \"updatedAt\": \"2021-11-15T02:23:49.143Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-642.servicebus.windows.net:443/\",\r\n \"status\": \"Activating\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-4646/providers/Microsoft.EventHub/namespaces/sdk-NS-164?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNDY0Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTE2ND9hcGktdmVyc2lvbj0yMDIxLTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-5204/providers/Microsoft.EventHub/namespaces/sdk-NS-642?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNTIwNC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTY0Mj9hcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:24:51 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "909447c3-cd2c-4f20-aa9e-5d123d6405c1_M5SN1_M5SN1" + "1a23dc1d-d0b7-42ce-bfb2-43da7b29582e_M5CH3_M5CH3" ], "Server-SB": [ - "Service-Bus-Resource-Provider/SN1" - ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" + "Service-Bus-Resource-Provider/CH3" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11998" ], "x-ms-correlation-request-id": [ - "109ee982-c4d6-45eb-b7d6-a5ccaeaada87" + "39dc7f69-744c-464b-8c53-b0b11ea76427" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T041429Z:109ee982-c4d6-45eb-b7d6-a5ccaeaada87" + "SOUTHINDIA:20211115T022451Z:39dc7f69-744c-464b-8c53-b0b11ea76427" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -508,11 +511,8 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:14:28 GMT" - ], "Content-Length": [ - "728" + "730" ], "Content-Type": [ "application/json; charset=utf-8" @@ -521,53 +521,56 @@ "-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-4646/providers/Microsoft.EventHub/namespaces/sdk-NS-164\",\r\n \"name\": \"sdk-NS-164\",\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 \"disableLocalAuth\": false,\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-164\",\r\n \"createdAt\": \"2021-09-24T04:13:26.61Z\",\r\n \"updatedAt\": \"2021-09-24T04:14:15.42Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-164.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-5204/providers/Microsoft.EventHub/namespaces/sdk-NS-642\",\r\n \"name\": \"sdk-NS-642\",\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 \"disableLocalAuth\": false,\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-642\",\r\n \"createdAt\": \"2021-11-15T02:23:49.143Z\",\r\n \"updatedAt\": \"2021-11-15T02:24:40.873Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-642.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-4646/providers/Microsoft.EventHub/namespaces/sdk-NS-164?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNDY0Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTE2ND9hcGktdmVyc2lvbj0yMDIxLTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-5204/providers/Microsoft.EventHub/namespaces/sdk-NS-642?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNTIwNC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTY0Mj9hcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "391e906e-55ef-4461-97bc-16c19776c003" + "08b5f4bf-9526-480b-b1d2-1e8387c2776a" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:24:56 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "0f35a004-728f-4564-ad8b-fe0baadc607b_M5SN1_M5SN1" + "030af70e-14b4-432f-9316-b742ff82645a_M5CH3_M5CH3" ], "Server-SB": [ - "Service-Bus-Resource-Provider/SN1" - ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" + "Service-Bus-Resource-Provider/CH3" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11997" ], "x-ms-correlation-request-id": [ - "9cc4f7b7-26cb-4204-a116-3e539a1067c6" + "ec2cfdce-7139-475d-88f9-c4e5af610c63" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T041434Z:9cc4f7b7-26cb-4204-a116-3e539a1067c6" + "SOUTHINDIA:20211115T022456Z:ec2cfdce-7139-475d-88f9-c4e5af610c63" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -575,11 +578,8 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:14:33 GMT" - ], "Content-Length": [ - "728" + "730" ], "Content-Type": [ "application/json; charset=utf-8" @@ -588,53 +588,56 @@ "-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-4646/providers/Microsoft.EventHub/namespaces/sdk-NS-164\",\r\n \"name\": \"sdk-NS-164\",\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 \"disableLocalAuth\": false,\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-164\",\r\n \"createdAt\": \"2021-09-24T04:13:26.61Z\",\r\n \"updatedAt\": \"2021-09-24T04:14:15.42Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-164.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-5204/providers/Microsoft.EventHub/namespaces/sdk-NS-642\",\r\n \"name\": \"sdk-NS-642\",\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 \"disableLocalAuth\": false,\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-642\",\r\n \"createdAt\": \"2021-11-15T02:23:49.143Z\",\r\n \"updatedAt\": \"2021-11-15T02:24:40.873Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-642.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-4646/providers/Microsoft.EventHub/namespaces/sdk-NS-164?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNDY0Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTE2ND9hcGktdmVyc2lvbj0yMDIxLTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-5204/providers/Microsoft.EventHub/namespaces/sdk-NS-642?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNTIwNC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTY0Mj9hcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3dee8ef9-138c-43b6-a73f-7cb3dac097ed" + "6ac292f8-2513-4aac-a393-7b5c8cad1b3e" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:24:56 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "ede6561a-fc55-48a1-bb3a-2e3bba9a9d9f_M5SN1_M5SN1" + "8270ad17-2843-4c79-8c6d-abe2d11aeb27_M5CH3_M5CH3" ], "Server-SB": [ - "Service-Bus-Resource-Provider/SN1" - ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" + "Service-Bus-Resource-Provider/CH3" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11996" ], "x-ms-correlation-request-id": [ - "82bfa610-4829-4a9d-93e8-6853f246ebc6" + "2eea55a4-b888-491a-ae7f-81f3ce71b514" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T041434Z:82bfa610-4829-4a9d-93e8-6853f246ebc6" + "SOUTHINDIA:20211115T022457Z:2eea55a4-b888-491a-ae7f-81f3ce71b514" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -642,11 +645,8 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:14:34 GMT" - ], "Content-Length": [ - "728" + "730" ], "Content-Type": [ "application/json; charset=utf-8" @@ -655,53 +655,56 @@ "-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-4646/providers/Microsoft.EventHub/namespaces/sdk-NS-164\",\r\n \"name\": \"sdk-NS-164\",\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 \"disableLocalAuth\": false,\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-164\",\r\n \"createdAt\": \"2021-09-24T04:13:26.61Z\",\r\n \"updatedAt\": \"2021-09-24T04:14:15.42Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-164.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-5204/providers/Microsoft.EventHub/namespaces/sdk-NS-642\",\r\n \"name\": \"sdk-NS-642\",\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 \"disableLocalAuth\": false,\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-642\",\r\n \"createdAt\": \"2021-11-15T02:23:49.143Z\",\r\n \"updatedAt\": \"2021-11-15T02:24:40.873Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-642.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-4646/providers/Microsoft.EventHub/namespaces/sdk-NS-164?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNDY0Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTE2ND9hcGktdmVyc2lvbj0yMDIxLTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-5204/providers/Microsoft.EventHub/namespaces/sdk-NS-642?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNTIwNC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTY0Mj9hcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "177a224d-3e3f-4ff4-ac97-72616743e00a" + "07eea7cd-8d5c-47d0-9eb1-1156a0c1f711" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:25:01 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "6b8607dc-1c44-4835-b772-b541d0b33dc3_M5SN1_M5SN1" + "b9374fb3-a0b3-4d52-b912-203ba1c96e0e_M5CH3_M5CH3" ], "Server-SB": [ - "Service-Bus-Resource-Provider/SN1" - ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" + "Service-Bus-Resource-Provider/CH3" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11993" ], "x-ms-correlation-request-id": [ - "5775b439-9623-4905-84d0-340b3f709d99" + "e61c0919-ac35-45c4-b929-b3aa1ce1ae44" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T041438Z:5775b439-9623-4905-84d0-340b3f709d99" + "SOUTHINDIA:20211115T022501Z:e61c0919-ac35-45c4-b929-b3aa1ce1ae44" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -709,11 +712,8 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:14:37 GMT" - ], "Content-Length": [ - "731" + "733" ], "Content-Type": [ "application/json; charset=utf-8" @@ -722,53 +722,56 @@ "-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-4646/providers/Microsoft.EventHub/namespaces/sdk-NS-164\",\r\n \"name\": \"sdk-NS-164\",\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 \"disableLocalAuth\": false,\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-164\",\r\n \"createdAt\": \"2021-09-24T04:13:26.61Z\",\r\n \"updatedAt\": \"2021-09-24T04:14:35.88Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-164.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-5204/providers/Microsoft.EventHub/namespaces/sdk-NS-642\",\r\n \"name\": \"sdk-NS-642\",\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 \"disableLocalAuth\": false,\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-642\",\r\n \"createdAt\": \"2021-11-15T02:23:49.143Z\",\r\n \"updatedAt\": \"2021-11-15T02:24:59.323Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-642.servicebus.windows.net:443/\",\r\n \"status\": \"Activating\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-4646/providers/Microsoft.EventHub/namespaces?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNDY0Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXM/YXBpLXZlcnNpb249MjAyMS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-5204/providers/Microsoft.EventHub/namespaces?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNTIwNC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXM/YXBpLXZlcnNpb249MjAyMS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "392942b9-77ad-4ad3-995d-47c3c5926f39" + "a811ab29-e24b-40d0-81fc-3224908101df" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:24:57 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "42e55b17-50ac-43ed-9b8a-f36ba9efc2fa_M5SN1_M5SN1" + "9ef24aad-96a0-4fb5-aa1c-d4b6817ec4ba_M5CH3_M5CH3" ], "Server-SB": [ - "Service-Bus-Resource-Provider/SN1" - ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" + "Service-Bus-Resource-Provider/CH3" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11995" ], "x-ms-correlation-request-id": [ - "feece16a-0c26-46c5-882d-d2bc863055da" + "494122d8-24a2-4c34-a024-0e76ae5be27b" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T041434Z:feece16a-0c26-46c5-882d-d2bc863055da" + "SOUTHINDIA:20211115T022457Z:494122d8-24a2-4c34-a024-0e76ae5be27b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -776,11 +779,8 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:14:34 GMT" - ], "Content-Length": [ - "740" + "742" ], "Content-Type": [ "application/json; charset=utf-8" @@ -789,56 +789,59 @@ "-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/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-4646/providers/Microsoft.EventHub/namespaces/sdk-NS-164\",\r\n \"name\": \"sdk-NS-164\",\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 \"disableLocalAuth\": false,\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-164\",\r\n \"createdAt\": \"2021-09-24T04:13:26.61Z\",\r\n \"updatedAt\": \"2021-09-24T04:14:15.42Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-164.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-5204/providers/Microsoft.EventHub/namespaces/sdk-NS-642\",\r\n \"name\": \"sdk-NS-642\",\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 \"disableLocalAuth\": false,\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-642\",\r\n \"createdAt\": \"2021-11-15T02:23:49.143Z\",\r\n \"updatedAt\": \"2021-11-15T02:24:40.873Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-642.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.EventHub/namespaces?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcz9hcGktdmVyc2lvbj0yMDIxLTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.EventHub/namespaces?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcz9hcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3c545db4-9ea2-4863-af94-f2be2499aec0" + "b9f10fff-cebd-4ad2-b9b7-7e5f50c4a6d9" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:24:57 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-inline-count": [ "" ], "x-ms-request-id": [ - "5092239d-a2d0-4a86-b1c9-f682e8836309_M5SN1_M5SN1" + "26e88f74-92af-4ee7-bb84-2910f4920994_M5CH3_M5CH3" ], "Server-SB": [ - "Service-Bus-Resource-Provider/SN1" - ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" + "Service-Bus-Resource-Provider/CH3" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11994" ], "x-ms-correlation-request-id": [ - "1c225e38-eb69-4512-8d4d-57fc31c8e9dd" + "57e65371-3c59-41bf-b3a5-1400ea4cfb01" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T041434Z:1c225e38-eb69-4512-8d4d-57fc31c8e9dd" + "SOUTHINDIA:20211115T022457Z:57e65371-3c59-41bf-b3a5-1400ea4cfb01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -846,11 +849,8 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:14:34 GMT" - ], "Content-Length": [ - "77535" + "78546" ], "Content-Type": [ "application/json; charset=utf-8" @@ -859,26 +859,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\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 \"disableLocalAuth\": false,\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\": 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 \"disableLocalAuth\": false,\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/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 \"disableLocalAuth\": false,\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-06-15T14:20:00.153Z\",\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/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 \"disableLocalAuth\": false,\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/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 \"disableLocalAuth\": false,\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/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 \"disableLocalAuth\": false,\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/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 \"disableLocalAuth\": false,\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\": 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 \"disableLocalAuth\": false,\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/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 \"disableLocalAuth\": false,\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\": 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 \"disableLocalAuth\": false,\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/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 \"disableLocalAuth\": false,\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\": \"Premium\",\r\n \"tier\": \"Premium\",\r\n \"capacity\": 1\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 \"disableLocalAuth\": false,\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"clusterArmId\": \"/subscriptions/f7d26b87-63a8-4d84-93b3-e22dcf545c83/resourceGroups/rg-spark-na903/providers/Microsoft.EventHub/clusters/spark-na903-src-eh-cl1\",\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\": \"2021-04-13T22:12:05.26Z\",\r\n \"serviceBusEndpoint\": \"https://FirewallTestEHNS.servicebus.windows.net:443/\",\r\n \"status\": \"Removing\"\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 \"disableLocalAuth\": false,\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\": 2\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 \"disableLocalAuth\": false,\r\n \"zoneRedundant\": true,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\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-15T21:59:51.447Z\",\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\": \"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 \"disableLocalAuth\": false,\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/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 \"disableLocalAuth\": false,\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/shubhatestrg/providers/Microsoft.EventHub/namespaces/uxdemoforsr\",\r\n \"name\": \"uxdemoforsr\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:uxdemoforsr\",\r\n \"createdAt\": \"2020-05-21T19:41:03.867Z\",\r\n \"updatedAt\": \"2020-05-21T19:41:50.97Z\",\r\n \"serviceBusEndpoint\": \"https://uxdemoforsr.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/v-ajnavtest/providers/Microsoft.EventHub/namespaces/testingnew2018\",\r\n \"name\": \"testingnew2018\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:testingnew2018\",\r\n \"createdAt\": \"2020-06-14T21:02:16.57Z\",\r\n \"updatedAt\": \"2020-06-14T21:03:04.417Z\",\r\n \"serviceBusEndpoint\": \"https://testingnew2018.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/v-ajnavtest/providers/Microsoft.EventHub/namespaces/testingnew20181\",\r\n \"name\": \"testingnew20181\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"East US\",\r\n \"tags\": {},\r\n \"identity\": {\r\n \"principalId\": \"941b9c7d-e77d-485b-bed7-bcf43fa5a61d\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": true,\r\n \"isAutoInflateEnabled\": true,\r\n \"maximumThroughputUnits\": 12,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:testingnew20181\",\r\n \"createdAt\": \"2020-06-14T23:00:04.573Z\",\r\n \"updatedAt\": \"2021-09-17T22:55:08.077Z\",\r\n \"serviceBusEndpoint\": \"https://testingnew20181.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/clemensv8\",\r\n \"name\": \"clemensv8\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"North Europe\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:clemensv8\",\r\n \"createdAt\": \"2020-06-15T14:23:25.007Z\",\r\n \"updatedAt\": \"2020-06-15T14:52:08.377Z\",\r\n \"serviceBusEndpoint\": \"https://clemensv8.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\": 7\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/shubhatestrg/providers/Microsoft.EventHub/namespaces/tesgeotus\",\r\n \"name\": \"tesgeotus\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"East US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:tesgeotus\",\r\n \"createdAt\": \"2020-06-17T17:57:59.207Z\",\r\n \"updatedAt\": \"2020-06-17T18:22:37.757Z\",\r\n \"serviceBusEndpoint\": \"https://tesgeotus.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\": 7\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/shubhatestrg/providers/Microsoft.EventHub/namespaces/testgeotusec\",\r\n \"name\": \"testgeotusec\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:testgeotusec\",\r\n \"createdAt\": \"2020-06-17T18:19:55.487Z\",\r\n \"updatedAt\": \"2020-06-17T18:22:38.017Z\",\r\n \"serviceBusEndpoint\": \"https://testgeotusec.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-6828/providers/Microsoft.EventHub/namespaces/sdk-NS-2916\",\r\n \"name\": \"sdk-NS-2916\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": true,\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-2916\",\r\n \"createdAt\": \"2020-06-17T19:28:29.223Z\",\r\n \"updatedAt\": \"2020-06-17T19:29:19.167Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-2916.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/rg-schema-registry/providers/Microsoft.EventHub/namespaces/sr-playground\",\r\n \"name\": \"sr-playground\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"clusterArmId\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/sjrg/providers/Microsoft.EventHub/clusters/SchemaRegistryPreviewCluster\",\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:sr-playground\",\r\n \"createdAt\": \"2020-06-19T05:01:58.623Z\",\r\n \"updatedAt\": \"2020-06-19T05:05:36.437Z\",\r\n \"serviceBusEndpoint\": \"https://sr-playground.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/sjschemaregistry1\",\r\n \"name\": \"sjschemaregistry1\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"clusterArmId\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/sjrg/providers/Microsoft.EventHub/clusters/SchemaRegistryPreviewCluster\",\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:sjschemaregistry1\",\r\n \"createdAt\": \"2020-06-30T01:25:15.193Z\",\r\n \"updatedAt\": \"2020-06-30T01:26:03.24Z\",\r\n \"serviceBusEndpoint\": \"https://sjschemaregistry1.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/sjcueuap\",\r\n \"name\": \"sjcueuap\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"Central US EUAP\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:sjcueuap\",\r\n \"createdAt\": \"2020-07-07T01:19:52.39Z\",\r\n \"updatedAt\": \"2020-07-07T01:20:41.063Z\",\r\n \"serviceBusEndpoint\": \"https://sjcueuap.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/sjcentralindia\",\r\n \"name\": \"sjcentralindia\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"Central India\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:sjcentralindia\",\r\n \"createdAt\": \"2020-07-09T04:47:59.847Z\",\r\n \"updatedAt\": \"2020-07-09T04:48:59.697Z\",\r\n \"serviceBusEndpoint\": \"https://sjcentralindia.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/sjsouthindia\",\r\n \"name\": \"sjsouthindia\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"South India\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:sjsouthindia\",\r\n \"createdAt\": \"2020-07-25T17:37:49.96Z\",\r\n \"updatedAt\": \"2020-07-25T17:38:37.753Z\",\r\n \"serviceBusEndpoint\": \"https://sjsouthindia.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/rg-sr-bugbash/providers/Microsoft.EventHub/namespaces/sr-bugbash\",\r\n \"name\": \"sr-bugbash\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"clusterArmId\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/sjrg/providers/Microsoft.EventHub/clusters/SchemaRegistryPreviewCluster\",\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:sr-bugbash\",\r\n \"createdAt\": \"2020-08-17T00:01:00.033Z\",\r\n \"updatedAt\": \"2020-09-16T07:37:17.6Z\",\r\n \"serviceBusEndpoint\": \"https://sr-bugbash.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/zztestsecondary\",\r\n \"name\": \"zztestsecondary\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:zztestsecondary\",\r\n \"createdAt\": \"2020-08-26T20:46:48.983Z\",\r\n \"updatedAt\": \"2020-08-26T20:53:01.247Z\",\r\n \"serviceBusEndpoint\": \"https://zztestsecondary.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/zztestprimary\",\r\n \"name\": \"zztestprimary\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"East US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:zztestprimary\",\r\n \"createdAt\": \"2020-08-26T20:50:24.767Z\",\r\n \"updatedAt\": \"2020-08-26T20:53:01.247Z\",\r\n \"serviceBusEndpoint\": \"https://zztestprimary.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\": 8\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-WestEurope/providers/Microsoft.EventHub/namespaces/ns-localstore-scenario-10\",\r\n \"name\": \"ns-localstore-scenario-10\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West Europe\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:ns-localstore-scenario-10\",\r\n \"createdAt\": \"2020-09-06T17:24:27.343Z\",\r\n \"updatedAt\": \"2020-10-22T11:14:36.25Z\",\r\n \"serviceBusEndpoint\": \"https://ns-localstore-scenario-10.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/RGName5406/providers/Microsoft.EventHub/namespaces/Eh-NamespaceKafka-1503\",\r\n \"name\": \"Eh-NamespaceKafka-1503\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:eh-namespacekafka-1503\",\r\n \"createdAt\": \"2020-09-10T23:25:28.93Z\",\r\n \"updatedAt\": \"2020-09-10T23:26:19.88Z\",\r\n \"serviceBusEndpoint\": \"https://Eh-NamespaceKafka-1503.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/RGName2039/providers/Microsoft.EventHub/namespaces/Eh-NamespaceKafka-1200\",\r\n \"name\": \"Eh-NamespaceKafka-1200\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:eh-namespacekafka-1200\",\r\n \"createdAt\": \"2020-09-10T23:33:15.513Z\",\r\n \"updatedAt\": \"2020-09-10T23:33:58.96Z\",\r\n \"serviceBusEndpoint\": \"https://Eh-NamespaceKafka-1200.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/RGName3234/providers/Microsoft.EventHub/namespaces/Eh-NamespaceKafka-7506\",\r\n \"name\": \"Eh-NamespaceKafka-7506\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:eh-namespacekafka-7506\",\r\n \"createdAt\": \"2020-09-11T00:11:11.73Z\",\r\n \"updatedAt\": \"2020-09-11T00:11:58.973Z\",\r\n \"serviceBusEndpoint\": \"https://Eh-NamespaceKafka-7506.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/RGName4706/providers/Microsoft.EventHub/namespaces/Eh-NamespaceKafka-3743\",\r\n \"name\": \"Eh-NamespaceKafka-3743\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:eh-namespacekafka-3743\",\r\n \"createdAt\": \"2020-09-11T00:17:52.727Z\",\r\n \"updatedAt\": \"2020-09-11T00:18:36.617Z\",\r\n \"serviceBusEndpoint\": \"https://Eh-NamespaceKafka-3743.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/EventHubsVNETTestingRG/providers/Microsoft.EventHub/namespaces/sj-westcentralus\",\r\n \"name\": \"sj-westcentralus\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"clusterArmId\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/EventHubsVNETTestingRG/providers/Microsoft.EventHub/clusters/EventHubsVNetTesting\",\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:sj-westcentralus\",\r\n \"createdAt\": \"2020-09-23T00:07:29.707Z\",\r\n \"updatedAt\": \"2020-09-23T00:08:20.437Z\",\r\n \"serviceBusEndpoint\": \"https://sj-westcentralus.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-CentralUSEUAP/providers/Microsoft.EventHub/namespaces/hmlam-cdm03-001\",\r\n \"name\": \"hmlam-cdm03-001\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"Central US EUAP\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Updating\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:hmlam-cdm03-001\",\r\n \"createdAt\": \"2020-09-23T01:16:28.043Z\",\r\n \"updatedAt\": \"2021-09-02T17:34:29.203Z\",\r\n \"serviceBusEndpoint\": \"https://hmlam-cdm03-001.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/sjrg/providers/Microsoft.EventHub/namespaces/sjschemaregistry\",\r\n \"name\": \"sjschemaregistry\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:sjschemaregistry\",\r\n \"createdAt\": \"2020-09-29T19:00:19.527Z\",\r\n \"updatedAt\": \"2020-09-29T19:01:09.967Z\",\r\n \"serviceBusEndpoint\": \"https://sjschemaregistry.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/jfgRsrcGrp16/providers/Microsoft.EventHub/namespaces/jfgEvtHbNmspc1\",\r\n \"name\": \"jfgEvtHbNmspc1\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:jfgevthbnmspc1\",\r\n \"createdAt\": \"2020-10-19T02:50:21.05Z\",\r\n \"updatedAt\": \"2020-10-19T02:51:09.65Z\",\r\n \"serviceBusEndpoint\": \"https://jfgEvtHbNmspc1.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/zztestrg/providers/Microsoft.EventHub/namespaces/zztest03\",\r\n \"name\": \"zztest03\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:zztest03\",\r\n \"createdAt\": \"2020-10-20T21:48:16.673Z\",\r\n \"updatedAt\": \"2020-10-20T21:55:37.617Z\",\r\n \"serviceBusEndpoint\": \"https://zztest03.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/zztestrg/providers/Microsoft.EventHub/namespaces/zztest04\",\r\n \"name\": \"zztest04\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:zztest04\",\r\n \"createdAt\": \"2020-10-20T21:48:58.127Z\",\r\n \"updatedAt\": \"2020-10-20T21:57:59.613Z\",\r\n \"serviceBusEndpoint\": \"https://zztest04.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/sakoppes_test/providers/Microsoft.EventHub/namespaces/SamKoppesTestEHNamespace1\",\r\n \"name\": \"SamKoppesTestEHNamespace1\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"East US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:samkoppestestehnamespace1\",\r\n \"createdAt\": \"2020-10-23T17:59:47.117Z\",\r\n \"updatedAt\": \"2020-10-23T18:00:38.657Z\",\r\n \"serviceBusEndpoint\": \"https://SamKoppesTestEHNamespace1.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/hmlam-bn3-556\",\r\n \"name\": \"hmlam-bn3-556\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"clusterArmId\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/sjrg/providers/Microsoft.EventHub/clusters/SchemaRegistryPreviewCluster\",\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:hmlam-bn3-556\",\r\n \"createdAt\": \"2020-10-31T05:46:03.81Z\",\r\n \"updatedAt\": \"2020-10-31T05:46:54.773Z\",\r\n \"serviceBusEndpoint\": \"https://hmlam-bn3-556.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/jfgRsrcGrp18/providers/Microsoft.EventHub/namespaces/ADX-EG-jfgdataexplorer1\",\r\n \"name\": \"ADX-EG-jfgdataexplorer1\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"East US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:adx-eg-jfgdataexplorer1\",\r\n \"createdAt\": \"2020-11-09T16:50:22.813Z\",\r\n \"updatedAt\": \"2020-11-09T16:51:22.947Z\",\r\n \"serviceBusEndpoint\": \"https://ADX-EG-jfgdataexplorer1.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/manojprasad-rampup/providers/Microsoft.EventHub/namespaces/eventhub-nmp\",\r\n \"name\": \"eventhub-nmp\",\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 \"disableLocalAuth\": false,\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:eventhub-nmp\",\r\n \"createdAt\": \"2020-12-28T18:50:46.36Z\",\r\n \"updatedAt\": \"2021-04-21T23:21:24.477Z\",\r\n \"serviceBusEndpoint\": \"https://eventhub-nmp.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/PPGTestPG/providers/Microsoft.EventHub/namespaces/TestEHSys0121\",\r\n \"name\": \"TestEHSys0121\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"EAST US 2 EUAP\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:testehsys0121\",\r\n \"createdAt\": \"2021-01-22T23:59:08.403Z\",\r\n \"updatedAt\": \"2021-01-22T23:59:53.9Z\",\r\n \"serviceBusEndpoint\": \"https://TestEHSys0121.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/PPGTestPG/providers/Microsoft.EventHub/namespaces/TestEH0125\",\r\n \"name\": \"TestEH0125\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"EAST US 2 EUAP\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:testeh0125\",\r\n \"createdAt\": \"2021-01-26T21:05:50.063Z\",\r\n \"updatedAt\": \"2021-01-26T21:06:39.467Z\",\r\n \"serviceBusEndpoint\": \"https://TestEH0125.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-WestUS2/providers/Microsoft.EventHub/namespaces/hmlam-2-mwh01-510\",\r\n \"name\": \"hmlam-2-mwh01-510\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Updating\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:hmlam-2-mwh01-510\",\r\n \"createdAt\": \"2021-01-27T21:26:17.357Z\",\r\n \"updatedAt\": \"2021-09-02T17:15:54.36Z\",\r\n \"serviceBusEndpoint\": \"https://hmlam-2-mwh01-510.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/EventHubsVNETTestingRG/providers/Microsoft.EventHub/namespaces/testencypt0128\",\r\n \"name\": \"testencypt0128\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West Central US\",\r\n \"tags\": {},\r\n \"identity\": {\r\n \"principalId\": \"e9d041e2-62a8-41c8-9b88-71031dbf2695\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"encryption\": {\r\n \"keySource\": \"Microsoft.KeyVault\",\r\n \"keyVaultProperties\": [\r\n {\r\n \"keyName\": \"testkey\",\r\n \"keyVaultUri\": \"https://testrbac0113.vault.azure.net\",\r\n \"keyVersion\": \"\"\r\n }\r\n ],\r\n \"requireInfrastructureEncryption\": false\r\n },\r\n \"clusterArmId\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/EventHubsVNETTestingRG/providers/Microsoft.EventHub/clusters/EventHubsVNetTesting\",\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:testencypt0128\",\r\n \"createdAt\": \"2021-01-29T03:11:24.39Z\",\r\n \"updatedAt\": \"2021-09-16T03:08:07.8Z\",\r\n \"serviceBusEndpoint\": \"https://testencypt0128.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/xcrg/providers/Microsoft.EventHub/namespaces/byok-offset-test\",\r\n \"name\": \"byok-offset-test\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"Central US EUAP\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:byok-offset-test\",\r\n \"createdAt\": \"2021-02-09T17:53:55.587Z\",\r\n \"updatedAt\": \"2021-02-09T18:00:15.627Z\",\r\n \"serviceBusEndpoint\": \"https://byok-offset-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/xcrg/providers/Microsoft.EventHub/namespaces/byok-ot-test\",\r\n \"name\": \"byok-ot-test\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"EAST US 2 EUAP\",\r\n \"tags\": {},\r\n \"identity\": {\r\n \"principalId\": \"a2a77dd1-1a20-4640-a408-2a254a9e0b69\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"encryption\": {\r\n \"keySource\": \"Microsoft.KeyVault\",\r\n \"keyVaultProperties\": [\r\n {\r\n \"keyName\": \"offset-journal-byok\",\r\n \"keyVaultUri\": \"https://xc-test.vault.azure.net\",\r\n \"keyVersion\": \"\"\r\n }\r\n ],\r\n \"requireInfrastructureEncryption\": false\r\n },\r\n \"clusterArmId\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/prod-cbn04-503-533-rg/providers/Microsoft.EventHub/clusters/CBN04-503\",\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:byok-ot-test\",\r\n \"createdAt\": \"2021-02-09T19:17:55.363Z\",\r\n \"updatedAt\": \"2021-08-12T21:36:08.783Z\",\r\n \"serviceBusEndpoint\": \"https://byok-ot-test.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/jfgWalmart1/providers/Microsoft.EventHub/namespaces/jfgEH-Wmt-1\",\r\n \"name\": \"jfgEH-Wmt-1\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"East US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:jfgeh-wmt-1\",\r\n \"createdAt\": \"2021-02-14T23:49:41.33Z\",\r\n \"updatedAt\": \"2021-02-14T23:50:33.71Z\",\r\n \"serviceBusEndpoint\": \"https://jfgEH-Wmt-1.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/jfgWalmart1/providers/Microsoft.EventHub/namespaces/jfgEH-Wmt-2\",\r\n \"name\": \"jfgEH-Wmt-2\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"East US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:jfgeh-wmt-2\",\r\n \"createdAt\": \"2021-02-15T02:12:43.573Z\",\r\n \"updatedAt\": \"2021-02-15T02:13:30.477Z\",\r\n \"serviceBusEndpoint\": \"https://jfgEH-Wmt-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/sjrg/providers/Microsoft.EventHub/namespaces/sjwestus2\",\r\n \"name\": \"sjwestus2\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:sjwestus2\",\r\n \"createdAt\": \"2021-02-18T06:26:28.413Z\",\r\n \"updatedAt\": \"2021-02-18T06:27:16.157Z\",\r\n \"serviceBusEndpoint\": \"https://sjwestus2.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/ehspringboot\",\r\n \"name\": \"ehspringboot\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:ehspringboot\",\r\n \"createdAt\": \"2021-02-26T01:37:31.123Z\",\r\n \"updatedAt\": \"2021-02-26T01:38:18.35Z\",\r\n \"serviceBusEndpoint\": \"https://ehspringboot.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-JapanEast/providers/Microsoft.EventHub/namespaces/hmlam-kw1-001\",\r\n \"name\": \"hmlam-kw1-001\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"Japan East\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:hmlam-kw1-001\",\r\n \"createdAt\": \"2021-03-05T03:15:50.103Z\",\r\n \"updatedAt\": \"2021-09-02T17:17:21.117Z\",\r\n \"serviceBusEndpoint\": \"https://hmlam-kw1-001.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/useridentities/providers/Microsoft.EventHub/namespaces/icmtest-1\",\r\n \"name\": \"icmtest-1\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"East US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:icmtest-1\",\r\n \"createdAt\": \"2021-03-05T19:07:00.873Z\",\r\n \"updatedAt\": \"2021-03-05T19:07:51.14Z\",\r\n \"serviceBusEndpoint\": \"https://icmtest-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/useridentities/providers/Microsoft.EventHub/namespaces/icm-testing\",\r\n \"name\": \"icm-testing\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"East US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:icm-testing\",\r\n \"createdAt\": \"2021-03-05T19:36:02.113Z\",\r\n \"updatedAt\": \"2021-03-05T19:36:54.433Z\",\r\n \"serviceBusEndpoint\": \"https://icm-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/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-EASTUS2EUAP/providers/Microsoft.EventHub/namespaces/sarama-gw-fix-verify\",\r\n \"name\": \"sarama-gw-fix-verify\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"EAST US 2 EUAP\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:sarama-gw-fix-verify\",\r\n \"createdAt\": \"2021-03-09T02:35:20.1Z\",\r\n \"updatedAt\": \"2021-03-09T02:36:08.687Z\",\r\n \"serviceBusEndpoint\": \"https://sarama-gw-fix-verify.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-cbn04-503-533-rg/providers/Microsoft.EventHub/namespaces/clemen-test-eh-sa\",\r\n \"name\": \"clemen-test-eh-sa\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"EAST US 2 EUAP\",\r\n \"tags\": {},\r\n \"identity\": {\r\n \"principalId\": \"b4b473dd-8d23-45ab-9f29-deee83baf0b1\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:clemen-test-eh-sa\",\r\n \"createdAt\": \"2021-03-31T20:02:42.077Z\",\r\n \"updatedAt\": \"2021-08-16T19:57:09.183Z\",\r\n \"serviceBusEndpoint\": \"https://clemen-test-eh-sa.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/DisablePublicAccesTesting/providers/Microsoft.EventHub/namespaces/DisablePublicAccessTesting-EHStandard\",\r\n \"name\": \"DisablePublicAccessTesting-EHStandard\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"EAST US 2 EUAP\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:disablepublicaccesstesting-ehstandard\",\r\n \"createdAt\": \"2021-04-06T15:53:47.477Z\",\r\n \"updatedAt\": \"2021-04-06T15:54:32.47Z\",\r\n \"serviceBusEndpoint\": \"https://DisablePublicAccessTesting-EHStandard.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/arthur/providers/Microsoft.EventHub/namespaces/arerlend-sr-test\",\r\n \"name\": \"arerlend-sr-test\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:arerlend-sr-test\",\r\n \"createdAt\": \"2021-04-16T05:43:31.857Z\",\r\n \"updatedAt\": \"2021-04-16T05:44:16.807Z\",\r\n \"serviceBusEndpoint\": \"https://arerlend-sr-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\": 2\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/EHResourceGr1/providers/Microsoft.EventHub/namespaces/kasuneventhubs\",\r\n \"name\": \"kasuneventhubs\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"East US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:kasuneventhubs\",\r\n \"createdAt\": \"2021-04-16T22:17:03.377Z\",\r\n \"updatedAt\": \"2021-08-02T20:44:07.137Z\",\r\n \"serviceBusEndpoint\": \"https://kasuneventhubs.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-cbn04-503-533-rg/providers/Microsoft.EventHub/namespaces/assures-cgissue-test\",\r\n \"name\": \"assures-cgissue-test\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"EAST US 2 EUAP\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"clusterArmId\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/prod-cbn04-503-533-rg/providers/Microsoft.EventHub/clusters/CBN04-503\",\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:assures-cgissue-test\",\r\n \"createdAt\": \"2021-05-01T01:32:54.81Z\",\r\n \"updatedAt\": \"2021-05-01T01:33:47.6Z\",\r\n \"serviceBusEndpoint\": \"https://assures-cgissue-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\": 2\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/kindrasiri_eh_benchmark/providers/Microsoft.EventHub/namespaces/ehbenchmark\",\r\n \"name\": \"ehbenchmark\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"East US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:ehbenchmark\",\r\n \"createdAt\": \"2021-05-03T16:12:09.03Z\",\r\n \"updatedAt\": \"2021-05-03T16:12:56.44Z\",\r\n \"serviceBusEndpoint\": \"https://ehbenchmark.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-cbn04-503-533-rg/providers/Microsoft.EventHub/namespaces/assures-cgissue-test-2\",\r\n \"name\": \"assures-cgissue-test-2\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"EAST US 2 EUAP\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"clusterArmId\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/prod-cbn04-503-533-rg/providers/Microsoft.EventHub/clusters/CBN04-503\",\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:assures-cgissue-test-2\",\r\n \"createdAt\": \"2021-05-06T19:38:04.303Z\",\r\n \"updatedAt\": \"2021-05-06T19:38:59.563Z\",\r\n \"serviceBusEndpoint\": \"https://assures-cgissue-test-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/v-ajnavtest/providers/Microsoft.EventHub/namespaces/testcluster-test2-eastus-eh-d-ns\",\r\n \"name\": \"testcluster-test2-eastus-eh-d-ns\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"East US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"clusterArmId\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/v-ajnavtest/providers/Microsoft.EventHub/clusters/testingclusterarmtemplate\",\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:testcluster-test2-eastus-eh-d-ns\",\r\n \"createdAt\": \"2021-05-06T23:23:01.673Z\",\r\n \"updatedAt\": \"2021-05-06T23:24:07.72Z\",\r\n \"serviceBusEndpoint\": \"https://testcluster-test2-eastus-eh-d-ns.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\": 10\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ardsouza-test-5-19/providers/Microsoft.EventHub/namespaces/ardsouza-5-19-2020-deleteme-basic\",\r\n \"name\": \"ardsouza-5-19-2020-deleteme-basic\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"Canada Central\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": true,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:ardsouza-5-19-2020-deleteme-basic\",\r\n \"createdAt\": \"2021-05-20T01:26:36.323Z\",\r\n \"updatedAt\": \"2021-05-20T01:28:35.287Z\",\r\n \"serviceBusEndpoint\": \"https://ardsouza-5-19-2020-deleteme-basic.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/EventHubsVNETTestingRG/providers/Microsoft.EventHub/namespaces/TestMSiNew0520\",\r\n \"name\": \"TestMSiNew0520\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West Central US\",\r\n \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/ppgtest/providers/microsoft.managedidentity/userassignedidentities/testuai0412new\": {\r\n \"clientId\": \"ec83a3e2-bd7b-4e77-bde9-76ec42eb1d6a\",\r\n \"principalId\": \"2496443e-0c52-4245-84fb-6ee677269b16\"\r\n },\r\n \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/ppgtest/providers/microsoft.managedidentity/userassignedidentities/testuai0506\": {\r\n \"clientId\": \"40578752-05e9-4b8b-bdc4-f07e960571e0\",\r\n \"principalId\": \"406cc555-ce08-485a-a5a6-ef1ccc5e7bec\"\r\n }\r\n }\r\n },\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"encryption\": {\r\n \"keySource\": \"Microsoft.KeyVault\",\r\n \"keyVaultProperties\": [\r\n {\r\n \"keyName\": \"TestKey0506\",\r\n \"keyVaultUri\": \"https://testkv0506.vault.azure.net\",\r\n \"keyVersion\": \"\",\r\n \"identity\": {\r\n \"userAssignedIdentity\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/ppgtest/providers/microsoft.managedidentity/userassignedidentities/testuai0506\"\r\n }\r\n }\r\n ],\r\n \"requireInfrastructureEncryption\": false\r\n },\r\n \"clusterArmId\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/EventHubsVNETTestingRG/providers/Microsoft.EventHub/clusters/EventHubsVNetTesting\",\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:testmsinew0520\",\r\n \"createdAt\": \"2021-05-20T22:42:14.17Z\",\r\n \"updatedAt\": \"2021-08-06T19:47:08.883Z\",\r\n \"serviceBusEndpoint\": \"https://TestMSiNew0520.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\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/sjrg/providers/Microsoft.EventHub/namespaces/sjpremiumwe\",\r\n \"name\": \"sjpremiumwe\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West Europe\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": true,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:sjpremiumwe\",\r\n \"createdAt\": \"2021-05-21T18:16:42.207Z\",\r\n \"updatedAt\": \"2021-05-25T05:53:39.053Z\",\r\n \"serviceBusEndpoint\": \"https://sjpremiumwe.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\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/manojprasad-rampup/providers/Microsoft.EventHub/namespaces/manojprasad-eventhubs-premium\",\r\n \"name\": \"manojprasad-eventhubs-premium\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"Australia East\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": true,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:manojprasad-eventhubs-premium\",\r\n \"createdAt\": \"2021-05-24T19:31:02.89Z\",\r\n \"updatedAt\": \"2021-05-24T19:32:55.72Z\",\r\n \"serviceBusEndpoint\": \"https://manojprasad-eventhubs-premium.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\": 2\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ardsouza-test-5-19/providers/Microsoft.EventHub/namespaces/ardsouza-premium-aztest-5-24-deleteme\",\r\n \"name\": \"ardsouza-premium-aztest-5-24-deleteme\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West Europe\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": true,\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-premium-aztest-5-24-deleteme\",\r\n \"createdAt\": \"2021-05-24T23:11:51.05Z\",\r\n \"updatedAt\": \"2021-05-24T23:15:24.323Z\",\r\n \"serviceBusEndpoint\": \"https://ardsouza-premium-aztest-5-24-deleteme.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\": 2\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ardsouza-test-5-19/providers/Microsoft.EventHub/namespaces/ardsouza-westus-2-ehprem\",\r\n \"name\": \"ardsouza-westus-2-ehprem\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": true,\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-westus-2-ehprem\",\r\n \"createdAt\": \"2021-05-25T14:10:07.963Z\",\r\n \"updatedAt\": \"2021-05-25T14:14:10.663Z\",\r\n \"serviceBusEndpoint\": \"https://ardsouza-westus-2-ehprem.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\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/kindrasiri_eh_premium_benchmarking/providers/Microsoft.EventHub/namespaces/ehpremium\",\r\n \"name\": \"ehpremium\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"East US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": true,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:ehpremium\",\r\n \"createdAt\": \"2021-05-25T22:33:28.69Z\",\r\n \"updatedAt\": \"2021-06-22T18:10:52.55Z\",\r\n \"serviceBusEndpoint\": \"https://ehpremium.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/bailiu-servicebus-test-resources/providers/Microsoft.EventHub/namespaces/bailiu-eventhubs-test-centralus\",\r\n \"name\": \"bailiu-eventhubs-test-centralus\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"Central US EUAP\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:bailiu-eventhubs-test-centralus\",\r\n \"createdAt\": \"2021-06-07T17:52:17.123Z\",\r\n \"updatedAt\": \"2021-06-07T17:53:05.263Z\",\r\n \"serviceBusEndpoint\": \"https://bailiu-eventhubs-test-centralus.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/bailiu-servicebus-test-resources/providers/Microsoft.EventHub/namespaces/bailiu-eventhubs-test-westus2\",\r\n \"name\": \"bailiu-eventhubs-test-westus2\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": true,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:bailiu-eventhubs-test-westus2\",\r\n \"createdAt\": \"2021-06-07T19:23:45.427Z\",\r\n \"updatedAt\": \"2021-06-07T19:24:33.517Z\",\r\n \"serviceBusEndpoint\": \"https://bailiu-eventhubs-test-westus2.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/assures-geodr-prod/providers/Microsoft.EventHub/namespaces/geodr-primary\",\r\n \"name\": \"geodr-primary\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": true,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:geodr-primary\",\r\n \"createdAt\": \"2021-06-10T17:40:59.263Z\",\r\n \"updatedAt\": \"2021-06-18T03:14:01.397Z\",\r\n \"serviceBusEndpoint\": \"https://geodr-primary.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/assures-geodr-prod/providers/Microsoft.EventHub/namespaces/geodr-secondary-1\",\r\n \"name\": \"geodr-secondary-1\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": true,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:geodr-secondary-1\",\r\n \"createdAt\": \"2021-06-10T17:45:12.537Z\",\r\n \"updatedAt\": \"2021-06-18T03:14:01.017Z\",\r\n \"serviceBusEndpoint\": \"https://geodr-secondary-1.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\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/shsama-rg/providers/Microsoft.EventHub/namespaces/ehwhitelisttest\",\r\n \"name\": \"ehwhitelisttest\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"East US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": true,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:ehwhitelisttest\",\r\n \"createdAt\": \"2021-06-14T22:09:08.543Z\",\r\n \"updatedAt\": \"2021-06-14T22:10:26.767Z\",\r\n \"serviceBusEndpoint\": \"https://ehwhitelisttest.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/EventHubsVNETTestingRG/providers/Microsoft.EventHub/namespaces/ali-bypass-test\",\r\n \"name\": \"ali-bypass-test\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West Central US\",\r\n \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/dbedb4e0-40e6-4145-81f3-f1314c150774/resourceGroups/alitest/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ali-id-1\": {\r\n \"clientId\": \"16bc3fc1-8bc8-46a4-bd4d-583104db7d9a\",\r\n \"principalId\": \"6b03c867-9188-427a-a440-2d0e624c95cb\"\r\n }\r\n }\r\n },\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"encryption\": {\r\n \"keySource\": \"Microsoft.KeyVault\",\r\n \"keyVaultProperties\": [\r\n {\r\n \"keyName\": \"al-key\",\r\n \"keyVaultUri\": \"https://ali-kv.vault.azure.net\",\r\n \"keyVersion\": \"\",\r\n \"identity\": {\r\n \"userAssignedIdentity\": \"/subscriptions/dbedb4e0-40e6-4145-81f3-f1314c150774/resourceGroups/alitest/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ali-id-1\"\r\n }\r\n }\r\n ],\r\n \"requireInfrastructureEncryption\": false\r\n },\r\n \"clusterArmId\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/EventHubsVNETTestingRG/providers/Microsoft.EventHub/clusters/EventHubsVNetTesting\",\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:ali-bypass-test\",\r\n \"createdAt\": \"2021-06-14T22:19:01.01Z\",\r\n \"updatedAt\": \"2021-09-18T21:56:13.387Z\",\r\n \"serviceBusEndpoint\": \"https://ali-bypass-test.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\": 4\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/sjrg/providers/Microsoft.EventHub/namespaces/sjmwhpremium\",\r\n \"name\": \"sjmwhpremium\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": true,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:sjmwhpremium\",\r\n \"createdAt\": \"2021-06-15T04:32:43.893Z\",\r\n \"updatedAt\": \"2021-09-15T16:49:44.363Z\",\r\n \"serviceBusEndpoint\": \"https://sjmwhpremium.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/kindrasiri-synapse-test-rg/providers/Microsoft.EventHub/namespaces/azuremsgtest\",\r\n \"name\": \"azuremsgtest\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:azuremsgtest\",\r\n \"createdAt\": \"2021-07-01T01:43:16.197Z\",\r\n \"updatedAt\": \"2021-07-01T01:44:09.693Z\",\r\n \"serviceBusEndpoint\": \"https://azuremsgtest.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/dorothytest/providers/Microsoft.EventHub/namespaces/vnetehtest\",\r\n \"name\": \"vnetehtest\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:vnetehtest\",\r\n \"createdAt\": \"2021-07-01T22:51:08.083Z\",\r\n \"updatedAt\": \"2021-07-01T22:52:00.777Z\",\r\n \"serviceBusEndpoint\": \"https://vnetehtest.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\": 2\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/sjrgcbn/providers/Microsoft.EventHub/namespaces/sjpremiumcbnns\",\r\n \"name\": \"sjpremiumcbnns\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"EAST US 2 EUAP\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:sjpremiumcbnns\",\r\n \"createdAt\": \"2021-07-02T20:52:00.477Z\",\r\n \"updatedAt\": \"2021-07-02T22:13:32.103Z\",\r\n \"serviceBusEndpoint\": \"https://sjpremiumcbnns.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/sjrgcbn/providers/Microsoft.EventHub/namespaces/sjcbnstandard\",\r\n \"name\": \"sjcbnstandard\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"EAST US 2 EUAP\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": true,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:sjcbnstandard\",\r\n \"createdAt\": \"2021-07-03T06:59:07.623Z\",\r\n \"updatedAt\": \"2021-07-03T06:59:56.193Z\",\r\n \"serviceBusEndpoint\": \"https://sjcbnstandard.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/assures-kafka/providers/Microsoft.EventHub/namespaces/kafka-perf-decrease\",\r\n \"name\": \"kafka-perf-decrease\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:kafka-perf-decrease\",\r\n \"createdAt\": \"2021-07-06T18:21:46.48Z\",\r\n \"updatedAt\": \"2021-07-06T18:22:48.857Z\",\r\n \"serviceBusEndpoint\": \"https://kafka-perf-decrease.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-CentralUSEUAP/providers/Microsoft.EventHub/namespaces/hmlam-cdm03-502\",\r\n \"name\": \"hmlam-cdm03-502\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"Central US EUAP\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:hmlam-cdm03-502\",\r\n \"createdAt\": \"2021-07-07T01:31:09.74Z\",\r\n \"updatedAt\": \"2021-07-14T00:06:10.6Z\",\r\n \"serviceBusEndpoint\": \"https://hmlam-cdm03-502.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/PPGTest/providers/Microsoft.EventHub/namespaces/TestEHSys0705\",\r\n \"name\": \"TestEHSys0705\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"Central US EUAP\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:testehsys0705\",\r\n \"createdAt\": \"2021-07-07T20:50:02.06Z\",\r\n \"updatedAt\": \"2021-07-07T20:50:49.037Z\",\r\n \"serviceBusEndpoint\": \"https://TestEHSys0705.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/disablelocalauth/providers/Microsoft.EventHub/namespaces/ardsouza-disablelocalauth-canary-test1\",\r\n \"name\": \"ardsouza-disablelocalauth-canary-test1\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"EAST US 2 EUAP\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": true,\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-disablelocalauth-canary-test1\",\r\n \"createdAt\": \"2021-07-13T22:20:11.607Z\",\r\n \"updatedAt\": \"2021-07-13T22:21:11.107Z\",\r\n \"serviceBusEndpoint\": \"https://ardsouza-disablelocalauth-canary-test1.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/disablelocalauth/providers/Microsoft.EventHub/namespaces/ardsouza-disablelocalauth-canary-test2\",\r\n \"name\": \"ardsouza-disablelocalauth-canary-test2\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"EAST US 2 EUAP\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": true,\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-disablelocalauth-canary-test2\",\r\n \"createdAt\": \"2021-07-13T22:57:04.87Z\",\r\n \"updatedAt\": \"2021-07-13T23:54:08.33Z\",\r\n \"serviceBusEndpoint\": \"https://ardsouza-disablelocalauth-canary-test2.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/PPGTest/providers/Microsoft.EventHub/namespaces/TestSysTopicCan0716\",\r\n \"name\": \"TestSysTopicCan0716\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"EAST US 2 EUAP\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": true,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:testsystopiccan0716\",\r\n \"createdAt\": \"2021-07-16T21:48:26.007Z\",\r\n \"updatedAt\": \"2021-07-16T21:49:17.663Z\",\r\n \"serviceBusEndpoint\": \"https://TestSysTopicCan0716.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-westeurope-test/providers/Microsoft.EventHub/namespaces/ardsouza-07-2021-capture-adls2test\",\r\n \"name\": \"ardsouza-07-2021-capture-adls2test\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"Southeast Asia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": true,\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-07-2021-capture-adls2test\",\r\n \"createdAt\": \"2021-07-27T17:35:55.01Z\",\r\n \"updatedAt\": \"2021-07-27T17:36:46.08Z\",\r\n \"serviceBusEndpoint\": \"https://ardsouza-07-2021-capture-adls2test.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\": 2\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/sjrg/providers/Microsoft.EventHub/namespaces/sjpremiumyt\",\r\n \"name\": \"sjpremiumyt\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"Canada Central\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": true,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:sjpremiumyt\",\r\n \"createdAt\": \"2021-07-30T16:58:37.797Z\",\r\n \"updatedAt\": \"2021-09-08T18:47:53.797Z\",\r\n \"serviceBusEndpoint\": \"https://sjpremiumyt.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\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/sjrg/providers/Microsoft.EventHub/namespaces/sjpremiumsy1\",\r\n \"name\": \"sjpremiumsy1\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"Australia East\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": true,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:sjpremiumsy1\",\r\n \"createdAt\": \"2021-07-30T17:57:47.803Z\",\r\n \"updatedAt\": \"2021-07-30T17:59:25.597Z\",\r\n \"serviceBusEndpoint\": \"https://sjpremiumsy1.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-CentralUSEUAP/providers/Microsoft.EventHub/namespaces/drdrillPrimary08022021\",\r\n \"name\": \"drdrillPrimary08022021\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"Central US EUAP\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:drdrillprimary08022021\",\r\n \"createdAt\": \"2021-07-31T01:33:40.18Z\",\r\n \"updatedAt\": \"2021-08-30T23:20:31.35Z\",\r\n \"serviceBusEndpoint\": \"https://drdrillPrimary08022021.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/zztestrg/providers/Microsoft.EventHub/namespaces/zzns01-pltest\",\r\n \"name\": \"zzns01-pltest\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": true,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:zzns01-pltest\",\r\n \"createdAt\": \"2021-08-23T23:02:28.61Z\",\r\n \"updatedAt\": \"2021-08-23T23:03:15.843Z\",\r\n \"serviceBusEndpoint\": \"https://zzns01-pltest.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/schiller-aa/providers/Microsoft.EventHub/namespaces/aa-test-namespace\",\r\n \"name\": \"aa-test-namespace\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:aa-test-namespace\",\r\n \"createdAt\": \"2021-08-25T14:08:23.25Z\",\r\n \"updatedAt\": \"2021-08-25T14:09:11.517Z\",\r\n \"serviceBusEndpoint\": \"https://aa-test-namespace.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/EventHubsVNETTestingRG/providers/Microsoft.EventHub/namespaces/schiller-aa-namespace\",\r\n \"name\": \"schiller-aa-namespace\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"clusterArmId\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/EventHubsVNETTestingRG/providers/Microsoft.EventHub/clusters/EventHubsVNetTesting\",\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:schiller-aa-namespace\",\r\n \"createdAt\": \"2021-08-25T19:00:29.82Z\",\r\n \"updatedAt\": \"2021-08-25T19:01:16.553Z\",\r\n \"serviceBusEndpoint\": \"https://schiller-aa-namespace.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/EventHubsVNETTestingRG/providers/Microsoft.EventHub/namespaces/testMSI01060825\",\r\n \"name\": \"testMSI01060825\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West Central US\",\r\n \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/1196a38f-8e8a-4916-9056-787c19a53125/resourcegroups/ppgtest/providers/microsoft.managedidentity/userassignedidentities/testuai0618\": {\r\n \"clientId\": \"12e5b965-1d50-4d1b-b1df-a805dce0f0ec\",\r\n \"principalId\": \"aeb481c1-762b-474e-b6c6-86c67433a9ea\"\r\n }\r\n }\r\n },\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"encryption\": {\r\n \"keySource\": \"Microsoft.KeyVault\",\r\n \"keyVaultProperties\": [\r\n {\r\n \"keyName\": \"testkey0618\",\r\n \"keyVaultUri\": \"https://testkv0618.vault.azure.net\",\r\n \"keyVersion\": \"\",\r\n \"identity\": {\r\n \"userAssignedIdentity\": \"/subscriptions/1196a38f-8e8a-4916-9056-787c19a53125/resourcegroups/ppgtest/providers/microsoft.managedidentity/userassignedidentities/testuai0618\"\r\n }\r\n }\r\n ],\r\n \"requireInfrastructureEncryption\": false\r\n },\r\n \"clusterArmId\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/EventHubsVNETTestingRG/providers/Microsoft.EventHub/clusters/EventHubsVNetTesting\",\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:testmsi01060825\",\r\n \"createdAt\": \"2021-08-25T21:21:21.967Z\",\r\n \"updatedAt\": \"2021-08-25T21:26:16.927Z\",\r\n \"serviceBusEndpoint\": \"https://testMSI01060825.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.EventHub/namespaces?api-version=2021-06-01-preview&$skipToken=2021-08-25T21:21:21.967Z\"\r\n}", + "ResponseBody": "{\r\n \"value\": [\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 \"disableLocalAuth\": false,\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\": 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 \"disableLocalAuth\": false,\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/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 \"disableLocalAuth\": false,\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-06-15T14:20:00.153Z\",\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/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 \"disableLocalAuth\": false,\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/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 \"disableLocalAuth\": false,\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/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 \"disableLocalAuth\": false,\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/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 \"disableLocalAuth\": false,\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\": 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 \"disableLocalAuth\": false,\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/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 \"disableLocalAuth\": false,\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\": 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 \"disableLocalAuth\": false,\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/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 \"disableLocalAuth\": false,\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\": \"Premium\",\r\n \"tier\": \"Premium\",\r\n \"capacity\": 1\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 \"disableLocalAuth\": false,\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"clusterArmId\": \"/subscriptions/f7d26b87-63a8-4d84-93b3-e22dcf545c83/resourceGroups/rg-spark-na903/providers/Microsoft.EventHub/clusters/spark-na903-src-eh-cl1\",\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\": \"2021-04-13T22:12:05.26Z\",\r\n \"serviceBusEndpoint\": \"https://FirewallTestEHNS.servicebus.windows.net:443/\",\r\n \"status\": \"Removing\"\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 \"disableLocalAuth\": false,\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\": 2\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 \"disableLocalAuth\": false,\r\n \"zoneRedundant\": true,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\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-15T21:59:51.447Z\",\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\": \"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 \"disableLocalAuth\": false,\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/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 \"disableLocalAuth\": false,\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/shubhatestrg/providers/Microsoft.EventHub/namespaces/uxdemoforsr\",\r\n \"name\": \"uxdemoforsr\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:uxdemoforsr\",\r\n \"createdAt\": \"2020-05-21T19:41:03.867Z\",\r\n \"updatedAt\": \"2020-05-21T19:41:50.97Z\",\r\n \"serviceBusEndpoint\": \"https://uxdemoforsr.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/v-ajnavtest/providers/Microsoft.EventHub/namespaces/testingnew2018\",\r\n \"name\": \"testingnew2018\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:testingnew2018\",\r\n \"createdAt\": \"2020-06-14T21:02:16.57Z\",\r\n \"updatedAt\": \"2020-06-14T21:03:04.417Z\",\r\n \"serviceBusEndpoint\": \"https://testingnew2018.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/v-ajnavtest/providers/Microsoft.EventHub/namespaces/testingnew20181\",\r\n \"name\": \"testingnew20181\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"East US\",\r\n \"tags\": {},\r\n \"identity\": {\r\n \"principalId\": \"941b9c7d-e77d-485b-bed7-bcf43fa5a61d\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": true,\r\n \"isAutoInflateEnabled\": true,\r\n \"maximumThroughputUnits\": 12,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:testingnew20181\",\r\n \"createdAt\": \"2020-06-14T23:00:04.573Z\",\r\n \"updatedAt\": \"2021-11-02T22:55:11.343Z\",\r\n \"serviceBusEndpoint\": \"https://testingnew20181.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/clemensv8\",\r\n \"name\": \"clemensv8\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"North Europe\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:clemensv8\",\r\n \"createdAt\": \"2020-06-15T14:23:25.007Z\",\r\n \"updatedAt\": \"2020-06-15T14:52:08.377Z\",\r\n \"serviceBusEndpoint\": \"https://clemensv8.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\": 7\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/shubhatestrg/providers/Microsoft.EventHub/namespaces/tesgeotus\",\r\n \"name\": \"tesgeotus\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"East US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:tesgeotus\",\r\n \"createdAt\": \"2020-06-17T17:57:59.207Z\",\r\n \"updatedAt\": \"2020-06-17T18:22:37.757Z\",\r\n \"serviceBusEndpoint\": \"https://tesgeotus.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\": 7\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/shubhatestrg/providers/Microsoft.EventHub/namespaces/testgeotusec\",\r\n \"name\": \"testgeotusec\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:testgeotusec\",\r\n \"createdAt\": \"2020-06-17T18:19:55.487Z\",\r\n \"updatedAt\": \"2020-06-17T18:22:38.017Z\",\r\n \"serviceBusEndpoint\": \"https://testgeotusec.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-6828/providers/Microsoft.EventHub/namespaces/sdk-NS-2916\",\r\n \"name\": \"sdk-NS-2916\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": true,\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-2916\",\r\n \"createdAt\": \"2020-06-17T19:28:29.223Z\",\r\n \"updatedAt\": \"2020-06-17T19:29:19.167Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-2916.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/rg-schema-registry/providers/Microsoft.EventHub/namespaces/sr-playground\",\r\n \"name\": \"sr-playground\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"clusterArmId\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/sjrg/providers/Microsoft.EventHub/clusters/SchemaRegistryPreviewCluster\",\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:sr-playground\",\r\n \"createdAt\": \"2020-06-19T05:01:58.623Z\",\r\n \"updatedAt\": \"2020-06-19T05:05:36.437Z\",\r\n \"serviceBusEndpoint\": \"https://sr-playground.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/sjschemaregistry1\",\r\n \"name\": \"sjschemaregistry1\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"clusterArmId\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/sjrg/providers/Microsoft.EventHub/clusters/SchemaRegistryPreviewCluster\",\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:sjschemaregistry1\",\r\n \"createdAt\": \"2020-06-30T01:25:15.193Z\",\r\n \"updatedAt\": \"2020-06-30T01:26:03.24Z\",\r\n \"serviceBusEndpoint\": \"https://sjschemaregistry1.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/sjcueuap\",\r\n \"name\": \"sjcueuap\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"Central US EUAP\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:sjcueuap\",\r\n \"createdAt\": \"2020-07-07T01:19:52.39Z\",\r\n \"updatedAt\": \"2020-07-07T01:20:41.063Z\",\r\n \"serviceBusEndpoint\": \"https://sjcueuap.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/sjcentralindia\",\r\n \"name\": \"sjcentralindia\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"Central India\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:sjcentralindia\",\r\n \"createdAt\": \"2020-07-09T04:47:59.847Z\",\r\n \"updatedAt\": \"2020-07-09T04:48:59.697Z\",\r\n \"serviceBusEndpoint\": \"https://sjcentralindia.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/sjsouthindia\",\r\n \"name\": \"sjsouthindia\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"South India\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:sjsouthindia\",\r\n \"createdAt\": \"2020-07-25T17:37:49.96Z\",\r\n \"updatedAt\": \"2020-07-25T17:38:37.753Z\",\r\n \"serviceBusEndpoint\": \"https://sjsouthindia.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/rg-sr-bugbash/providers/Microsoft.EventHub/namespaces/sr-bugbash\",\r\n \"name\": \"sr-bugbash\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"clusterArmId\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/sjrg/providers/Microsoft.EventHub/clusters/SchemaRegistryPreviewCluster\",\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:sr-bugbash\",\r\n \"createdAt\": \"2020-08-17T00:01:00.033Z\",\r\n \"updatedAt\": \"2020-09-16T07:37:17.6Z\",\r\n \"serviceBusEndpoint\": \"https://sr-bugbash.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/zztestsecondary\",\r\n \"name\": \"zztestsecondary\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:zztestsecondary\",\r\n \"createdAt\": \"2020-08-26T20:46:48.983Z\",\r\n \"updatedAt\": \"2020-08-26T20:53:01.247Z\",\r\n \"serviceBusEndpoint\": \"https://zztestsecondary.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/zztestprimary\",\r\n \"name\": \"zztestprimary\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"East US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:zztestprimary\",\r\n \"createdAt\": \"2020-08-26T20:50:24.767Z\",\r\n \"updatedAt\": \"2020-08-26T20:53:01.247Z\",\r\n \"serviceBusEndpoint\": \"https://zztestprimary.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\": 8\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-WestEurope/providers/Microsoft.EventHub/namespaces/ns-localstore-scenario-10\",\r\n \"name\": \"ns-localstore-scenario-10\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West Europe\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:ns-localstore-scenario-10\",\r\n \"createdAt\": \"2020-09-06T17:24:27.343Z\",\r\n \"updatedAt\": \"2020-10-22T11:14:36.25Z\",\r\n \"serviceBusEndpoint\": \"https://ns-localstore-scenario-10.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/EventHubsVNETTestingRG/providers/Microsoft.EventHub/namespaces/sj-westcentralus\",\r\n \"name\": \"sj-westcentralus\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"clusterArmId\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/EventHubsVNETTestingRG/providers/Microsoft.EventHub/clusters/EventHubsVNetTesting\",\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:sj-westcentralus\",\r\n \"createdAt\": \"2020-09-23T00:07:29.707Z\",\r\n \"updatedAt\": \"2020-09-23T00:08:20.437Z\",\r\n \"serviceBusEndpoint\": \"https://sj-westcentralus.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/sjschemaregistry\",\r\n \"name\": \"sjschemaregistry\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:sjschemaregistry\",\r\n \"createdAt\": \"2020-09-29T19:00:19.527Z\",\r\n \"updatedAt\": \"2020-09-29T19:01:09.967Z\",\r\n \"serviceBusEndpoint\": \"https://sjschemaregistry.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/jfgRsrcGrp16/providers/Microsoft.EventHub/namespaces/jfgEvtHbNmspc1\",\r\n \"name\": \"jfgEvtHbNmspc1\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:jfgevthbnmspc1\",\r\n \"createdAt\": \"2020-10-19T02:50:21.05Z\",\r\n \"updatedAt\": \"2020-10-19T02:51:09.65Z\",\r\n \"serviceBusEndpoint\": \"https://jfgEvtHbNmspc1.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/zztestrg/providers/Microsoft.EventHub/namespaces/zztest03\",\r\n \"name\": \"zztest03\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:zztest03\",\r\n \"createdAt\": \"2020-10-20T21:48:16.673Z\",\r\n \"updatedAt\": \"2020-10-20T21:55:37.617Z\",\r\n \"serviceBusEndpoint\": \"https://zztest03.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/zztestrg/providers/Microsoft.EventHub/namespaces/zztest04\",\r\n \"name\": \"zztest04\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:zztest04\",\r\n \"createdAt\": \"2020-10-20T21:48:58.127Z\",\r\n \"updatedAt\": \"2020-10-20T21:57:59.613Z\",\r\n \"serviceBusEndpoint\": \"https://zztest04.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/sakoppes_test/providers/Microsoft.EventHub/namespaces/SamKoppesTestEHNamespace1\",\r\n \"name\": \"SamKoppesTestEHNamespace1\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"East US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:samkoppestestehnamespace1\",\r\n \"createdAt\": \"2020-10-23T17:59:47.117Z\",\r\n \"updatedAt\": \"2020-10-23T18:00:38.657Z\",\r\n \"serviceBusEndpoint\": \"https://SamKoppesTestEHNamespace1.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/hmlam-bn3-556\",\r\n \"name\": \"hmlam-bn3-556\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"clusterArmId\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/sjrg/providers/Microsoft.EventHub/clusters/SchemaRegistryPreviewCluster\",\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:hmlam-bn3-556\",\r\n \"createdAt\": \"2020-10-31T05:46:03.81Z\",\r\n \"updatedAt\": \"2020-10-31T05:46:54.773Z\",\r\n \"serviceBusEndpoint\": \"https://hmlam-bn3-556.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/jfgRsrcGrp18/providers/Microsoft.EventHub/namespaces/ADX-EG-jfgdataexplorer1\",\r\n \"name\": \"ADX-EG-jfgdataexplorer1\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"East US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:adx-eg-jfgdataexplorer1\",\r\n \"createdAt\": \"2020-11-09T16:50:22.813Z\",\r\n \"updatedAt\": \"2020-11-09T16:51:22.947Z\",\r\n \"serviceBusEndpoint\": \"https://ADX-EG-jfgdataexplorer1.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/manojprasad-rampup/providers/Microsoft.EventHub/namespaces/eventhub-nmp\",\r\n \"name\": \"eventhub-nmp\",\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 \"disableLocalAuth\": false,\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:eventhub-nmp\",\r\n \"createdAt\": \"2020-12-28T18:50:46.36Z\",\r\n \"updatedAt\": \"2021-04-21T23:21:24.477Z\",\r\n \"serviceBusEndpoint\": \"https://eventhub-nmp.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/PPGTestPG/providers/Microsoft.EventHub/namespaces/TestEHSys0121\",\r\n \"name\": \"TestEHSys0121\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"EAST US 2 EUAP\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:testehsys0121\",\r\n \"createdAt\": \"2021-01-22T23:59:08.403Z\",\r\n \"updatedAt\": \"2021-01-22T23:59:53.9Z\",\r\n \"serviceBusEndpoint\": \"https://TestEHSys0121.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/PPGTestPG/providers/Microsoft.EventHub/namespaces/TestEH0125\",\r\n \"name\": \"TestEH0125\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"EAST US 2 EUAP\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:testeh0125\",\r\n \"createdAt\": \"2021-01-26T21:05:50.063Z\",\r\n \"updatedAt\": \"2021-01-26T21:06:39.467Z\",\r\n \"serviceBusEndpoint\": \"https://TestEH0125.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-WestUS2/providers/Microsoft.EventHub/namespaces/hmlam-2-mwh01-510\",\r\n \"name\": \"hmlam-2-mwh01-510\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:hmlam-2-mwh01-510\",\r\n \"createdAt\": \"2021-01-27T21:26:17.357Z\",\r\n \"updatedAt\": \"2021-10-11T17:52:07.59Z\",\r\n \"serviceBusEndpoint\": \"https://hmlam-2-mwh01-510.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/EventHubsVNETTestingRG/providers/Microsoft.EventHub/namespaces/testencypt0128\",\r\n \"name\": \"testencypt0128\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West Central US\",\r\n \"tags\": {},\r\n \"identity\": {\r\n \"principalId\": \"e9d041e2-62a8-41c8-9b88-71031dbf2695\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"encryption\": {\r\n \"keySource\": \"Microsoft.KeyVault\",\r\n \"keyVaultProperties\": [\r\n {\r\n \"keyName\": \"testkey\",\r\n \"keyVaultUri\": \"https://testrbac0113.vault.azure.net\",\r\n \"keyVersion\": \"\"\r\n }\r\n ],\r\n \"requireInfrastructureEncryption\": false\r\n },\r\n \"clusterArmId\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/EventHubsVNETTestingRG/providers/Microsoft.EventHub/clusters/EventHubsVNetTesting\",\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:testencypt0128\",\r\n \"createdAt\": \"2021-01-29T03:11:24.39Z\",\r\n \"updatedAt\": \"2021-11-01T03:08:07.49Z\",\r\n \"serviceBusEndpoint\": \"https://testencypt0128.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/xcrg/providers/Microsoft.EventHub/namespaces/byok-offset-test\",\r\n \"name\": \"byok-offset-test\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"Central US EUAP\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:byok-offset-test\",\r\n \"createdAt\": \"2021-02-09T17:53:55.587Z\",\r\n \"updatedAt\": \"2021-02-09T18:00:15.627Z\",\r\n \"serviceBusEndpoint\": \"https://byok-offset-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/xcrg/providers/Microsoft.EventHub/namespaces/byok-ot-test\",\r\n \"name\": \"byok-ot-test\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"EAST US 2 EUAP\",\r\n \"tags\": {},\r\n \"identity\": {\r\n \"principalId\": \"a2a77dd1-1a20-4640-a408-2a254a9e0b69\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"encryption\": {\r\n \"keySource\": \"Microsoft.KeyVault\",\r\n \"keyVaultProperties\": [\r\n {\r\n \"keyName\": \"offset-journal-byok\",\r\n \"keyVaultUri\": \"https://xc-test.vault.azure.net\",\r\n \"keyVersion\": \"\"\r\n }\r\n ],\r\n \"requireInfrastructureEncryption\": false\r\n },\r\n \"clusterArmId\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/prod-cbn04-503-533-rg/providers/Microsoft.EventHub/clusters/CBN04-503\",\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:byok-ot-test\",\r\n \"createdAt\": \"2021-02-09T19:17:55.363Z\",\r\n \"updatedAt\": \"2021-11-12T21:36:13.557Z\",\r\n \"serviceBusEndpoint\": \"https://byok-ot-test.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/jfgWalmart1/providers/Microsoft.EventHub/namespaces/jfgEH-Wmt-1\",\r\n \"name\": \"jfgEH-Wmt-1\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"East US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:jfgeh-wmt-1\",\r\n \"createdAt\": \"2021-02-14T23:49:41.33Z\",\r\n \"updatedAt\": \"2021-02-14T23:50:33.71Z\",\r\n \"serviceBusEndpoint\": \"https://jfgEH-Wmt-1.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/jfgWalmart1/providers/Microsoft.EventHub/namespaces/jfgEH-Wmt-2\",\r\n \"name\": \"jfgEH-Wmt-2\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"East US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:jfgeh-wmt-2\",\r\n \"createdAt\": \"2021-02-15T02:12:43.573Z\",\r\n \"updatedAt\": \"2021-02-15T02:13:30.477Z\",\r\n \"serviceBusEndpoint\": \"https://jfgEH-Wmt-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/sjrg/providers/Microsoft.EventHub/namespaces/sjwestus2\",\r\n \"name\": \"sjwestus2\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:sjwestus2\",\r\n \"createdAt\": \"2021-02-18T06:26:28.413Z\",\r\n \"updatedAt\": \"2021-02-18T06:27:16.157Z\",\r\n \"serviceBusEndpoint\": \"https://sjwestus2.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/ehspringboot\",\r\n \"name\": \"ehspringboot\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:ehspringboot\",\r\n \"createdAt\": \"2021-02-26T01:37:31.123Z\",\r\n \"updatedAt\": \"2021-02-26T01:38:18.35Z\",\r\n \"serviceBusEndpoint\": \"https://ehspringboot.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/useridentities/providers/Microsoft.EventHub/namespaces/icmtest-1\",\r\n \"name\": \"icmtest-1\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"East US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:icmtest-1\",\r\n \"createdAt\": \"2021-03-05T19:07:00.873Z\",\r\n \"updatedAt\": \"2021-03-05T19:07:51.14Z\",\r\n \"serviceBusEndpoint\": \"https://icmtest-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/useridentities/providers/Microsoft.EventHub/namespaces/icm-testing\",\r\n \"name\": \"icm-testing\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"East US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:icm-testing\",\r\n \"createdAt\": \"2021-03-05T19:36:02.113Z\",\r\n \"updatedAt\": \"2021-03-05T19:36:54.433Z\",\r\n \"serviceBusEndpoint\": \"https://icm-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/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-EASTUS2EUAP/providers/Microsoft.EventHub/namespaces/sarama-gw-fix-verify\",\r\n \"name\": \"sarama-gw-fix-verify\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"EAST US 2 EUAP\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:sarama-gw-fix-verify\",\r\n \"createdAt\": \"2021-03-09T02:35:20.1Z\",\r\n \"updatedAt\": \"2021-03-09T02:36:08.687Z\",\r\n \"serviceBusEndpoint\": \"https://sarama-gw-fix-verify.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-cbn04-503-533-rg/providers/Microsoft.EventHub/namespaces/clemen-test-eh-sa\",\r\n \"name\": \"clemen-test-eh-sa\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"EAST US 2 EUAP\",\r\n \"tags\": {},\r\n \"identity\": {\r\n \"principalId\": \"b4b473dd-8d23-45ab-9f29-deee83baf0b1\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:clemen-test-eh-sa\",\r\n \"createdAt\": \"2021-03-31T20:02:42.077Z\",\r\n \"updatedAt\": \"2021-10-01T19:57:09.467Z\",\r\n \"serviceBusEndpoint\": \"https://clemen-test-eh-sa.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/DisablePublicAccesTesting/providers/Microsoft.EventHub/namespaces/DisablePublicAccessTesting-EHStandard\",\r\n \"name\": \"DisablePublicAccessTesting-EHStandard\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"EAST US 2 EUAP\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:disablepublicaccesstesting-ehstandard\",\r\n \"createdAt\": \"2021-04-06T15:53:47.477Z\",\r\n \"updatedAt\": \"2021-04-06T15:54:32.47Z\",\r\n \"serviceBusEndpoint\": \"https://DisablePublicAccessTesting-EHStandard.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/arthur/providers/Microsoft.EventHub/namespaces/arerlend-sr-test\",\r\n \"name\": \"arerlend-sr-test\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:arerlend-sr-test\",\r\n \"createdAt\": \"2021-04-16T05:43:31.857Z\",\r\n \"updatedAt\": \"2021-04-16T05:44:16.807Z\",\r\n \"serviceBusEndpoint\": \"https://arerlend-sr-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/EHResourceGr1/providers/Microsoft.EventHub/namespaces/kasuneventhubs\",\r\n \"name\": \"kasuneventhubs\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"East US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:kasuneventhubs\",\r\n \"createdAt\": \"2021-04-16T22:17:03.377Z\",\r\n \"updatedAt\": \"2021-10-13T20:55:24.767Z\",\r\n \"serviceBusEndpoint\": \"https://kasuneventhubs.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-cbn04-503-533-rg/providers/Microsoft.EventHub/namespaces/assures-cgissue-test\",\r\n \"name\": \"assures-cgissue-test\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"EAST US 2 EUAP\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"clusterArmId\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/prod-cbn04-503-533-rg/providers/Microsoft.EventHub/clusters/CBN04-503\",\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:assures-cgissue-test\",\r\n \"createdAt\": \"2021-05-01T01:32:54.81Z\",\r\n \"updatedAt\": \"2021-05-01T01:33:47.6Z\",\r\n \"serviceBusEndpoint\": \"https://assures-cgissue-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\": 2\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/kindrasiri_eh_benchmark/providers/Microsoft.EventHub/namespaces/ehbenchmark\",\r\n \"name\": \"ehbenchmark\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"East US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:ehbenchmark\",\r\n \"createdAt\": \"2021-05-03T16:12:09.03Z\",\r\n \"updatedAt\": \"2021-05-03T16:12:56.44Z\",\r\n \"serviceBusEndpoint\": \"https://ehbenchmark.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-cbn04-503-533-rg/providers/Microsoft.EventHub/namespaces/assures-cgissue-test-2\",\r\n \"name\": \"assures-cgissue-test-2\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"EAST US 2 EUAP\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"clusterArmId\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/prod-cbn04-503-533-rg/providers/Microsoft.EventHub/clusters/CBN04-503\",\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:assures-cgissue-test-2\",\r\n \"createdAt\": \"2021-05-06T19:38:04.303Z\",\r\n \"updatedAt\": \"2021-05-06T19:38:59.563Z\",\r\n \"serviceBusEndpoint\": \"https://assures-cgissue-test-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/v-ajnavtest/providers/Microsoft.EventHub/namespaces/testcluster-test2-eastus-eh-d-ns\",\r\n \"name\": \"testcluster-test2-eastus-eh-d-ns\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"East US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"clusterArmId\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/v-ajnavtest/providers/Microsoft.EventHub/clusters/testingclusterarmtemplate\",\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:testcluster-test2-eastus-eh-d-ns\",\r\n \"createdAt\": \"2021-05-06T23:23:01.673Z\",\r\n \"updatedAt\": \"2021-05-06T23:24:07.72Z\",\r\n \"serviceBusEndpoint\": \"https://testcluster-test2-eastus-eh-d-ns.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\": 10\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ardsouza-test-5-19/providers/Microsoft.EventHub/namespaces/ardsouza-5-19-2020-deleteme-basic\",\r\n \"name\": \"ardsouza-5-19-2020-deleteme-basic\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"Canada Central\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": true,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:ardsouza-5-19-2020-deleteme-basic\",\r\n \"createdAt\": \"2021-05-20T01:26:36.323Z\",\r\n \"updatedAt\": \"2021-05-20T01:28:35.287Z\",\r\n \"serviceBusEndpoint\": \"https://ardsouza-5-19-2020-deleteme-basic.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/EventHubsVNETTestingRG/providers/Microsoft.EventHub/namespaces/TestMSiNew0520\",\r\n \"name\": \"TestMSiNew0520\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West Central US\",\r\n \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/ppgtest/providers/microsoft.managedidentity/userassignedidentities/testuai0412new\": {\r\n \"clientId\": \"ec83a3e2-bd7b-4e77-bde9-76ec42eb1d6a\",\r\n \"principalId\": \"2496443e-0c52-4245-84fb-6ee677269b16\"\r\n },\r\n \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/ppgtest/providers/microsoft.managedidentity/userassignedidentities/testuai0506\": {\r\n \"clientId\": \"40578752-05e9-4b8b-bdc4-f07e960571e0\",\r\n \"principalId\": \"406cc555-ce08-485a-a5a6-ef1ccc5e7bec\"\r\n }\r\n }\r\n },\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"encryption\": {\r\n \"keySource\": \"Microsoft.KeyVault\",\r\n \"keyVaultProperties\": [\r\n {\r\n \"keyName\": \"TestKey0506\",\r\n \"keyVaultUri\": \"https://testkv0506.vault.azure.net\",\r\n \"keyVersion\": \"\",\r\n \"identity\": {\r\n \"userAssignedIdentity\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/ppgtest/providers/microsoft.managedidentity/userassignedidentities/testuai0506\"\r\n }\r\n }\r\n ],\r\n \"requireInfrastructureEncryption\": false\r\n },\r\n \"clusterArmId\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/EventHubsVNETTestingRG/providers/Microsoft.EventHub/clusters/EventHubsVNetTesting\",\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:testmsinew0520\",\r\n \"createdAt\": \"2021-05-20T22:42:14.17Z\",\r\n \"updatedAt\": \"2021-08-06T19:47:08.883Z\",\r\n \"serviceBusEndpoint\": \"https://TestMSiNew0520.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\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/sjrg/providers/Microsoft.EventHub/namespaces/sjpremiumwe\",\r\n \"name\": \"sjpremiumwe\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West Europe\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": true,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:sjpremiumwe\",\r\n \"createdAt\": \"2021-05-21T18:16:42.207Z\",\r\n \"updatedAt\": \"2021-05-25T05:53:39.053Z\",\r\n \"serviceBusEndpoint\": \"https://sjpremiumwe.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\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/manojprasad-rampup/providers/Microsoft.EventHub/namespaces/manojprasad-eventhubs-premium\",\r\n \"name\": \"manojprasad-eventhubs-premium\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"Australia East\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": true,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:manojprasad-eventhubs-premium\",\r\n \"createdAt\": \"2021-05-24T19:31:02.89Z\",\r\n \"updatedAt\": \"2021-05-24T19:32:55.72Z\",\r\n \"serviceBusEndpoint\": \"https://manojprasad-eventhubs-premium.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\": 2\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ardsouza-test-5-19/providers/Microsoft.EventHub/namespaces/ardsouza-premium-aztest-5-24-deleteme\",\r\n \"name\": \"ardsouza-premium-aztest-5-24-deleteme\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West Europe\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": true,\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-premium-aztest-5-24-deleteme\",\r\n \"createdAt\": \"2021-05-24T23:11:51.05Z\",\r\n \"updatedAt\": \"2021-05-24T23:15:24.323Z\",\r\n \"serviceBusEndpoint\": \"https://ardsouza-premium-aztest-5-24-deleteme.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\": 2\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ardsouza-test-5-19/providers/Microsoft.EventHub/namespaces/ardsouza-westus-2-ehprem\",\r\n \"name\": \"ardsouza-westus-2-ehprem\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": true,\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-westus-2-ehprem\",\r\n \"createdAt\": \"2021-05-25T14:10:07.963Z\",\r\n \"updatedAt\": \"2021-05-25T14:14:10.663Z\",\r\n \"serviceBusEndpoint\": \"https://ardsouza-westus-2-ehprem.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\": 4\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/kindrasiri_eh_premium_benchmarking/providers/Microsoft.EventHub/namespaces/ehpremium\",\r\n \"name\": \"ehpremium\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"East US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": true,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:ehpremium\",\r\n \"createdAt\": \"2021-05-25T22:33:28.69Z\",\r\n \"updatedAt\": \"2021-09-24T22:03:55.787Z\",\r\n \"serviceBusEndpoint\": \"https://ehpremium.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/bailiu-servicebus-test-resources/providers/Microsoft.EventHub/namespaces/bailiu-eventhubs-test-centralus\",\r\n \"name\": \"bailiu-eventhubs-test-centralus\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"Central US EUAP\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:bailiu-eventhubs-test-centralus\",\r\n \"createdAt\": \"2021-06-07T17:52:17.123Z\",\r\n \"updatedAt\": \"2021-06-07T17:53:05.263Z\",\r\n \"serviceBusEndpoint\": \"https://bailiu-eventhubs-test-centralus.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/bailiu-servicebus-test-resources/providers/Microsoft.EventHub/namespaces/bailiu-eventhubs-test-westus2\",\r\n \"name\": \"bailiu-eventhubs-test-westus2\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": true,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:bailiu-eventhubs-test-westus2\",\r\n \"createdAt\": \"2021-06-07T19:23:45.427Z\",\r\n \"updatedAt\": \"2021-06-07T19:24:33.517Z\",\r\n \"serviceBusEndpoint\": \"https://bailiu-eventhubs-test-westus2.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/assures-geodr-prod/providers/Microsoft.EventHub/namespaces/geodr-primary\",\r\n \"name\": \"geodr-primary\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": true,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:geodr-primary\",\r\n \"createdAt\": \"2021-06-10T17:40:59.263Z\",\r\n \"updatedAt\": \"2021-06-18T03:14:01.397Z\",\r\n \"serviceBusEndpoint\": \"https://geodr-primary.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/assures-geodr-prod/providers/Microsoft.EventHub/namespaces/geodr-secondary-1\",\r\n \"name\": \"geodr-secondary-1\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": true,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:geodr-secondary-1\",\r\n \"createdAt\": \"2021-06-10T17:45:12.537Z\",\r\n \"updatedAt\": \"2021-06-18T03:14:01.017Z\",\r\n \"serviceBusEndpoint\": \"https://geodr-secondary-1.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\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/shsama-rg/providers/Microsoft.EventHub/namespaces/ehwhitelisttest\",\r\n \"name\": \"ehwhitelisttest\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"East US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": true,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:ehwhitelisttest\",\r\n \"createdAt\": \"2021-06-14T22:09:08.543Z\",\r\n \"updatedAt\": \"2021-06-14T22:10:26.767Z\",\r\n \"serviceBusEndpoint\": \"https://ehwhitelisttest.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/EventHubsVNETTestingRG/providers/Microsoft.EventHub/namespaces/ali-bypass-test\",\r\n \"name\": \"ali-bypass-test\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West Central US\",\r\n \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/dbedb4e0-40e6-4145-81f3-f1314c150774/resourceGroups/alitest/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ali-id-1\": {\r\n \"clientId\": \"16bc3fc1-8bc8-46a4-bd4d-583104db7d9a\",\r\n \"principalId\": \"6b03c867-9188-427a-a440-2d0e624c95cb\"\r\n }\r\n }\r\n },\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"encryption\": {\r\n \"keySource\": \"Microsoft.KeyVault\",\r\n \"keyVaultProperties\": [\r\n {\r\n \"keyName\": \"al-key\",\r\n \"keyVaultUri\": \"https://ali-kv.vault.azure.net\",\r\n \"keyVersion\": \"\",\r\n \"identity\": {\r\n \"userAssignedIdentity\": \"/subscriptions/dbedb4e0-40e6-4145-81f3-f1314c150774/resourceGroups/alitest/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ali-id-1\"\r\n }\r\n }\r\n ],\r\n \"requireInfrastructureEncryption\": false\r\n },\r\n \"clusterArmId\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/EventHubsVNETTestingRG/providers/Microsoft.EventHub/clusters/EventHubsVNetTesting\",\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:ali-bypass-test\",\r\n \"createdAt\": \"2021-06-14T22:19:01.01Z\",\r\n \"updatedAt\": \"2021-11-03T21:56:20.253Z\",\r\n \"serviceBusEndpoint\": \"https://ali-bypass-test.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\": 4\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/sjrg/providers/Microsoft.EventHub/namespaces/sjmwhpremium\",\r\n \"name\": \"sjmwhpremium\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": true,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:sjmwhpremium\",\r\n \"createdAt\": \"2021-06-15T04:32:43.893Z\",\r\n \"updatedAt\": \"2021-09-15T16:49:44.363Z\",\r\n \"serviceBusEndpoint\": \"https://sjmwhpremium.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/kindrasiri-synapse-test-rg/providers/Microsoft.EventHub/namespaces/azuremsgtest\",\r\n \"name\": \"azuremsgtest\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:azuremsgtest\",\r\n \"createdAt\": \"2021-07-01T01:43:16.197Z\",\r\n \"updatedAt\": \"2021-07-01T01:44:09.693Z\",\r\n \"serviceBusEndpoint\": \"https://azuremsgtest.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/dorothytest/providers/Microsoft.EventHub/namespaces/vnetehtest\",\r\n \"name\": \"vnetehtest\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:vnetehtest\",\r\n \"createdAt\": \"2021-07-01T22:51:08.083Z\",\r\n \"updatedAt\": \"2021-07-01T22:52:00.777Z\",\r\n \"serviceBusEndpoint\": \"https://vnetehtest.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\": 2\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/sjrgcbn/providers/Microsoft.EventHub/namespaces/sjpremiumcbnns\",\r\n \"name\": \"sjpremiumcbnns\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"EAST US 2 EUAP\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:sjpremiumcbnns\",\r\n \"createdAt\": \"2021-07-02T20:52:00.477Z\",\r\n \"updatedAt\": \"2021-07-02T22:13:32.103Z\",\r\n \"serviceBusEndpoint\": \"https://sjpremiumcbnns.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/sjrgcbn/providers/Microsoft.EventHub/namespaces/sjcbnstandard\",\r\n \"name\": \"sjcbnstandard\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"EAST US 2 EUAP\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": true,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:sjcbnstandard\",\r\n \"createdAt\": \"2021-07-03T06:59:07.623Z\",\r\n \"updatedAt\": \"2021-07-03T06:59:56.193Z\",\r\n \"serviceBusEndpoint\": \"https://sjcbnstandard.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/assures-kafka/providers/Microsoft.EventHub/namespaces/kafka-perf-decrease\",\r\n \"name\": \"kafka-perf-decrease\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:kafka-perf-decrease\",\r\n \"createdAt\": \"2021-07-06T18:21:46.48Z\",\r\n \"updatedAt\": \"2021-07-06T18:22:48.857Z\",\r\n \"serviceBusEndpoint\": \"https://kafka-perf-decrease.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-CentralUSEUAP/providers/Microsoft.EventHub/namespaces/hmlam-cdm03-502\",\r\n \"name\": \"hmlam-cdm03-502\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"Central US EUAP\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:hmlam-cdm03-502\",\r\n \"createdAt\": \"2021-07-07T01:31:09.74Z\",\r\n \"updatedAt\": \"2021-10-28T21:42:48.483Z\",\r\n \"serviceBusEndpoint\": \"https://hmlam-cdm03-502.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/PPGTest/providers/Microsoft.EventHub/namespaces/TestEHSys0705\",\r\n \"name\": \"TestEHSys0705\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"Central US EUAP\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:testehsys0705\",\r\n \"createdAt\": \"2021-07-07T20:50:02.06Z\",\r\n \"updatedAt\": \"2021-10-18T20:29:46.29Z\",\r\n \"serviceBusEndpoint\": \"https://TestEHSys0705.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/disablelocalauth/providers/Microsoft.EventHub/namespaces/ardsouza-disablelocalauth-canary-test1\",\r\n \"name\": \"ardsouza-disablelocalauth-canary-test1\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"EAST US 2 EUAP\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": true,\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-disablelocalauth-canary-test1\",\r\n \"createdAt\": \"2021-07-13T22:20:11.607Z\",\r\n \"updatedAt\": \"2021-07-13T22:21:11.107Z\",\r\n \"serviceBusEndpoint\": \"https://ardsouza-disablelocalauth-canary-test1.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/disablelocalauth/providers/Microsoft.EventHub/namespaces/ardsouza-disablelocalauth-canary-test2\",\r\n \"name\": \"ardsouza-disablelocalauth-canary-test2\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"EAST US 2 EUAP\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": true,\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-disablelocalauth-canary-test2\",\r\n \"createdAt\": \"2021-07-13T22:57:04.87Z\",\r\n \"updatedAt\": \"2021-07-13T23:54:08.33Z\",\r\n \"serviceBusEndpoint\": \"https://ardsouza-disablelocalauth-canary-test2.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/PPGTest/providers/Microsoft.EventHub/namespaces/TestSysTopicCan0716\",\r\n \"name\": \"TestSysTopicCan0716\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"EAST US 2 EUAP\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": true,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:testsystopiccan0716\",\r\n \"createdAt\": \"2021-07-16T21:48:26.007Z\",\r\n \"updatedAt\": \"2021-07-16T21:49:17.663Z\",\r\n \"serviceBusEndpoint\": \"https://TestSysTopicCan0716.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-westeurope-test/providers/Microsoft.EventHub/namespaces/ardsouza-07-2021-capture-adls2test\",\r\n \"name\": \"ardsouza-07-2021-capture-adls2test\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"Southeast Asia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": true,\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-07-2021-capture-adls2test\",\r\n \"createdAt\": \"2021-07-27T17:35:55.01Z\",\r\n \"updatedAt\": \"2021-07-27T17:36:46.08Z\",\r\n \"serviceBusEndpoint\": \"https://ardsouza-07-2021-capture-adls2test.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\": 2\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/sjrg/providers/Microsoft.EventHub/namespaces/sjpremiumyt\",\r\n \"name\": \"sjpremiumyt\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"Canada Central\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": true,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:sjpremiumyt\",\r\n \"createdAt\": \"2021-07-30T16:58:37.797Z\",\r\n \"updatedAt\": \"2021-09-08T18:47:53.797Z\",\r\n \"serviceBusEndpoint\": \"https://sjpremiumyt.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\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/sjrg/providers/Microsoft.EventHub/namespaces/sjpremiumsy1\",\r\n \"name\": \"sjpremiumsy1\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"Australia East\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": true,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:sjpremiumsy1\",\r\n \"createdAt\": \"2021-07-30T17:57:47.803Z\",\r\n \"updatedAt\": \"2021-07-30T17:59:25.597Z\",\r\n \"serviceBusEndpoint\": \"https://sjpremiumsy1.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-CentralUSEUAP/providers/Microsoft.EventHub/namespaces/drdrillPrimary08022021\",\r\n \"name\": \"drdrillPrimary08022021\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"Central US EUAP\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:drdrillprimary08022021\",\r\n \"createdAt\": \"2021-07-31T01:33:40.18Z\",\r\n \"updatedAt\": \"2021-08-30T23:20:31.35Z\",\r\n \"serviceBusEndpoint\": \"https://drdrillPrimary08022021.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/zztestrg/providers/Microsoft.EventHub/namespaces/zzns01-pltest\",\r\n \"name\": \"zzns01-pltest\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": true,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:zzns01-pltest\",\r\n \"createdAt\": \"2021-08-23T23:02:28.61Z\",\r\n \"updatedAt\": \"2021-08-23T23:03:15.843Z\",\r\n \"serviceBusEndpoint\": \"https://zzns01-pltest.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/EventHubsVNETTestingRG/providers/Microsoft.EventHub/namespaces/testMSI01060825\",\r\n \"name\": \"testMSI01060825\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West Central US\",\r\n \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/1196a38f-8e8a-4916-9056-787c19a53125/resourcegroups/ppgtest/providers/microsoft.managedidentity/userassignedidentities/testuai0618\": {\r\n \"clientId\": \"12e5b965-1d50-4d1b-b1df-a805dce0f0ec\",\r\n \"principalId\": \"aeb481c1-762b-474e-b6c6-86c67433a9ea\"\r\n }\r\n }\r\n },\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"encryption\": {\r\n \"keySource\": \"Microsoft.KeyVault\",\r\n \"keyVaultProperties\": [\r\n {\r\n \"keyName\": \"testkey0618\",\r\n \"keyVaultUri\": \"https://testkv0618.vault.azure.net\",\r\n \"keyVersion\": \"\",\r\n \"identity\": {\r\n \"userAssignedIdentity\": \"/subscriptions/1196a38f-8e8a-4916-9056-787c19a53125/resourcegroups/ppgtest/providers/microsoft.managedidentity/userassignedidentities/testuai0618\"\r\n }\r\n }\r\n ],\r\n \"requireInfrastructureEncryption\": false\r\n },\r\n \"clusterArmId\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/EventHubsVNETTestingRG/providers/Microsoft.EventHub/clusters/EventHubsVNetTesting\",\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:testmsi01060825\",\r\n \"createdAt\": \"2021-08-25T21:21:21.967Z\",\r\n \"updatedAt\": \"2021-08-25T21:26:16.927Z\",\r\n \"serviceBusEndpoint\": \"https://testMSI01060825.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-EASTUS2EUAP/providers/Microsoft.EventHub/namespaces/drdrillSecondary08022021\",\r\n \"name\": \"drdrillSecondary08022021\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"EAST US 2 EUAP\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": true,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:drdrillsecondary08022021\",\r\n \"createdAt\": \"2021-08-30T23:14:33.313Z\",\r\n \"updatedAt\": \"2021-08-30T23:17:43.6Z\",\r\n \"serviceBusEndpoint\": \"https://drdrillSecondary08022021.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/manojprasad-rampup/providers/Microsoft.EventHub/namespaces/manojprasad-eh-namespace\",\r\n \"name\": \"manojprasad-eh-namespace\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"clusterArmId\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/manojprasad-rampup/providers/Microsoft.EventHub/clusters/manojprasad-eh-cluster\",\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:manojprasad-eh-namespace\",\r\n \"createdAt\": \"2021-08-31T19:32:58.667Z\",\r\n \"updatedAt\": \"2021-08-31T19:33:47.073Z\",\r\n \"serviceBusEndpoint\": \"https://manojprasad-eh-namespace.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-WestUS2/providers/Microsoft.EventHub/namespaces/hmlam-canada-east-01\",\r\n \"name\": \"hmlam-canada-east-01\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"Canada East\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:hmlam-canada-east-01\",\r\n \"createdAt\": \"2021-09-02T17:13:09.64Z\",\r\n \"updatedAt\": \"2021-09-02T17:15:57.537Z\",\r\n \"serviceBusEndpoint\": \"https://hmlam-canada-east-01.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-cbn04-503-533-rg/providers/Microsoft.EventHub/namespaces/TestNSforVMSSMigration\",\r\n \"name\": \"TestNSforVMSSMigration\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"EAST US 2 EUAP\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"clusterArmId\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/prod-cbn04-503-533-rg/providers/Microsoft.EventHub/clusters/CBN04-503\",\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:testnsforvmssmigration\",\r\n \"createdAt\": \"2021-09-14T01:57:25.823Z\",\r\n \"updatedAt\": \"2021-09-14T17:43:00.203Z\",\r\n \"serviceBusEndpoint\": \"https://TestNSforVMSSMigration.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-EASTUS2EUAP/providers/Microsoft.EventHub/namespaces/taab-testns\",\r\n \"name\": \"taab-testns\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"EAST US 2 EUAP\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:taab-testns\",\r\n \"createdAt\": \"2021-09-16T20:21:03.61Z\",\r\n \"updatedAt\": \"2021-09-16T20:21:56.373Z\",\r\n \"serviceBusEndpoint\": \"https://taab-testns.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-EASTUS2EUAP/providers/Microsoft.EventHub/namespaces/yamlin-testNS-VMSS\",\r\n \"name\": \"yamlin-testNS-VMSS\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"EAST US 2 EUAP\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:yamlin-testns-vmss\",\r\n \"createdAt\": \"2021-09-17T17:18:09.21Z\",\r\n \"updatedAt\": \"2021-09-17T17:18:56.28Z\",\r\n \"serviceBusEndpoint\": \"https://yamlin-testNS-VMSS.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/EventHubsVNETTestingRG/providers/Microsoft.EventHub/namespaces/TestEHDedMSI0922\",\r\n \"name\": \"TestEHDedMSI0922\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West Central US\",\r\n \"tags\": {},\r\n \"identity\": {\r\n \"principalId\": \"f8a107e9-9278-45b0-ac39-9c88fe17ea5a\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"encryption\": {\r\n \"keySource\": \"Microsoft.KeyVault\",\r\n \"keyVaultProperties\": [\r\n {\r\n \"keyName\": \"TestKEyNew0409\",\r\n \"keyVaultUri\": \"https://testkv0409.vault.azure.net\",\r\n \"keyVersion\": \"\"\r\n }\r\n ],\r\n \"requireInfrastructureEncryption\": false\r\n },\r\n \"clusterArmId\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/EventHubsVNETTestingRG/providers/Microsoft.EventHub/clusters/EventHubsVNetTesting\",\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:testehdedmsi0922\",\r\n \"createdAt\": \"2021-09-22T23:35:52.497Z\",\r\n \"updatedAt\": \"2021-11-07T23:39:15.24Z\",\r\n \"serviceBusEndpoint\": \"https://TestEHDedMSI0922.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/v-ajnavtest/providers/Microsoft.EventHub/namespaces/sdk-NS-7728\",\r\n \"name\": \"sdk-NS-7728\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"identity\": {\r\n \"principalId\": \"96967467-e23f-442e-a4a0-dccea7044fd7\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"clusterArmId\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/v-ajnavtest/providers/Microsoft.EventHub/clusters/PMTestCluster1\",\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:sdk-ns-7728\",\r\n \"createdAt\": \"2021-09-27T00:21:53.463Z\",\r\n \"updatedAt\": \"2021-11-12T00:16:10.567Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-7728.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.EventHub/namespaces?api-version=2021-11-01&$skipToken=2021-09-27T00:21:53.463Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-4646/providers/Microsoft.EventHub/namespaces/sdk-NS-164?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNDY0Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTE2ND9hcGktdmVyc2lvbj0yMDIxLTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-5204/providers/Microsoft.EventHub/namespaces/sdk-NS-642?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNTIwNC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTY0Mj9hcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "PATCH", "RequestBody": "{\r\n \"tags\": {\r\n \"tag3\": \"value3\",\r\n \"tag4\": \"value4\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "6606acc7-67db-4ca2-8566-1bfc536a619d" + "080d80fa-fb26-46ba-9ed0-cc1bad43eec9" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -891,27 +891,30 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:25:00 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "939de5c3-ad29-4ec4-92c7-27906605a93d_M5SN1_M5SN1" + "2a1aff75-7375-4fcf-8f7a-d8104a212fa7_M9CH3_M9CH3" ], "Server-SB": [ - "Service-Bus-Resource-Provider/SN1" - ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" + "Service-Bus-Resource-Provider/CH3" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "48" ], "x-ms-correlation-request-id": [ - "615e0038-d779-4b98-95ec-3bcdadca1de6" + "70725510-1fce-4d5c-a18e-5d888048db05" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T041438Z:615e0038-d779-4b98-95ec-3bcdadca1de6" + "SOUTHINDIA:20211115T022501Z:70725510-1fce-4d5c-a18e-5d888048db05" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -919,11 +922,8 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:14:37 GMT" - ], "Content-Length": [ - "731" + "733" ], "Content-Type": [ "application/json; charset=utf-8" @@ -932,56 +932,59 @@ "-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-4646/providers/Microsoft.EventHub/namespaces/sdk-NS-164\",\r\n \"name\": \"sdk-NS-164\",\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 \"disableLocalAuth\": false,\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-164\",\r\n \"createdAt\": \"2021-09-24T04:13:26.61Z\",\r\n \"updatedAt\": \"2021-09-24T04:14:35.88Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-164.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-5204/providers/Microsoft.EventHub/namespaces/sdk-NS-642\",\r\n \"name\": \"sdk-NS-642\",\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 \"disableLocalAuth\": false,\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-642\",\r\n \"createdAt\": \"2021-11-15T02:23:49.143Z\",\r\n \"updatedAt\": \"2021-11-15T02:24:59.323Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-642.servicebus.windows.net:443/\",\r\n \"status\": \"Activating\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-4646/providers/Microsoft.EventHub/namespaces/sdk-NS-164?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNDY0Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTE2ND9hcGktdmVyc2lvbj0yMDIxLTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-5204/providers/Microsoft.EventHub/namespaces/sdk-NS-642?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNTIwNC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTY0Mj9hcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3826eb80-05f8-4d67-832e-e9d14789e279" + "f7bddb8e-28d3-49d7-89c3-113576103dea" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:25:15 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-4646/providers/Microsoft.EventHub/namespaces/sdk-NS-164/operationresults/sdk-NS-164?api-version=2021-06-01-preview" + "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-5204/providers/Microsoft.EventHub/namespaces/sdk-NS-642/operationresults/sdk-NS-642?api-version=2021-11-01" + ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "8085b4e0-0760-4db6-a8c3-8eb5db8a5bd5_M5SN1_M5SN1" + "276685c7-dfdb-4c83-8df8-db5e66e50e82_M9CH3_M9CH3" ], "Server-SB": [ - "Service-Bus-Resource-Provider/SN1" - ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" + "Service-Bus-Resource-Provider/CH3" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14999" ], "x-ms-correlation-request-id": [ - "47726c88-3afa-4df2-a6da-b08c02b8f614" + "dc4fe2ee-b642-45cf-9e7d-146b41a04035" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T041451Z:47726c88-3afa-4df2-a6da-b08c02b8f614" + "SOUTHINDIA:20211115T022516Z:dc4fe2ee-b642-45cf-9e7d-146b41a04035" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -989,57 +992,57 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:14:51 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-4646/providers/Microsoft.EventHub/namespaces/sdk-NS-164/operationresults/sdk-NS-164?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNDY0Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTE2NC9vcGVyYXRpb25yZXN1bHRzL3Nkay1OUy0xNjQ/YXBpLXZlcnNpb249MjAyMS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-5204/providers/Microsoft.EventHub/namespaces/sdk-NS-642/operationresults/sdk-NS-642?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNTIwNC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTY0Mi9vcGVyYXRpb25yZXN1bHRzL3Nkay1OUy02NDI/YXBpLXZlcnNpb249MjAyMS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:25:46 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "00d95e98-5cb1-4955-a0ec-c0d1263430fe_M5SN1_M5SN1" + "8ea48829-85dc-4dd5-b392-43b6c3e6fbed_M5CH3_M5CH3" ], "Server-SB": [ - "Service-Bus-Resource-Provider/SN1" - ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" + "Service-Bus-Resource-Provider/CH3" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11992" ], "x-ms-correlation-request-id": [ - "0d9044e3-d91f-4f54-a534-cbeeb8fbacf7" + "267ccc7b-c0a6-4751-b689-283da8e326dc" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T041521Z:0d9044e3-d91f-4f54-a534-cbeeb8fbacf7" + "SOUTHINDIA:20211115T022546Z:267ccc7b-c0a6-4751-b689-283da8e326dc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1047,57 +1050,57 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:15:21 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-4646/providers/Microsoft.EventHub/namespaces/sdk-NS-164/operationresults/sdk-NS-164?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNDY0Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTE2NC9vcGVyYXRpb25yZXN1bHRzL3Nkay1OUy0xNjQ/YXBpLXZlcnNpb249MjAyMS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-5204/providers/Microsoft.EventHub/namespaces/sdk-NS-642/operationresults/sdk-NS-642?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNTIwNC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTY0Mi9vcGVyYXRpb25yZXN1bHRzL3Nkay1OUy02NDI/YXBpLXZlcnNpb249MjAyMS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:25:46 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "f9a6d3ca-13dc-476f-af0e-319d6f7a2fa0_M5SN1_M5SN1" + "a3e31632-d7d4-4c4f-a680-1aea693fbaba_M5CH3_M5CH3" ], "Server-SB": [ - "Service-Bus-Resource-Provider/SN1" - ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" + "Service-Bus-Resource-Provider/CH3" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11991" ], "x-ms-correlation-request-id": [ - "e0240c25-6e35-4fc0-a4ea-9d06cf0bfdf9" + "183e90fb-2649-4ba6-8069-8997e74f4fb1" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T041521Z:e0240c25-6e35-4fc0-a4ea-9d06cf0bfdf9" + "SOUTHINDIA:20211115T022547Z:183e90fb-2649-4ba6-8069-8997e74f4fb1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1105,14 +1108,11 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:15:21 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", @@ -1121,8 +1121,8 @@ ], "Names": { "NamespaceCreateGetUpdateDelete": [ - "Default-EventHub-4646", - "sdk-NS-164" + "Default-EventHub-5204", + "sdk-NS-642" ] }, "Variables": { 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 1a7b88c90806..2c22c1c13600 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,135 +1,5 @@ { "Entries": [ - { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/Default-EventHub-8823?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlZ3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItODgyMz9hcGktdmVyc2lvbj0yMDE1LTExLTAx", - "RequestMethod": "DELETE", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "5a7a2e61-0526-4540-84c0-ba07293ddd93" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.27817.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1ERUZBVUxUOjJERVZFTlRIVUI6MkQ4ODIzLVNPVVRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJzb3V0aGNlbnRyYWx1cyJ9?api-version=2015-11-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" - ], - "x-ms-request-id": [ - "8ea5f827-480c-4710-b16d-20b23cf6caa2" - ], - "x-ms-correlation-request-id": [ - "8ea5f827-480c-4710-b16d-20b23cf6caa2" - ], - "x-ms-routing-request-id": [ - "WESTUS:20210924T042402Z:8ea5f827-480c-4710-b16d-20b23cf6caa2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 24 Sep 2021 04:24:01 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8823/providers/Microsoft.EventHub/namespaces/sdk-NS-6100?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItODgyMy9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTYxMDA/YXBpLXZlcnNpb249MjAyMS0wNi0wMS1wcmV2aWV3", - "RequestMethod": "DELETE", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "2c7841cb-aadb-46d3-8992-c5447ed298d8" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.27817.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8823/providers/Microsoft.EventHub/namespaces/sdk-NS-6100/operationresults/sdk-NS-6100?api-version=2021-06-01-preview" - ], - "x-ms-request-id": [ - "1caf0b58-b589-4fdb-b75e-255ac7f7eefd_M8SN1_M8SN1" - ], - "Server-SB": [ - "Service-Bus-Resource-Provider/SN1" - ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" - ], - "x-ms-correlation-request-id": [ - "fcec56a9-721b-4c55-b2b5-642cf2fb2df6" - ], - "x-ms-routing-request-id": [ - "WESTUS:20210924T042402Z:fcec56a9-721b-4c55-b2b5-642cf2fb2df6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 24 Sep 2021 04:24:02 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, { "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.EventHub?api-version=2015-11-01", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWI/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", @@ -137,15 +7,15 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f5c0cd13-db49-479b-99ab-d93897aa7f7c" + "df9743a3-7b3a-4c94-8cd0-9bc2b6cee494" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", + "OSVersion/Microsoft.Windows.10.0.22000.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -153,20 +23,23 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:37:47 GMT" + ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11998" ], "x-ms-request-id": [ - "a2082654-f2ae-421d-91be-b281c811058a" + "ea6b9bf3-350b-4e33-9e78-8d1f2351c08e" ], "x-ms-correlation-request-id": [ - "a2082654-f2ae-421d-91be-b281c811058a" + "ea6b9bf3-350b-4e33-9e78-8d1f2351c08e" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T042403Z:a2082654-f2ae-421d-91be-b281c811058a" + "SOUTHINDIA:20211115T023747Z:ea6b9bf3-350b-4e33-9e78-8d1f2351c08e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -174,38 +47,35 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:24:02 GMT" + "Content-Length": [ + "4451" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" - ], - "Content-Length": [ - "4274" ] }, - "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 \"Jio India West\",\r\n \"West US 3\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"UAE Central\",\r\n \"Norway West\",\r\n \"Sweden Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01-preview\",\r\n \"2021-01-01-preview\",\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 \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"UAE Central\",\r\n \"Norway West\",\r\n \"Sweden 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 \"2021-06-01-preview\",\r\n \"2021-01-01-preview\",\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 },\r\n {\r\n \"resourceType\": \"namespaces/networkrulesets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-06-01-preview\",\r\n \"2021-01-01-preview\",\r\n \"2018-01-01-preview\",\r\n \"2017-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/privateEndpointConnections\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-06-01-preview\",\r\n \"2021-01-01-preview\",\r\n \"2018-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/eventhubs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-06-01-preview\",\r\n \"2021-01-01-preview\",\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 },\r\n {\r\n \"resourceType\": \"namespaces/eventhubs/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-06-01-preview\",\r\n \"2021-01-01-preview\",\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 },\r\n {\r\n \"resourceType\": \"namespaces/eventhubs/consumergroups\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-06-01-preview\",\r\n \"2021-01-01-preview\",\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 },\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 \"2021-06-01-preview\",\r\n \"2021-01-01-preview\",\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 },\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 \"2021-06-01-preview\",\r\n \"2021-01-01-preview\",\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 },\r\n {\r\n \"resourceType\": \"namespaces/disasterrecoveryconfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-06-01-preview\",\r\n \"2021-01-01-preview\",\r\n \"2018-01-01-preview\",\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 \"2021-06-01-preview\",\r\n \"2021-01-01-preview\",\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 },\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}", + "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 \"Jio India West\",\r\n \"West US 3\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"UAE Central\",\r\n \"Norway West\",\r\n \"Sweden Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-11-01\",\r\n \"2021-06-01-preview\",\r\n \"2021-01-01-preview\",\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 \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"UAE Central\",\r\n \"Norway West\",\r\n \"Sweden Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-11-01\",\r\n \"2021-06-01-preview\",\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 \"2021-11-01\",\r\n \"2021-06-01-preview\",\r\n \"2021-01-01-preview\",\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 },\r\n {\r\n \"resourceType\": \"namespaces/networkrulesets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-11-01\",\r\n \"2021-06-01-preview\",\r\n \"2021-01-01-preview\",\r\n \"2018-01-01-preview\",\r\n \"2017-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/privateEndpointConnections\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-11-01\",\r\n \"2021-06-01-preview\",\r\n \"2021-01-01-preview\",\r\n \"2018-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/eventhubs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-11-01\",\r\n \"2021-06-01-preview\",\r\n \"2021-01-01-preview\",\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 },\r\n {\r\n \"resourceType\": \"namespaces/eventhubs/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-11-01\",\r\n \"2021-06-01-preview\",\r\n \"2021-01-01-preview\",\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 },\r\n {\r\n \"resourceType\": \"namespaces/eventhubs/consumergroups\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-11-01\",\r\n \"2021-06-01-preview\",\r\n \"2021-01-01-preview\",\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 },\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 \"2021-11-01\",\r\n \"2021-06-01-preview\",\r\n \"2021-01-01-preview\",\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 },\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 \"2021-11-01\",\r\n \"2021-06-01-preview\",\r\n \"2021-01-01-preview\",\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 },\r\n {\r\n \"resourceType\": \"namespaces/disasterrecoveryconfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-11-01\",\r\n \"2021-06-01-preview\",\r\n \"2021-01-01-preview\",\r\n \"2018-01-01-preview\",\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 \"2021-11-01\",\r\n \"2021-06-01-preview\",\r\n \"2021-01-01-preview\",\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 },\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/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/Default-EventHub-2135?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlZ3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMjEzNT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/Default-EventHub-2742?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlZ3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMjc0Mj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"Australia East\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "546c7eec-20c9-4352-9ca1-79f273f749c6" + "f805cfa1-8014-4905-b8bd-3c5e072a2697" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", + "OSVersion/Microsoft.Windows.10.0.22000.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ], "Content-Type": [ @@ -219,20 +89,23 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:37:48 GMT" + ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1198" ], "x-ms-request-id": [ - "45fc145a-127b-499a-8f0e-8f024c0db00c" + "f1bb8535-e8aa-45cd-96e6-c600fe4ea279" ], "x-ms-correlation-request-id": [ - "45fc145a-127b-499a-8f0e-8f024c0db00c" + "f1bb8535-e8aa-45cd-96e6-c600fe4ea279" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T042405Z:45fc145a-127b-499a-8f0e-8f024c0db00c" + "SOUTHINDIA:20211115T023749Z:f1bb8535-e8aa-45cd-96e6-c600fe4ea279" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -240,9 +113,6 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:24:05 GMT" - ], "Content-Length": [ "202" ], @@ -253,26 +123,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-2135\",\r\n \"name\": \"Default-EventHub-2135\",\r\n \"location\": \"australiaeast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-2742\",\r\n \"name\": \"Default-EventHub-2742\",\r\n \"location\": \"australiaeast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.EventHub/checkNameAvailability?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvY2hlY2tOYW1lQXZhaWxhYmlsaXR5P2FwaS12ZXJzaW9uPTIwMjEtMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.EventHub/checkNameAvailability?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvY2hlY2tOYW1lQXZhaWxhYmlsaXR5P2FwaS12ZXJzaW9uPTIwMjEtMTEtMDE=", "RequestMethod": "POST", - "RequestBody": "{\r\n \"name\": \"sdk-NS-2626\"\r\n}", + "RequestBody": "{\r\n \"name\": \"sdk-NS-6459\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "da81718f-a857-47a1-a6c8-b44cabcc1efa" + "edf5f7e4-0a20-4238-ab11-f5017972a7c0" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -285,27 +155,30 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:37:48 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "a8150236-1477-4e27-83f0-dc070faab9c7_M9SN1_M9SN1" + "263df77f-4c54-4944-87d0-454c6f27ad31_M5SN1_M5SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1197" ], "x-ms-correlation-request-id": [ - "ccd1722b-72a7-4dae-82f8-00e925851444" + "ab0e454b-7f95-4cd0-9b65-c3092c76e962" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T042405Z:ccd1722b-72a7-4dae-82f8-00e925851444" + "SOUTHINDIA:20211115T023749Z:ab0e454b-7f95-4cd0-9b65-c3092c76e962" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -313,9 +186,6 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:24:05 GMT" - ], "Content-Length": [ "53" ], @@ -330,22 +200,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-2135/providers/Microsoft.EventHub/namespaces/sdk-NS-2626?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMjEzNS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTI2MjY/YXBpLXZlcnNpb249MjAyMS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-2742/providers/Microsoft.EventHub/namespaces/sdk-NS-6459?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMjc0Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTY0NTk/YXBpLXZlcnNpb249MjAyMS0xMS0wMQ==", "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": [ - "24101a86-a962-484f-9e33-7cde352a52a4" + "04bdd744-746b-489c-953d-fce46f5fd394" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -358,27 +228,30 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:37:53 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "7bfb4d72-97eb-4a28-bc00-60a53ecb5b35_M9SN1_M9SN1" + "81c71db1-8621-4346-bab2-2e4219c977ac_M2SN1_M2SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "49" + "48" ], "x-ms-correlation-request-id": [ - "6670786a-1cb7-4456-a4f2-5a4366ddaf40" + "4ffd6394-551d-482a-a836-18adcc41cf4c" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T042413Z:6670786a-1cb7-4456-a4f2-5a4366ddaf40" + "SOUTHINDIA:20211115T023754Z:4ffd6394-551d-482a-a836-18adcc41cf4c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -386,11 +259,8 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:24:13 GMT" - ], "Content-Length": [ - "734" + "736" ], "Content-Type": [ "application/json; charset=utf-8" @@ -399,47 +269,50 @@ "-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-2135/providers/Microsoft.EventHub/namespaces/sdk-NS-2626\",\r\n \"name\": \"sdk-NS-2626\",\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 \"disableLocalAuth\": false,\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-2626\",\r\n \"createdAt\": \"2021-09-24T04:24:11.93Z\",\r\n \"updatedAt\": \"2021-09-24T04:24:11.93Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-2626.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-2742/providers/Microsoft.EventHub/namespaces/sdk-NS-6459\",\r\n \"name\": \"sdk-NS-6459\",\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 \"disableLocalAuth\": false,\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-6459\",\r\n \"createdAt\": \"2021-11-15T02:37:52.557Z\",\r\n \"updatedAt\": \"2021-11-15T02:37:52.557Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-6459.servicebus.windows.net:443/\",\r\n \"status\": \"Activating\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-2135/providers/Microsoft.EventHub/namespaces/sdk-NS-2626?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMjEzNS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTI2MjY/YXBpLXZlcnNpb249MjAyMS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-2742/providers/Microsoft.EventHub/namespaces/sdk-NS-6459?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMjc0Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTY0NTk/YXBpLXZlcnNpb249MjAyMS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:38:23 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "986424d5-db10-47f8-9d8e-4b0d6a30a101_M9SN1_M9SN1" + "44872762-3e32-456c-b0c5-05370e74c1aa_M5SN1_M5SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11989" ], "x-ms-correlation-request-id": [ - "c6e2c96d-e45f-4d05-b8e9-97cf7ff6a3e9" + "7500583a-6bee-4747-be2a-c0aa170b8ab8" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T042444Z:c6e2c96d-e45f-4d05-b8e9-97cf7ff6a3e9" + "SOUTHINDIA:20211115T023824Z:7500583a-6bee-4747-be2a-c0aa170b8ab8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -447,11 +320,8 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:24:43 GMT" - ], "Content-Length": [ - "734" + "736" ], "Content-Type": [ "application/json; charset=utf-8" @@ -460,47 +330,50 @@ "-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-2135/providers/Microsoft.EventHub/namespaces/sdk-NS-2626\",\r\n \"name\": \"sdk-NS-2626\",\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 \"disableLocalAuth\": false,\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-2626\",\r\n \"createdAt\": \"2021-09-24T04:24:11.93Z\",\r\n \"updatedAt\": \"2021-09-24T04:24:11.93Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-2626.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-2742/providers/Microsoft.EventHub/namespaces/sdk-NS-6459\",\r\n \"name\": \"sdk-NS-6459\",\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 \"disableLocalAuth\": false,\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-6459\",\r\n \"createdAt\": \"2021-11-15T02:37:52.557Z\",\r\n \"updatedAt\": \"2021-11-15T02:37:52.557Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-6459.servicebus.windows.net:443/\",\r\n \"status\": \"Activating\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-2135/providers/Microsoft.EventHub/namespaces/sdk-NS-2626?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMjEzNS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTI2MjY/YXBpLXZlcnNpb249MjAyMS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-2742/providers/Microsoft.EventHub/namespaces/sdk-NS-6459?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMjc0Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTY0NTk/YXBpLXZlcnNpb249MjAyMS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:38:54 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "efbc6846-b08d-4e95-92fc-f729739a48c1_M0SN1_M0SN1" + "4bd48cc3-6259-42dc-8d51-f27e18ee7789_M5SN1_M5SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11988" ], "x-ms-correlation-request-id": [ - "fefd1257-5f25-4e9a-a2bc-6df3c4743d48" + "48ebd44c-b678-46fd-9205-affc11c09831" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T042514Z:fefd1257-5f25-4e9a-a2bc-6df3c4743d48" + "SOUTHINDIA:20211115T023854Z:48ebd44c-b678-46fd-9205-affc11c09831" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -508,9 +381,6 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:25:13 GMT" - ], "Content-Length": [ "733" ], @@ -521,53 +391,56 @@ "-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-2135/providers/Microsoft.EventHub/namespaces/sdk-NS-2626\",\r\n \"name\": \"sdk-NS-2626\",\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 \"disableLocalAuth\": false,\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-2626\",\r\n \"createdAt\": \"2021-09-24T04:24:11.93Z\",\r\n \"updatedAt\": \"2021-09-24T04:25:03.173Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-2626.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-2742/providers/Microsoft.EventHub/namespaces/sdk-NS-6459\",\r\n \"name\": \"sdk-NS-6459\",\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 \"disableLocalAuth\": false,\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-6459\",\r\n \"createdAt\": \"2021-11-15T02:37:52.557Z\",\r\n \"updatedAt\": \"2021-11-15T02:38:38.86Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-6459.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-2135/providers/Microsoft.EventHub/namespaces/sdk-NS-2626?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMjEzNS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTI2MjY/YXBpLXZlcnNpb249MjAyMS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-2742/providers/Microsoft.EventHub/namespaces/sdk-NS-6459?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMjc0Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTY0NTk/YXBpLXZlcnNpb249MjAyMS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "df156900-3b56-442d-a0c7-ffdbf4b0accb" + "d6b932db-0dd6-4b3a-a02f-6296f721b869" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:38:59 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "f6645e8a-13c1-42a7-9daf-b996d140d9a6_M0SN1_M0SN1" + "489ae57b-aa97-4fbe-9732-01930cb56253_M5SN1_M5SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11987" ], "x-ms-correlation-request-id": [ - "35f61acd-6e7a-4fd7-ab39-54a08449a464" + "10fca21e-def9-459e-89e0-905d6f7779ab" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T042519Z:35f61acd-6e7a-4fd7-ab39-54a08449a464" + "SOUTHINDIA:20211115T023900Z:10fca21e-def9-459e-89e0-905d6f7779ab" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -575,9 +448,6 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:25:18 GMT" - ], "Content-Length": [ "733" ], @@ -588,53 +458,56 @@ "-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-2135/providers/Microsoft.EventHub/namespaces/sdk-NS-2626\",\r\n \"name\": \"sdk-NS-2626\",\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 \"disableLocalAuth\": false,\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-2626\",\r\n \"createdAt\": \"2021-09-24T04:24:11.93Z\",\r\n \"updatedAt\": \"2021-09-24T04:25:03.173Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-2626.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-2742/providers/Microsoft.EventHub/namespaces/sdk-NS-6459\",\r\n \"name\": \"sdk-NS-6459\",\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 \"disableLocalAuth\": false,\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-6459\",\r\n \"createdAt\": \"2021-11-15T02:37:52.557Z\",\r\n \"updatedAt\": \"2021-11-15T02:38:38.86Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-6459.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-2135/providers/Microsoft.EventHub/namespaces/sdk-NS-2626?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMjEzNS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTI2MjY/YXBpLXZlcnNpb249MjAyMS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-2742/providers/Microsoft.EventHub/namespaces/sdk-NS-6459?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMjc0Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTY0NTk/YXBpLXZlcnNpb249MjAyMS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4041af75-9045-4748-a3b9-227e79d06fa1" + "4d9cd685-6e5e-4801-84b0-04a293584b91" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:39:00 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "125e2d60-2703-446e-9a66-f81d894cc9bf_M0SN1_M0SN1" + "3362c43f-6211-4a12-935c-c2bd7acc8704_M5SN1_M5SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11986" ], "x-ms-correlation-request-id": [ - "99bc8636-921f-4bc9-aa56-12a9b9efaaa1" + "b216067a-1d8e-40ec-b60b-e7c5f730a55e" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T042519Z:99bc8636-921f-4bc9-aa56-12a9b9efaaa1" + "SOUTHINDIA:20211115T023900Z:b216067a-1d8e-40ec-b60b-e7c5f730a55e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -642,9 +515,6 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:25:19 GMT" - ], "Content-Length": [ "733" ], @@ -655,26 +525,26 @@ "-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-2135/providers/Microsoft.EventHub/namespaces/sdk-NS-2626\",\r\n \"name\": \"sdk-NS-2626\",\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 \"disableLocalAuth\": false,\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-2626\",\r\n \"createdAt\": \"2021-09-24T04:24:11.93Z\",\r\n \"updatedAt\": \"2021-09-24T04:25:03.173Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-2626.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-2742/providers/Microsoft.EventHub/namespaces/sdk-NS-6459\",\r\n \"name\": \"sdk-NS-6459\",\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 \"disableLocalAuth\": false,\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-6459\",\r\n \"createdAt\": \"2021-11-15T02:37:52.557Z\",\r\n \"updatedAt\": \"2021-11-15T02:38:38.86Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-6459.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-2135/providers/Microsoft.EventHub/namespaces/sdk-NS-2626/authorizationRules/sdk-Authrules-6504?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMjEzNS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTI2MjYvYXV0aG9yaXphdGlvblJ1bGVzL3Nkay1BdXRocnVsZXMtNjUwND9hcGktdmVyc2lvbj0yMDIxLTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-2742/providers/Microsoft.EventHub/namespaces/sdk-NS-6459/authorizationRules/sdk-Authrules-2770?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMjc0Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTY0NTkvYXV0aG9yaXphdGlvblJ1bGVzL3Nkay1BdXRocnVsZXMtMjc3MD9hcGktdmVyc2lvbj0yMDIxLTExLTAx", "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": [ - "46666c7d-8849-4ddc-981d-0af9086c28db" + "7a90d4d4-6b7d-4e2c-b683-fb4674186d53" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -687,27 +557,30 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:39:07 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "6600cc36-fbec-4e8e-808e-7b210463ec6e_M0SN1_M0SN1" + "adb400f0-c87d-4dc6-8852-03c089ba89f2_M5SN1_M5SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1196" ], "x-ms-correlation-request-id": [ - "52aff0c4-cf47-4e9d-b4e1-fb98ddf2f060" + "6f8673fb-c6fe-4dbc-8e0f-b5b00e0a9906" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T042526Z:52aff0c4-cf47-4e9d-b4e1-fb98ddf2f060" + "SOUTHINDIA:20211115T023907Z:6f8673fb-c6fe-4dbc-8e0f-b5b00e0a9906" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -715,9 +588,6 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:25:26 GMT" - ], "Content-Length": [ "343" ], @@ -728,26 +598,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-2135/providers/Microsoft.EventHub/namespaces/sdk-NS-2626/authorizationRules/sdk-Authrules-6504\",\r\n \"name\": \"sdk-Authrules-6504\",\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-2742/providers/Microsoft.EventHub/namespaces/sdk-NS-6459/authorizationRules/sdk-Authrules-2770\",\r\n \"name\": \"sdk-Authrules-2770\",\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/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-2135/providers/Microsoft.EventHub/namespaces/sdk-NS-2626/authorizationRules/sdk-Authrules-6504?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMjEzNS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTI2MjYvYXV0aG9yaXphdGlvblJ1bGVzL3Nkay1BdXRocnVsZXMtNjUwND9hcGktdmVyc2lvbj0yMDIxLTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-2742/providers/Microsoft.EventHub/namespaces/sdk-NS-6459/authorizationRules/sdk-Authrules-2770?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMjc0Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTY0NTkvYXV0aG9yaXphdGlvblJ1bGVzL3Nkay1BdXRocnVsZXMtMjc3MD9hcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"rights\": [\r\n \"Listen\"\r\n ]\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "992dd9d8-9fbd-4b5e-9235-f885717b53fb" + "ae47b22f-6ce3-47c6-b9d0-4bb293c9f306" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -760,27 +630,30 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:39:16 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "42a47d75-eb61-464f-93f3-5828f69b9bee_M7SN1_M7SN1" + "4ab7af22-1571-4a11-b50f-72efb56619e1_M5SN1_M5SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1195" ], "x-ms-correlation-request-id": [ - "b93639b0-f092-436d-9060-4ced6ec15e9d" + "63fb5088-b16c-42ad-9855-3783e157339c" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T042535Z:b93639b0-f092-436d-9060-4ced6ec15e9d" + "SOUTHINDIA:20211115T023917Z:63fb5088-b16c-42ad-9855-3783e157339c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -788,9 +661,6 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:25:35 GMT" - ], "Content-Length": [ "336" ], @@ -801,53 +671,56 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-2135/providers/Microsoft.EventHub/namespaces/sdk-NS-2626/authorizationRules/sdk-Authrules-6504\",\r\n \"name\": \"sdk-Authrules-6504\",\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-2742/providers/Microsoft.EventHub/namespaces/sdk-NS-6459/authorizationRules/sdk-Authrules-2770\",\r\n \"name\": \"sdk-Authrules-2770\",\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/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-2135/providers/Microsoft.EventHub/namespaces/sdk-NS-2626/authorizationRules/RootManageSharedAccessKey?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMjEzNS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTI2MjYvYXV0aG9yaXphdGlvblJ1bGVzL1Jvb3RNYW5hZ2VTaGFyZWRBY2Nlc3NLZXk/YXBpLXZlcnNpb249MjAyMS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-2742/providers/Microsoft.EventHub/namespaces/sdk-NS-6459/authorizationRules/RootManageSharedAccessKey?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMjc0Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTY0NTkvYXV0aG9yaXphdGlvblJ1bGVzL1Jvb3RNYW5hZ2VTaGFyZWRBY2Nlc3NLZXk/YXBpLXZlcnNpb249MjAyMS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ad2ecbe9-510b-438a-a35a-50b783ee72dd" + "1856050e-6b3e-4937-9b8b-f367636a0fd9" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:39:08 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "4473639a-9e4f-44a1-a25a-6ea04cb6f96a_M0SN1_M0SN1" + "46d52447-6b37-40ce-8d35-38285c70d5e1_M5SN1_M5SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11985" ], "x-ms-correlation-request-id": [ - "6f571c84-0737-43e9-b29c-a84191b84332" + "228a5d31-65bd-4f4a-88c2-1d0f6e3e75b6" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T042527Z:6f571c84-0737-43e9-b29c-a84191b84332" + "SOUTHINDIA:20211115T023908Z:228a5d31-65bd-4f4a-88c2-1d0f6e3e75b6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -855,9 +728,6 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:25:26 GMT" - ], "Content-Length": [ "366" ], @@ -868,53 +738,56 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-2135/providers/Microsoft.EventHub/namespaces/sdk-NS-2626/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-2742/providers/Microsoft.EventHub/namespaces/sdk-NS-6459/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/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-2135/providers/Microsoft.EventHub/namespaces/sdk-NS-2626/authorizationRules/sdk-Authrules-6504?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMjEzNS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTI2MjYvYXV0aG9yaXphdGlvblJ1bGVzL3Nkay1BdXRocnVsZXMtNjUwND9hcGktdmVyc2lvbj0yMDIxLTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-2742/providers/Microsoft.EventHub/namespaces/sdk-NS-6459/authorizationRules/sdk-Authrules-2770?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMjc0Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTY0NTkvYXV0aG9yaXphdGlvblJ1bGVzL3Nkay1BdXRocnVsZXMtMjc3MD9hcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0119044e-9815-4719-8d2b-144ff6fad542" + "78ce55aa-db26-4b6c-87c3-e47ac65231d2" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:39:09 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "f5279b7d-2fcb-4dfd-9dcb-09409714fbea_M0SN1_M0SN1" + "5b93b68d-0b7a-4243-8c13-a35fffb3138f_M5SN1_M5SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11984" ], "x-ms-correlation-request-id": [ - "836c15a4-276a-42a5-a384-1c87453adee9" + "31589069-c6da-4fe9-b2e5-d55844ac74c1" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T042527Z:836c15a4-276a-42a5-a384-1c87453adee9" + "SOUTHINDIA:20211115T023909Z:31589069-c6da-4fe9-b2e5-d55844ac74c1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -922,9 +795,6 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:25:27 GMT" - ], "Content-Length": [ "343" ], @@ -935,53 +805,56 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-2135/providers/Microsoft.EventHub/namespaces/sdk-NS-2626/authorizationRules/sdk-Authrules-6504\",\r\n \"name\": \"sdk-Authrules-6504\",\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-2742/providers/Microsoft.EventHub/namespaces/sdk-NS-6459/authorizationRules/sdk-Authrules-2770\",\r\n \"name\": \"sdk-Authrules-2770\",\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/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-2135/providers/Microsoft.EventHub/namespaces/sdk-NS-2626/authorizationRules/sdk-Authrules-6504?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMjEzNS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTI2MjYvYXV0aG9yaXphdGlvblJ1bGVzL3Nkay1BdXRocnVsZXMtNjUwND9hcGktdmVyc2lvbj0yMDIxLTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-2742/providers/Microsoft.EventHub/namespaces/sdk-NS-6459/authorizationRules/sdk-Authrules-2770?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMjc0Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTY0NTkvYXV0aG9yaXphdGlvblJ1bGVzL3Nkay1BdXRocnVsZXMtMjc3MD9hcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "22ac945e-dca3-4a05-b667-aed1017e4669" + "53ec7090-1476-4963-9cbc-04f7b968bfec" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:39:17 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "11274cb2-4b35-4276-b0be-1955db650358_M7SN1_M7SN1" + "b8fc2002-1c76-4304-8455-cab6581d77a6_M5SN1_M5SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11982" ], "x-ms-correlation-request-id": [ - "6abd9334-72a2-4220-9d26-fd90cf567977" + "662d3863-21fe-40d2-9ba7-61ad3db4df9f" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T042536Z:6abd9334-72a2-4220-9d26-fd90cf567977" + "SOUTHINDIA:20211115T023918Z:662d3863-21fe-40d2-9ba7-61ad3db4df9f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -989,9 +862,6 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:25:36 GMT" - ], "Content-Length": [ "336" ], @@ -1002,53 +872,56 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-2135/providers/Microsoft.EventHub/namespaces/sdk-NS-2626/authorizationRules/sdk-Authrules-6504\",\r\n \"name\": \"sdk-Authrules-6504\",\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-2742/providers/Microsoft.EventHub/namespaces/sdk-NS-6459/authorizationRules/sdk-Authrules-2770\",\r\n \"name\": \"sdk-Authrules-2770\",\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/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-2135/providers/Microsoft.EventHub/namespaces/sdk-NS-2626/authorizationRules?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMjEzNS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTI2MjYvYXV0aG9yaXphdGlvblJ1bGVzP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-2742/providers/Microsoft.EventHub/namespaces/sdk-NS-6459/authorizationRules?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMjc0Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTY0NTkvYXV0aG9yaXphdGlvblJ1bGVzP2FwaS12ZXJzaW9uPTIwMjEtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "66062186-2e9f-4f7c-8899-fe8e08a4ed22" + "6d1bbc3e-c1cf-4b74-bdf8-c363f2de212d" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:39:10 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "f89872d2-f894-4230-8a7a-54e4968d7a98_M0SN1_M0SN1" + "d06e8e9a-6244-4227-b6e7-865e8e5ba0b9_M5SN1_M5SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11983" ], "x-ms-correlation-request-id": [ - "eb43606f-13be-4aa0-b10e-539d555ab459" + "6d69fb14-a2e6-4a5e-bdee-e35d576e7dee" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T042528Z:eb43606f-13be-4aa0-b10e-539d555ab459" + "SOUTHINDIA:20211115T023910Z:6d69fb14-a2e6-4a5e-bdee-e35d576e7dee" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1056,9 +929,6 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:25:28 GMT" - ], "Content-Length": [ "722" ], @@ -1069,53 +939,56 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-2135/providers/Microsoft.EventHub/namespaces/sdk-NS-2626/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-2135/providers/Microsoft.EventHub/namespaces/sdk-NS-2626/authorizationRules/sdk-Authrules-6504\",\r\n \"name\": \"sdk-Authrules-6504\",\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-2742/providers/Microsoft.EventHub/namespaces/sdk-NS-6459/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-2742/providers/Microsoft.EventHub/namespaces/sdk-NS-6459/authorizationRules/sdk-Authrules-2770\",\r\n \"name\": \"sdk-Authrules-2770\",\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/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-2135/providers/Microsoft.EventHub/namespaces/sdk-NS-2626/authorizationRules/sdk-Authrules-6504/listKeys?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMjEzNS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTI2MjYvYXV0aG9yaXphdGlvblJ1bGVzL3Nkay1BdXRocnVsZXMtNjUwNC9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDIxLTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-2742/providers/Microsoft.EventHub/namespaces/sdk-NS-6459/authorizationRules/sdk-Authrules-2770/listKeys?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMjc0Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTY0NTkvYXV0aG9yaXphdGlvblJ1bGVzL3Nkay1BdXRocnVsZXMtMjc3MC9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2efb8baf-7d25-4433-8e6c-19c3c5e04297" + "99ce30eb-471c-4d65-8068-9fbb1d517068" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:39:18 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "868ca834-0221-4ae8-9605-3153bdcb3abe_M7SN1_M7SN1" + "95cc9686-e2da-4153-9031-6a17027ecaa5_M5SN1_M5SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1196" ], "x-ms-correlation-request-id": [ - "10c65628-aa57-40a7-98d6-d6b784b4130e" + "6bd83bce-f294-4f9a-beb8-5ea6bde175ae" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T042537Z:10c65628-aa57-40a7-98d6-d6b784b4130e" + "SOUTHINDIA:20211115T023919Z:6bd83bce-f294-4f9a-beb8-5ea6bde175ae" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1123,9 +996,6 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:25:36 GMT" - ], "Content-Length": [ "512" ], @@ -1136,26 +1006,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"primaryConnectionString\": \"Endpoint=sb://sdk-ns-2626.servicebus.windows.net/;SharedAccessKeyName=sdk-Authrules-6504;SharedAccessKey=fZWNiRLmhCJODeRoPYuk9uKnJ5iDgKwAjgmKqVxto8s=\",\r\n \"secondaryConnectionString\": \"Endpoint=sb://sdk-ns-2626.servicebus.windows.net/;SharedAccessKeyName=sdk-Authrules-6504;SharedAccessKey=UIByMEH/IVFoaJF2pmK5N1h+1ighRczvMbk7bk6g3wc=\",\r\n \"primaryKey\": \"fZWNiRLmhCJODeRoPYuk9uKnJ5iDgKwAjgmKqVxto8s=\",\r\n \"secondaryKey\": \"UIByMEH/IVFoaJF2pmK5N1h+1ighRczvMbk7bk6g3wc=\",\r\n \"keyName\": \"sdk-Authrules-6504\"\r\n}", + "ResponseBody": "{\r\n \"primaryConnectionString\": \"Endpoint=sb://sdk-ns-6459.servicebus.windows.net/;SharedAccessKeyName=sdk-Authrules-2770;SharedAccessKey=kEEGKrC+SDtY3rZN8iEJPceB6WcEJoD5nNk3Nuv9QsY=\",\r\n \"secondaryConnectionString\": \"Endpoint=sb://sdk-ns-6459.servicebus.windows.net/;SharedAccessKeyName=sdk-Authrules-2770;SharedAccessKey=5pHJwx4VJoQfbTmR4f/3wwOvuvnSaDZgb4nxVsRJELo=\",\r\n \"primaryKey\": \"kEEGKrC+SDtY3rZN8iEJPceB6WcEJoD5nNk3Nuv9QsY=\",\r\n \"secondaryKey\": \"5pHJwx4VJoQfbTmR4f/3wwOvuvnSaDZgb4nxVsRJELo=\",\r\n \"keyName\": \"sdk-Authrules-2770\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-2135/providers/Microsoft.EventHub/namespaces/sdk-NS-2626/authorizationRules/sdk-Authrules-6504/regenerateKeys?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMjEzNS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTI2MjYvYXV0aG9yaXphdGlvblJ1bGVzL3Nkay1BdXRocnVsZXMtNjUwNC9yZWdlbmVyYXRlS2V5cz9hcGktdmVyc2lvbj0yMDIxLTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-2742/providers/Microsoft.EventHub/namespaces/sdk-NS-6459/authorizationRules/sdk-Authrules-2770/regenerateKeys?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMjc0Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTY0NTkvYXV0aG9yaXphdGlvblJ1bGVzL3Nkay1BdXRocnVsZXMtMjc3MC9yZWdlbmVyYXRlS2V5cz9hcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "POST", "RequestBody": "{\r\n \"keyType\": \"PrimaryKey\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "b7ee989f-a7af-4baf-af85-5af9cb7ef9dd" + "5ae9f697-cfa6-4930-9e42-767978a638e8" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1168,27 +1038,30 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:39:25 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "71bc27bc-192f-44e3-86b3-81f4e4bec966_M7SN1_M7SN1" + "6cef932f-0851-493b-88da-5f40f6a861be_M5SN1_M5SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1195" ], "x-ms-correlation-request-id": [ - "4954ffcf-0326-4acf-8bbb-88f306a2d5c8" + "645a93d0-1559-42ef-84d1-83d5086f9c77" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T042543Z:4954ffcf-0326-4acf-8bbb-88f306a2d5c8" + "SOUTHINDIA:20211115T023925Z:645a93d0-1559-42ef-84d1-83d5086f9c77" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1196,9 +1069,6 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:25:43 GMT" - ], "Content-Length": [ "512" ], @@ -1209,53 +1079,56 @@ "-1" ] }, - "ResponseBody": "{\r\n \"primaryConnectionString\": \"Endpoint=sb://sdk-ns-2626.servicebus.windows.net/;SharedAccessKeyName=sdk-Authrules-6504;SharedAccessKey=9CnkpDUnzJx/nOa5Sy455dzp/v48x9oZ66d+uxriHiw=\",\r\n \"secondaryConnectionString\": \"Endpoint=sb://sdk-ns-2626.servicebus.windows.net/;SharedAccessKeyName=sdk-Authrules-6504;SharedAccessKey=UIByMEH/IVFoaJF2pmK5N1h+1ighRczvMbk7bk6g3wc=\",\r\n \"primaryKey\": \"9CnkpDUnzJx/nOa5Sy455dzp/v48x9oZ66d+uxriHiw=\",\r\n \"secondaryKey\": \"UIByMEH/IVFoaJF2pmK5N1h+1ighRczvMbk7bk6g3wc=\",\r\n \"keyName\": \"sdk-Authrules-6504\"\r\n}", + "ResponseBody": "{\r\n \"primaryConnectionString\": \"Endpoint=sb://sdk-ns-6459.servicebus.windows.net/;SharedAccessKeyName=sdk-Authrules-2770;SharedAccessKey=P6kBE/S+6NIVqWKB49s+eFcyQ5upwWRAv6LkWIVl5o4=\",\r\n \"secondaryConnectionString\": \"Endpoint=sb://sdk-ns-6459.servicebus.windows.net/;SharedAccessKeyName=sdk-Authrules-2770;SharedAccessKey=5pHJwx4VJoQfbTmR4f/3wwOvuvnSaDZgb4nxVsRJELo=\",\r\n \"primaryKey\": \"P6kBE/S+6NIVqWKB49s+eFcyQ5upwWRAv6LkWIVl5o4=\",\r\n \"secondaryKey\": \"5pHJwx4VJoQfbTmR4f/3wwOvuvnSaDZgb4nxVsRJELo=\",\r\n \"keyName\": \"sdk-Authrules-2770\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-2135/providers/Microsoft.EventHub/namespaces/sdk-NS-2626/authorizationRules/sdk-Authrules-6504?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMjEzNS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTI2MjYvYXV0aG9yaXphdGlvblJ1bGVzL3Nkay1BdXRocnVsZXMtNjUwND9hcGktdmVyc2lvbj0yMDIxLTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-2742/providers/Microsoft.EventHub/namespaces/sdk-NS-6459/authorizationRules/sdk-Authrules-2770?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMjc0Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTY0NTkvYXV0aG9yaXphdGlvblJ1bGVzL3Nkay1BdXRocnVsZXMtMjc3MD9hcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c75b6f31-22c4-4eeb-a48f-8e31af0acc51" + "9de3e39c-d3b5-4224-aed1-454b6e96a1a3" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:39:32 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "e1074069-993b-4c8f-995e-c62c83399d6a_M7SN1_M7SN1" + "9cd2c104-cc2c-43e2-850f-7597120df6e4_M5SN1_M5SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" + "14996" ], "x-ms-correlation-request-id": [ - "7643c87e-68c3-45bf-9766-1528e8a91803" + "83b7a889-cf2f-4059-a4d9-3ec69d7dbcd1" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T042551Z:7643c87e-68c3-45bf-9766-1528e8a91803" + "SOUTHINDIA:20211115T023933Z:83b7a889-cf2f-4059-a4d9-3ec69d7dbcd1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1263,66 +1136,66 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:25:50 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-2135/providers/Microsoft.EventHub/namespaces/sdk-NS-2626?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMjEzNS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTI2MjY/YXBpLXZlcnNpb249MjAyMS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-2742/providers/Microsoft.EventHub/namespaces/sdk-NS-6459?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMjc0Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTY0NTk/YXBpLXZlcnNpb249MjAyMS0xMS0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3b10297f-9b1a-49ee-bff2-f3a5f49a385f" + "131da44d-6691-4c61-86f6-f7c42b0470e6" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:39:39 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-2135/providers/Microsoft.EventHub/namespaces/sdk-NS-2626/operationresults/sdk-NS-2626?api-version=2021-06-01-preview" + "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-2742/providers/Microsoft.EventHub/namespaces/sdk-NS-6459/operationresults/sdk-NS-6459?api-version=2021-11-01" + ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "90a485a5-645a-4816-aec4-53cdc4a4451f_M7SN1_M7SN1" + "a8e83d29-f5f8-4b45-b92a-84e4d7d5f92f_M5SN1_M5SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14998" + "14995" ], "x-ms-correlation-request-id": [ - "628b7650-e134-43aa-b560-633e0328b8b7" + "83950b85-6025-4bcf-9121-3bec4367645b" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T042557Z:628b7650-e134-43aa-b560-633e0328b8b7" + "SOUTHINDIA:20211115T023939Z:83950b85-6025-4bcf-9121-3bec4367645b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1330,57 +1203,57 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:25:57 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-2135/providers/Microsoft.EventHub/namespaces/sdk-NS-2626/operationresults/sdk-NS-2626?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMjEzNS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTI2MjYvb3BlcmF0aW9ucmVzdWx0cy9zZGstTlMtMjYyNj9hcGktdmVyc2lvbj0yMDIxLTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-2742/providers/Microsoft.EventHub/namespaces/sdk-NS-6459/operationresults/sdk-NS-6459?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMjc0Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTY0NTkvb3BlcmF0aW9ucmVzdWx0cy9zZGstTlMtNjQ1OT9hcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:40:10 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "87dd13d4-2667-49a2-92b2-013d3591c1f5_M7SN1_M7SN1" + "b1622c65-6cbb-4055-9ca0-dd33a08ada12_M2SN1_M2SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11981" ], "x-ms-correlation-request-id": [ - "823fbe04-c65b-477b-88f6-18ba5c30c58b" + "15db42ec-ff1c-4912-a538-1c8be7d7be8d" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T042627Z:823fbe04-c65b-477b-88f6-18ba5c30c58b" + "SOUTHINDIA:20211115T024010Z:15db42ec-ff1c-4912-a538-1c8be7d7be8d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1388,57 +1261,57 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:26:27 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-2135/providers/Microsoft.EventHub/namespaces/sdk-NS-2626/operationresults/sdk-NS-2626?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMjEzNS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTI2MjYvb3BlcmF0aW9ucmVzdWx0cy9zZGstTlMtMjYyNj9hcGktdmVyc2lvbj0yMDIxLTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-2742/providers/Microsoft.EventHub/namespaces/sdk-NS-6459/operationresults/sdk-NS-6459?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMjc0Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTY0NTkvb3BlcmF0aW9ucmVzdWx0cy9zZGstTlMtNjQ1OT9hcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:40:11 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "6c6b197f-6c2e-41cb-a37d-eadf9b5a75ce_M7SN1_M7SN1" + "b5de6f80-e943-4f81-8e56-ecd7e9627003_M1SN1_M1SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11980" ], "x-ms-correlation-request-id": [ - "c980f5fe-b3ae-4988-9e17-7785b20ed861" + "bcb14f63-b7ff-4a1d-a79d-fd32bf5aae32" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T042627Z:c980f5fe-b3ae-4988-9e17-7785b20ed861" + "SOUTHINDIA:20211115T024011Z:bcb14f63-b7ff-4a1d-a79d-fd32bf5aae32" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1446,93 +1319,27 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:26:27 GMT" - ], - "Expires": [ - "-1" - ], "Content-Length": [ "0" - ] - }, - "ResponseBody": "", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/Default-EventHub-2135?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlZ3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMjEzNT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", - "RequestMethod": "DELETE", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "198b7817-da35-4cbd-860b-01d702930077" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.27817.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1ERUZBVUxUOjJERVZFTlRIVUI6MkQyMTM1LUFVU1RSQUxJQUVBU1QiLCJqb2JMb2NhdGlvbiI6ImF1c3RyYWxpYWVhc3QifQ?api-version=2015-11-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" - ], - "x-ms-request-id": [ - "80a14bd6-7bd6-4286-925e-807745dae100" - ], - "x-ms-correlation-request-id": [ - "80a14bd6-7bd6-4286-925e-807745dae100" - ], - "x-ms-routing-request-id": [ - "WESTUS:20210924T042631Z:80a14bd6-7bd6-4286-925e-807745dae100" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 24 Sep 2021 04:26:31 GMT" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", - "StatusCode": 202 + "StatusCode": 200 } ], "Names": { "NamespaceCreateGetUpdateDeleteAuthorizationRules": [ - "Default-EventHub-2135", - "sdk-NS-2626", - "sdk-Authrules-6504" + "Default-EventHub-2742", + "sdk-NS-6459", + "sdk-Authrules-2770" ] }, "Variables": { "SubscriptionId": "326100e2-f69d-4268-8503-075374f62b6e", - "CreatePrimaryKey": "KdevgqtvAmL8SjGf56vtZDheDd26Bgua7U6ITTr7m50=", - "UpdatePrimaryKey": "gjlphz/OzMCJo3PbxyTm4itYV5ar+0Ip2g2dt1pPT+s=" + "CreatePrimaryKey": "YbOHpqUzDo5cmd7WjQ9ygZ4ac2J3Ox+mjSPicoAjXxU=", + "UpdatePrimaryKey": "4tQAf9hL4IyPs4R6VYqZrJcf1SWrQI6sxHc2dlpZXbo=" } } \ No newline at end of file diff --git a/sdk/eventhub/Microsoft.Azure.Management.EventHub/tests/SessionRecords/ScenarioTests/NamespaceCreateGetUpdateDelete_list.json b/sdk/eventhub/Microsoft.Azure.Management.EventHub/tests/SessionRecords/ScenarioTests/NamespaceCreateGetUpdateDelete_list.json index 74e7124ab59a..a887711e4a32 100644 --- a/sdk/eventhub/Microsoft.Azure.Management.EventHub/tests/SessionRecords/ScenarioTests/NamespaceCreateGetUpdateDelete_list.json +++ b/sdk/eventhub/Microsoft.Azure.Management.EventHub/tests/SessionRecords/ScenarioTests/NamespaceCreateGetUpdateDelete_list.json @@ -1,21 +1,84 @@ { "Entries": [ { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/Default-EventHub-2414?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlZ3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMjQxND9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/Default-EventHub-8610?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlZ3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItODYxMD9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "83b3c9c5-88e4-4d88-b9bf-ac010c4a5916" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 15 Nov 2021 02:52:04 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1ERUZBVUxUOjJERVZFTlRIVUI6MkQ4NjEwLUFVU1RSQUxJQUVBU1QiLCJqb2JMb2NhdGlvbiI6ImF1c3RyYWxpYWVhc3QifQ?api-version=2015-11-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-request-id": [ + "5fd5d118-6474-4b0b-9603-af20d711bc13" + ], + "x-ms-correlation-request-id": [ + "5fd5d118-6474-4b0b-9603-af20d711bc13" + ], + "x-ms-routing-request-id": [ + "SOUTHINDIA:20211115T025205Z:5fd5d118-6474-4b0b-9603-af20d711bc13" + ], + "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-2040?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlZ3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMjA0MD9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "bf5a6bc8-58b9-4350-a42e-3a1992ef0923" + "1ca00fec-9358-49c5-b4cd-bcdd0456872c" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", + "OSVersion/Microsoft.Windows.10.0.22000.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ], "Content-Type": [ @@ -29,6 +92,9 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:52:05 GMT" + ], "Pragma": [ "no-cache" ], @@ -36,13 +102,13 @@ "1199" ], "x-ms-request-id": [ - "069d5c98-3ec6-4545-b3b3-2a84891aef85" + "823042ed-5c13-445f-a77e-4b4ff047173a" ], "x-ms-correlation-request-id": [ - "069d5c98-3ec6-4545-b3b3-2a84891aef85" + "823042ed-5c13-445f-a77e-4b4ff047173a" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T043957Z:069d5c98-3ec6-4545-b3b3-2a84891aef85" + "SOUTHINDIA:20211115T025206Z:823042ed-5c13-445f-a77e-4b4ff047173a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -50,9 +116,6 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:39:56 GMT" - ], "Content-Length": [ "195" ], @@ -63,53 +126,56 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-2414\",\r\n \"name\": \"Default-EventHub-2414\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-2040\",\r\n \"name\": \"Default-EventHub-2040\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/providers/Microsoft.EventHub/operations?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIxLTA2LTAxLXByZXZpZXc=", + "RequestUri": "/providers/Microsoft.EventHub/operations?api-version=2021-11-01", + "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "811884ff-b2b2-42b5-b832-d5e69c16f0bf" + "ca7adb33-4f54-484d-b7e3-8e6e17eb7627" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:52:06 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "2ebd6fac-42f5-4cc4-a276-4bd2c8d3c055_M1SN1_M1SN1" + "aea02645-d5b5-45c7-aa5d-fe1495f1e7da_M1CH3_M1CH3" ], "Server-SB": [ - "Service-Bus-Resource-Provider/SN1" - ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" + "Service-Bus-Resource-Provider/CH3" ], "x-ms-ratelimit-remaining-tenant-reads": [ "11999" ], "x-ms-correlation-request-id": [ - "2f32bd7c-c4e8-4991-96ae-4fbfeefe25d3" + "6a68fbf8-6410-431b-b46e-bdca09579fcf" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T043957Z:2f32bd7c-c4e8-4991-96ae-4fbfeefe25d3" + "SOUTHINDIA:20211115T025206Z:6a68fbf8-6410-431b-b46e-bdca09579fcf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -117,11 +183,8 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:39:56 GMT" - ], "Content-Length": [ - "48635" + "48935" ], "Content-Type": [ "application/json; charset=utf-8" @@ -130,26 +193,26 @@ "-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 \"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/schemagroups/write\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"SchemaGroup\",\r\n \"operation\": \"Create or Update SchemaGroup\",\r\n \"description\": \"Create or Update SchemaGroup properties.\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/schemagroups/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"SchemaGroup\",\r\n \"operation\": \"Get SchemaGroup\",\r\n \"description\": \"Get list of SchemaGroup Resource Descriptions\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/schemagroups/delete\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"SchemaGroup\",\r\n \"operation\": \"Delete SchemaGroup\",\r\n \"description\": \"Operation to delete SchemaGroup Resource\"\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 \"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 \"fillGapWithZero\": false\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 \"Minimum\",\r\n \"Maximum\"\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 \"name\": \"NamespaceCpuUsage\",\r\n \"displayName\": \"CPU\",\r\n \"displayDescription\": \"CPU usage metric for Premium SKU namespaces.\",\r\n \"unit\": \"Percent\",\r\n \"aggregationType\": \"Maximum\",\r\n \"internalMetricName\": \"NamespaceCpuUsage\",\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\": \"Replica\",\r\n \"isHidden\": true,\r\n \"defaultDimensionValues\": [\r\n {\r\n \"value\": \"Primary\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"supportedAggregationTypes\": [\r\n \"Maximum\",\r\n \"Minimum\",\r\n \"Average\"\r\n ],\r\n \"metricFilterPattern\": \"(?i)^premium$\",\r\n \"fillGapWithZero\": false\r\n },\r\n {\r\n \"name\": \"NamespaceMemoryUsage\",\r\n \"displayName\": \"Memory Usage\",\r\n \"displayDescription\": \"Memory usage metric for Premium SKU namespaces.\",\r\n \"unit\": \"Percent\",\r\n \"aggregationType\": \"Maximum\",\r\n \"internalMetricName\": \"NamespaceWorkingSet64\",\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\": \"Replica\",\r\n \"isHidden\": true,\r\n \"defaultDimensionValues\": [\r\n {\r\n \"value\": \"Primary\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"supportedAggregationTypes\": [\r\n \"Maximum\",\r\n \"Minimum\",\r\n \"Average\"\r\n ],\r\n \"metricFilterPattern\": \"(?i)^premium$\",\r\n \"fillGapWithZero\": false\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 \"lockAggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"fillGapWithZero\": false\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\",\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 \"Minimum\",\r\n \"Maximum\"\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/schemas/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"Schemas\",\r\n \"operation\": \"Retrieve schemas\",\r\n \"description\": \"Retrieve schemas\"\r\n },\r\n \"isDataAction\": true\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/schemas/write\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"Schemas\",\r\n \"operation\": \"Write schemas\",\r\n \"description\": \"Write schemas\"\r\n },\r\n \"isDataAction\": true\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/schemas/delete\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"Schemas\",\r\n \"operation\": \"Delete schemas\",\r\n \"description\": \"Delete schemas\"\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 \"name\": \"Microsoft.EventHub/namespaces/privateEndpointConnectionProxies/operationstatus/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"Non Resource Operation\",\r\n \"operation\": \"Private endpoint operation status\",\r\n \"description\": \"Get the status of an asynchronous private endpoint operation\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/privateEndpointConnections/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"Private Endpoint Connection\",\r\n \"operation\": \"Get Private Endpoint Connection\",\r\n \"description\": \"Get Private Endpoint Connection\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/privateEndpointConnections/write\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"Private Endpoint Connection\",\r\n \"operation\": \"Create or Update Private Endpoint Connection\",\r\n \"description\": \"Create or Update Private Endpoint Connection\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/privateEndpointConnections/delete\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"Private Endpoint Connection\",\r\n \"operation\": \"Removes Private Endpoint Connection\",\r\n \"description\": \"Removes Private Endpoint Connection\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/privateLinkResources/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"PrivateLinks\",\r\n \"operation\": \"Gets the resource types that support private endpoint connections\",\r\n \"description\": \"Gets the resource types that support private endpoint connections\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/privateEndpointConnections/operationstatus/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"Non Resource Operation\",\r\n \"operation\": \"Private endpoint operation status\",\r\n \"description\": \"Get the status of an asynchronous private endpoint operation\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/privateEndpointConnectionsApproval/action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"Private Endpoint Connection\",\r\n \"operation\": \"Approve Private Endpoint Connection\",\r\n \"description\": \"Approve Private Endpoint Connection\"\r\n },\r\n \"isDataAction\": false\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/schemagroups/write\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"SchemaGroup\",\r\n \"operation\": \"Create or Update SchemaGroup\",\r\n \"description\": \"Create or Update SchemaGroup properties.\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/schemagroups/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"SchemaGroup\",\r\n \"operation\": \"Get SchemaGroup\",\r\n \"description\": \"Get list of SchemaGroup Resource Descriptions\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/schemagroups/delete\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"SchemaGroup\",\r\n \"operation\": \"Delete SchemaGroup\",\r\n \"description\": \"Operation to delete SchemaGroup Resource\"\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\": \"Maximum\",\r\n \"internalMetricName\": \"NamespaceActiveConnections\",\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 \"supportedAggregationTypes\": [\r\n \"Maximum\",\r\n \"Minimum\",\r\n \"Average\"\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\": \"Maximum\",\r\n \"internalMetricName\": \"ConnectionOpen\",\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 \"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\": \"Maximum\",\r\n \"internalMetricName\": \"ConnectionClose\",\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 \"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 \"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 \"fillGapWithZero\": false\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 \"Minimum\",\r\n \"Maximum\"\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 \"name\": \"NamespaceCpuUsage\",\r\n \"displayName\": \"CPU\",\r\n \"displayDescription\": \"CPU usage metric for Premium SKU namespaces.\",\r\n \"unit\": \"Percent\",\r\n \"aggregationType\": \"Maximum\",\r\n \"internalMetricName\": \"NamespaceCpuUsage\",\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\": \"Replica\",\r\n \"isHidden\": true,\r\n \"defaultDimensionValues\": [\r\n {\r\n \"value\": \"Primary\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"supportedAggregationTypes\": [\r\n \"Maximum\",\r\n \"Minimum\",\r\n \"Average\"\r\n ],\r\n \"metricFilterPattern\": \"(?i)^premium$\",\r\n \"fillGapWithZero\": false\r\n },\r\n {\r\n \"name\": \"NamespaceMemoryUsage\",\r\n \"displayName\": \"Memory Usage\",\r\n \"displayDescription\": \"Memory usage metric for Premium SKU namespaces.\",\r\n \"unit\": \"Percent\",\r\n \"aggregationType\": \"Maximum\",\r\n \"internalMetricName\": \"NamespaceWorkingSet64\",\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\": \"Replica\",\r\n \"isHidden\": true,\r\n \"defaultDimensionValues\": [\r\n {\r\n \"value\": \"Primary\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"supportedAggregationTypes\": [\r\n \"Maximum\",\r\n \"Minimum\",\r\n \"Average\"\r\n ],\r\n \"metricFilterPattern\": \"(?i)^premium$\",\r\n \"fillGapWithZero\": false\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\": \"Maximum\",\r\n \"internalMetricName\": \"NamespaceActiveConnections\",\r\n \"isDimensionRequired\": false,\r\n \"resourceIdDimensionNameOverride\": \"ScaleUnit\",\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 \"supportedAggregationTypes\": [\r\n \"Maximum\",\r\n \"Minimum\",\r\n \"Average\"\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\": \"Maximum\",\r\n \"internalMetricName\": \"ConnectionOpen\",\r\n \"isDimensionRequired\": false,\r\n \"resourceIdDimensionNameOverride\": \"ScaleUnit\",\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 \"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\": \"Maximum\",\r\n \"internalMetricName\": \"ConnectionClose\",\r\n \"isDimensionRequired\": false,\r\n \"resourceIdDimensionNameOverride\": \"ScaleUnit\",\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 \"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 \"lockAggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"fillGapWithZero\": false\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\",\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 \"Minimum\",\r\n \"Maximum\"\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/schemas/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"Schemas\",\r\n \"operation\": \"Retrieve schemas\",\r\n \"description\": \"Retrieve schemas\"\r\n },\r\n \"isDataAction\": true\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/schemas/write\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"Schemas\",\r\n \"operation\": \"Write schemas\",\r\n \"description\": \"Write schemas\"\r\n },\r\n \"isDataAction\": true\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/schemas/delete\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"Schemas\",\r\n \"operation\": \"Delete schemas\",\r\n \"description\": \"Delete schemas\"\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 \"name\": \"Microsoft.EventHub/namespaces/privateEndpointConnectionProxies/operationstatus/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"Non Resource Operation\",\r\n \"operation\": \"Private endpoint operation status\",\r\n \"description\": \"Get the status of an asynchronous private endpoint operation\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/privateEndpointConnections/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"Private Endpoint Connection\",\r\n \"operation\": \"Get Private Endpoint Connection\",\r\n \"description\": \"Get Private Endpoint Connection\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/privateEndpointConnections/write\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"Private Endpoint Connection\",\r\n \"operation\": \"Create or Update Private Endpoint Connection\",\r\n \"description\": \"Create or Update Private Endpoint Connection\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/privateEndpointConnections/delete\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"Private Endpoint Connection\",\r\n \"operation\": \"Removes Private Endpoint Connection\",\r\n \"description\": \"Removes Private Endpoint Connection\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/privateLinkResources/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"PrivateLinks\",\r\n \"operation\": \"Gets the resource types that support private endpoint connections\",\r\n \"description\": \"Gets the resource types that support private endpoint connections\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/privateEndpointConnections/operationstatus/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"Non Resource Operation\",\r\n \"operation\": \"Private endpoint operation status\",\r\n \"description\": \"Get the status of an asynchronous private endpoint operation\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/privateEndpointConnectionsApproval/action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"Private Endpoint Connection\",\r\n \"operation\": \"Approve Private Endpoint Connection\",\r\n \"description\": \"Approve Private Endpoint Connection\"\r\n },\r\n \"isDataAction\": false\r\n }\r\n ],\r\n \"nextLink\": \"\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.EventHub/checkNameAvailability?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvY2hlY2tOYW1lQXZhaWxhYmlsaXR5P2FwaS12ZXJzaW9uPTIwMjEtMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.EventHub/checkNameAvailability?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvY2hlY2tOYW1lQXZhaWxhYmlsaXR5P2FwaS12ZXJzaW9uPTIwMjEtMTEtMDE=", "RequestMethod": "POST", - "RequestBody": "{\r\n \"name\": \"sdk-NS-2649\"\r\n}", + "RequestBody": "{\r\n \"name\": \"sdk-NS-6670\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "1d09542b-6659-44ab-8d6f-5fe890047452" + "3e467b23-8c96-4a4c-986b-108a77651aaf" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -162,27 +225,30 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:52:06 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "72cf86c2-e39f-4ad4-9a1a-4e7dd0c00235_M1SN1_M1SN1" + "1ee56eb4-4599-4a8f-a144-8c613901e56c_M10CH3_M10CH3" ], "Server-SB": [ - "Service-Bus-Resource-Provider/SN1" - ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" + "Service-Bus-Resource-Provider/CH3" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], "x-ms-correlation-request-id": [ - "5c11f93f-1305-475e-8e9c-e81c4c5b8445" + "772e5cb4-3534-491a-8e95-6c06ee538066" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T043957Z:5c11f93f-1305-475e-8e9c-e81c4c5b8445" + "SOUTHINDIA:20211115T025207Z:772e5cb4-3534-491a-8e95-6c06ee538066" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -190,9 +256,6 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:39:57 GMT" - ], "Content-Length": [ "53" ], @@ -207,22 +270,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-2414/providers/Microsoft.EventHub/namespaces/sdk-NS-2649?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMjQxNC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTI2NDk/YXBpLXZlcnNpb249MjAyMS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-2040/providers/Microsoft.EventHub/namespaces/sdk-NS-6670?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMjA0MC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTY2NzA/YXBpLXZlcnNpb249MjAyMS0xMS0wMQ==", "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\": \"East US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "f035d5c9-01d2-413a-b665-1af1176264bf" + "3aafbb6e-8a77-478b-bbc0-9c432049c0c2" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -235,27 +298,30 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:52:14 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "a8f2f31a-4bba-49f9-8291-03478f4b6400_M1SN1_M1SN1" + "49263443-f107-4804-bea8-eefe0988988e_M10CH3_M10CH3" ], "Server-SB": [ - "Service-Bus-Resource-Provider/SN1" - ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" + "Service-Bus-Resource-Provider/CH3" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "49" ], "x-ms-correlation-request-id": [ - "11d29a99-49c3-454c-9a48-41e231d93812" + "1caa237a-cba3-4b93-8021-5b43ee556aee" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T044000Z:11d29a99-49c3-454c-9a48-41e231d93812" + "SOUTHINDIA:20211115T025214Z:1caa237a-cba3-4b93-8021-5b43ee556aee" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -263,9 +329,6 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:40:00 GMT" - ], "Content-Length": [ "729" ], @@ -276,47 +339,50 @@ "-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-2414/providers/Microsoft.EventHub/namespaces/sdk-NS-2649\",\r\n \"name\": \"sdk-NS-2649\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"East US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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-2649\",\r\n \"createdAt\": \"2021-09-24T04:39:59.997Z\",\r\n \"updatedAt\": \"2021-09-24T04:39:59.997Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-2649.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-2040/providers/Microsoft.EventHub/namespaces/sdk-NS-6670\",\r\n \"name\": \"sdk-NS-6670\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"East US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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-6670\",\r\n \"createdAt\": \"2021-11-15T02:52:12.047Z\",\r\n \"updatedAt\": \"2021-11-15T02:52:12.047Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-6670.servicebus.windows.net:443/\",\r\n \"status\": \"Activating\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-2414/providers/Microsoft.EventHub/namespaces/sdk-NS-2649?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMjQxNC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTI2NDk/YXBpLXZlcnNpb249MjAyMS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-2040/providers/Microsoft.EventHub/namespaces/sdk-NS-6670?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMjA0MC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTY2NzA/YXBpLXZlcnNpb249MjAyMS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:52:44 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "67f829a6-0c2d-4bf9-af55-ff246a37bf72_M6SN1_M6SN1" + "afb46b88-2805-493d-9989-b6553fcbd7dd_M10CH3_M10CH3" ], "Server-SB": [ - "Service-Bus-Resource-Provider/SN1" - ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" + "Service-Bus-Resource-Provider/CH3" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11999" ], "x-ms-correlation-request-id": [ - "39a27010-cf7b-4c9c-9434-094e58452be6" + "d26c2021-c4cd-4b32-95d5-8c7f0cc60b0b" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T044031Z:39a27010-cf7b-4c9c-9434-094e58452be6" + "SOUTHINDIA:20211115T025244Z:d26c2021-c4cd-4b32-95d5-8c7f0cc60b0b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -324,9 +390,6 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:40:30 GMT" - ], "Content-Length": [ "729" ], @@ -337,47 +400,50 @@ "-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-2414/providers/Microsoft.EventHub/namespaces/sdk-NS-2649\",\r\n \"name\": \"sdk-NS-2649\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"East US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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-2649\",\r\n \"createdAt\": \"2021-09-24T04:39:59.997Z\",\r\n \"updatedAt\": \"2021-09-24T04:39:59.997Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-2649.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-2040/providers/Microsoft.EventHub/namespaces/sdk-NS-6670\",\r\n \"name\": \"sdk-NS-6670\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"East US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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-6670\",\r\n \"createdAt\": \"2021-11-15T02:52:12.047Z\",\r\n \"updatedAt\": \"2021-11-15T02:52:12.047Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-6670.servicebus.windows.net:443/\",\r\n \"status\": \"Activating\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-2414/providers/Microsoft.EventHub/namespaces/sdk-NS-2649?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMjQxNC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTI2NDk/YXBpLXZlcnNpb249MjAyMS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-2040/providers/Microsoft.EventHub/namespaces/sdk-NS-6670?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMjA0MC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTY2NzA/YXBpLXZlcnNpb249MjAyMS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:53:13 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "f7ed8fcb-3566-47d2-919d-52651a163ca3_M6SN1_M6SN1" + "33b32e73-20c8-48de-80e9-2fedb3c04d76_M10CH3_M10CH3" ], "Server-SB": [ - "Service-Bus-Resource-Provider/SN1" - ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" + "Service-Bus-Resource-Provider/CH3" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11998" ], "x-ms-correlation-request-id": [ - "dba4d661-f58f-48f5-a735-4267c43b4619" + "2aa33d3e-093d-4499-ab5f-d29ee4a2dea6" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T044101Z:dba4d661-f58f-48f5-a735-4267c43b4619" + "SOUTHINDIA:20211115T025314Z:2aa33d3e-093d-4499-ab5f-d29ee4a2dea6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -385,11 +451,8 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:41:00 GMT" - ], "Content-Length": [ - "726" + "727" ], "Content-Type": [ "application/json; charset=utf-8" @@ -398,53 +461,56 @@ "-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-2414/providers/Microsoft.EventHub/namespaces/sdk-NS-2649\",\r\n \"name\": \"sdk-NS-2649\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"East US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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-2649\",\r\n \"createdAt\": \"2021-09-24T04:39:59.997Z\",\r\n \"updatedAt\": \"2021-09-24T04:40:47.95Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-2649.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-2040/providers/Microsoft.EventHub/namespaces/sdk-NS-6670\",\r\n \"name\": \"sdk-NS-6670\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"East US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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-6670\",\r\n \"createdAt\": \"2021-11-15T02:52:12.047Z\",\r\n \"updatedAt\": \"2021-11-15T02:53:02.683Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-6670.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-2414/providers/Microsoft.EventHub/namespaces/sdk-NS-2649?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMjQxNC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTI2NDk/YXBpLXZlcnNpb249MjAyMS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-2040/providers/Microsoft.EventHub/namespaces/sdk-NS-6670?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMjA0MC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTY2NzA/YXBpLXZlcnNpb249MjAyMS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f8f32063-b7c8-40bf-b6d4-597837611e1a" + "6790f53e-1256-4d55-8f10-d5c909b04f7f" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:53:19 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "fca4201e-c33d-4449-a756-995513520ff8_M5SN1_M5SN1" + "f8261de4-780a-4181-92c7-b496b9e5b8ae_M10CH3_M10CH3" ], "Server-SB": [ - "Service-Bus-Resource-Provider/SN1" - ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" + "Service-Bus-Resource-Provider/CH3" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11997" ], "x-ms-correlation-request-id": [ - "6b178838-b6c9-489c-886a-7941dced1113" + "b88a23d6-a07d-468b-855a-6bc0df5ec25b" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T044106Z:6b178838-b6c9-489c-886a-7941dced1113" + "SOUTHINDIA:20211115T025320Z:b88a23d6-a07d-468b-855a-6bc0df5ec25b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -452,11 +518,8 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:41:05 GMT" - ], "Content-Length": [ - "726" + "727" ], "Content-Type": [ "application/json; charset=utf-8" @@ -465,53 +528,56 @@ "-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-2414/providers/Microsoft.EventHub/namespaces/sdk-NS-2649\",\r\n \"name\": \"sdk-NS-2649\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"East US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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-2649\",\r\n \"createdAt\": \"2021-09-24T04:39:59.997Z\",\r\n \"updatedAt\": \"2021-09-24T04:40:47.95Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-2649.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-2040/providers/Microsoft.EventHub/namespaces/sdk-NS-6670\",\r\n \"name\": \"sdk-NS-6670\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"East US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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-6670\",\r\n \"createdAt\": \"2021-11-15T02:52:12.047Z\",\r\n \"updatedAt\": \"2021-11-15T02:53:02.683Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-6670.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-2414/providers/Microsoft.EventHub/namespaces/sdk-NS-2649?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMjQxNC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTI2NDk/YXBpLXZlcnNpb249MjAyMS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-2040/providers/Microsoft.EventHub/namespaces/sdk-NS-6670?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMjA0MC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTY2NzA/YXBpLXZlcnNpb249MjAyMS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a2803226-0314-4a4e-970c-929fdcefb193" + "4f378a17-15da-4d92-9f20-be934810bbce" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:53:19 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "985e4d7a-f6d1-45d0-933e-a989f14c03de_M5SN1_M5SN1" + "01feba7a-b13b-4544-a67d-10896b6adc61_M10CH3_M10CH3" ], "Server-SB": [ - "Service-Bus-Resource-Provider/SN1" - ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" + "Service-Bus-Resource-Provider/CH3" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11996" ], "x-ms-correlation-request-id": [ - "9e6864a9-3353-4c6e-83b6-edddd97ea1a1" + "6dd6c876-47d2-44a9-9e97-6a4f73194e96" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T044106Z:9e6864a9-3353-4c6e-83b6-edddd97ea1a1" + "SOUTHINDIA:20211115T025320Z:6dd6c876-47d2-44a9-9e97-6a4f73194e96" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -519,11 +585,8 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:41:05 GMT" - ], "Content-Length": [ - "726" + "727" ], "Content-Type": [ "application/json; charset=utf-8" @@ -532,53 +595,56 @@ "-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-2414/providers/Microsoft.EventHub/namespaces/sdk-NS-2649\",\r\n \"name\": \"sdk-NS-2649\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"East US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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-2649\",\r\n \"createdAt\": \"2021-09-24T04:39:59.997Z\",\r\n \"updatedAt\": \"2021-09-24T04:40:47.95Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-2649.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-2040/providers/Microsoft.EventHub/namespaces/sdk-NS-6670\",\r\n \"name\": \"sdk-NS-6670\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"East US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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-6670\",\r\n \"createdAt\": \"2021-11-15T02:52:12.047Z\",\r\n \"updatedAt\": \"2021-11-15T02:53:02.683Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-6670.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-2414/providers/Microsoft.EventHub/namespaces/sdk-NS-2649?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMjQxNC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTI2NDk/YXBpLXZlcnNpb249MjAyMS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-2040/providers/Microsoft.EventHub/namespaces/sdk-NS-6670?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMjA0MC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTY2NzA/YXBpLXZlcnNpb249MjAyMS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ae60643e-2489-493c-92a6-8cb21721f76d" + "bf4c7502-cef2-4368-ab41-b8d6a0d093c1" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:53:25 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "fb71a575-f2ab-431a-951b-19b9b6c7eb3a_M6SN1_M6SN1" + "57303daf-3239-4faf-97a4-f7b40d75078e_M10CH3_M10CH3" ], "Server-SB": [ - "Service-Bus-Resource-Provider/SN1" - ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" + "Service-Bus-Resource-Provider/CH3" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11993" ], "x-ms-correlation-request-id": [ - "5febc1e7-4230-450c-b4f3-a174643c8374" + "a6f764e8-e0b4-4579-9ec7-dc16e6417b94" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T044108Z:5febc1e7-4230-450c-b4f3-a174643c8374" + "SOUTHINDIA:20211115T025325Z:a6f764e8-e0b4-4579-9ec7-dc16e6417b94" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -586,11 +652,8 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:41:08 GMT" - ], "Content-Length": [ - "729" + "730" ], "Content-Type": [ "application/json; charset=utf-8" @@ -599,53 +662,56 @@ "-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-2414/providers/Microsoft.EventHub/namespaces/sdk-NS-2649\",\r\n \"name\": \"sdk-NS-2649\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"East US\",\r\n \"tags\": {\r\n \"tag3\": \"value3\",\r\n \"tag4\": \"value4\"\r\n },\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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-2649\",\r\n \"createdAt\": \"2021-09-24T04:39:59.997Z\",\r\n \"updatedAt\": \"2021-09-24T04:41:07.57Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-2649.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-2040/providers/Microsoft.EventHub/namespaces/sdk-NS-6670\",\r\n \"name\": \"sdk-NS-6670\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"East US\",\r\n \"tags\": {\r\n \"tag3\": \"value3\",\r\n \"tag4\": \"value4\"\r\n },\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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-6670\",\r\n \"createdAt\": \"2021-11-15T02:52:12.047Z\",\r\n \"updatedAt\": \"2021-11-15T02:53:22.413Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-6670.servicebus.windows.net:443/\",\r\n \"status\": \"Activating\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-2414/providers/Microsoft.EventHub/namespaces?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMjQxNC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXM/YXBpLXZlcnNpb249MjAyMS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-2040/providers/Microsoft.EventHub/namespaces?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMjA0MC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXM/YXBpLXZlcnNpb249MjAyMS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f045cb2b-74da-4231-b8b0-3b90fb9a5de8" + "c357218e-df97-4d39-acd4-0048cb1b3d65" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:53:19 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "172c69b3-dbfd-459b-b9ac-4e1ef924ad47_M5SN1_M5SN1" + "480211dd-cd30-4924-b8d8-ef60a4651f38_M10CH3_M10CH3" ], "Server-SB": [ - "Service-Bus-Resource-Provider/SN1" - ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" + "Service-Bus-Resource-Provider/CH3" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11995" ], "x-ms-correlation-request-id": [ - "1e6c69cb-6f5c-40bb-8611-e74534a0eb35" + "20f4a6dc-c816-4bcd-8a52-5cf44c87f31b" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T044106Z:1e6c69cb-6f5c-40bb-8611-e74534a0eb35" + "SOUTHINDIA:20211115T025320Z:20f4a6dc-c816-4bcd-8a52-5cf44c87f31b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -653,11 +719,8 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:41:05 GMT" - ], "Content-Length": [ - "738" + "739" ], "Content-Type": [ "application/json; charset=utf-8" @@ -666,56 +729,59 @@ "-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/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-2414/providers/Microsoft.EventHub/namespaces/sdk-NS-2649\",\r\n \"name\": \"sdk-NS-2649\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"East US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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-2649\",\r\n \"createdAt\": \"2021-09-24T04:39:59.997Z\",\r\n \"updatedAt\": \"2021-09-24T04:40:47.95Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-2649.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-2040/providers/Microsoft.EventHub/namespaces/sdk-NS-6670\",\r\n \"name\": \"sdk-NS-6670\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"East US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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-6670\",\r\n \"createdAt\": \"2021-11-15T02:52:12.047Z\",\r\n \"updatedAt\": \"2021-11-15T02:53:02.683Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-6670.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.EventHub/namespaces?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcz9hcGktdmVyc2lvbj0yMDIxLTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.EventHub/namespaces?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcz9hcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e39eb464-7bf4-46d8-bf1f-6a91935a32f6" + "04a95fac-5c02-4ab1-8a32-97f498e0a0bc" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:53:19 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-inline-count": [ "" ], "x-ms-request-id": [ - "fd81e20f-e911-4074-bdf0-641ccc27b7f8_M5SN1_M5SN1" + "02b8cb7c-933d-4042-80f1-654c2a6dbbb9_M10CH3_M10CH3" ], "Server-SB": [ - "Service-Bus-Resource-Provider/SN1" - ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" + "Service-Bus-Resource-Provider/CH3" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11994" ], "x-ms-correlation-request-id": [ - "6cb24b91-5fe9-40de-8a94-737d46171f37" + "acf79894-5188-4805-bcf5-82eefa5d96a9" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T044106Z:6cb24b91-5fe9-40de-8a94-737d46171f37" + "SOUTHINDIA:20211115T025320Z:acf79894-5188-4805-bcf5-82eefa5d96a9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -723,11 +789,8 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:41:06 GMT" - ], "Content-Length": [ - "77536" + "78546" ], "Content-Type": [ "application/json; charset=utf-8" @@ -736,26 +799,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\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 \"disableLocalAuth\": false,\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\": 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 \"disableLocalAuth\": false,\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/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 \"disableLocalAuth\": false,\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-06-15T14:20:00.153Z\",\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/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 \"disableLocalAuth\": false,\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/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 \"disableLocalAuth\": false,\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/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 \"disableLocalAuth\": false,\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/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 \"disableLocalAuth\": false,\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\": 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 \"disableLocalAuth\": false,\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/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 \"disableLocalAuth\": false,\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\": 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 \"disableLocalAuth\": false,\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/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 \"disableLocalAuth\": false,\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\": \"Premium\",\r\n \"tier\": \"Premium\",\r\n \"capacity\": 1\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 \"disableLocalAuth\": false,\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"clusterArmId\": \"/subscriptions/f7d26b87-63a8-4d84-93b3-e22dcf545c83/resourceGroups/rg-spark-na903/providers/Microsoft.EventHub/clusters/spark-na903-src-eh-cl1\",\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\": \"2021-04-13T22:12:05.26Z\",\r\n \"serviceBusEndpoint\": \"https://FirewallTestEHNS.servicebus.windows.net:443/\",\r\n \"status\": \"Removing\"\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 \"disableLocalAuth\": false,\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\": 2\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 \"disableLocalAuth\": false,\r\n \"zoneRedundant\": true,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\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-15T21:59:51.447Z\",\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\": \"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 \"disableLocalAuth\": false,\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/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 \"disableLocalAuth\": false,\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/shubhatestrg/providers/Microsoft.EventHub/namespaces/uxdemoforsr\",\r\n \"name\": \"uxdemoforsr\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:uxdemoforsr\",\r\n \"createdAt\": \"2020-05-21T19:41:03.867Z\",\r\n \"updatedAt\": \"2020-05-21T19:41:50.97Z\",\r\n \"serviceBusEndpoint\": \"https://uxdemoforsr.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/v-ajnavtest/providers/Microsoft.EventHub/namespaces/testingnew2018\",\r\n \"name\": \"testingnew2018\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:testingnew2018\",\r\n \"createdAt\": \"2020-06-14T21:02:16.57Z\",\r\n \"updatedAt\": \"2020-06-14T21:03:04.417Z\",\r\n \"serviceBusEndpoint\": \"https://testingnew2018.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/v-ajnavtest/providers/Microsoft.EventHub/namespaces/testingnew20181\",\r\n \"name\": \"testingnew20181\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"East US\",\r\n \"tags\": {},\r\n \"identity\": {\r\n \"principalId\": \"941b9c7d-e77d-485b-bed7-bcf43fa5a61d\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": true,\r\n \"isAutoInflateEnabled\": true,\r\n \"maximumThroughputUnits\": 12,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:testingnew20181\",\r\n \"createdAt\": \"2020-06-14T23:00:04.573Z\",\r\n \"updatedAt\": \"2021-09-17T22:55:08.077Z\",\r\n \"serviceBusEndpoint\": \"https://testingnew20181.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/clemensv8\",\r\n \"name\": \"clemensv8\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"North Europe\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:clemensv8\",\r\n \"createdAt\": \"2020-06-15T14:23:25.007Z\",\r\n \"updatedAt\": \"2020-06-15T14:52:08.377Z\",\r\n \"serviceBusEndpoint\": \"https://clemensv8.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\": 7\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/shubhatestrg/providers/Microsoft.EventHub/namespaces/tesgeotus\",\r\n \"name\": \"tesgeotus\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"East US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:tesgeotus\",\r\n \"createdAt\": \"2020-06-17T17:57:59.207Z\",\r\n \"updatedAt\": \"2020-06-17T18:22:37.757Z\",\r\n \"serviceBusEndpoint\": \"https://tesgeotus.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\": 7\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/shubhatestrg/providers/Microsoft.EventHub/namespaces/testgeotusec\",\r\n \"name\": \"testgeotusec\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:testgeotusec\",\r\n \"createdAt\": \"2020-06-17T18:19:55.487Z\",\r\n \"updatedAt\": \"2020-06-17T18:22:38.017Z\",\r\n \"serviceBusEndpoint\": \"https://testgeotusec.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-6828/providers/Microsoft.EventHub/namespaces/sdk-NS-2916\",\r\n \"name\": \"sdk-NS-2916\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": true,\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-2916\",\r\n \"createdAt\": \"2020-06-17T19:28:29.223Z\",\r\n \"updatedAt\": \"2020-06-17T19:29:19.167Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-2916.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/rg-schema-registry/providers/Microsoft.EventHub/namespaces/sr-playground\",\r\n \"name\": \"sr-playground\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"clusterArmId\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/sjrg/providers/Microsoft.EventHub/clusters/SchemaRegistryPreviewCluster\",\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:sr-playground\",\r\n \"createdAt\": \"2020-06-19T05:01:58.623Z\",\r\n \"updatedAt\": \"2020-06-19T05:05:36.437Z\",\r\n \"serviceBusEndpoint\": \"https://sr-playground.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/sjschemaregistry1\",\r\n \"name\": \"sjschemaregistry1\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"clusterArmId\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/sjrg/providers/Microsoft.EventHub/clusters/SchemaRegistryPreviewCluster\",\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:sjschemaregistry1\",\r\n \"createdAt\": \"2020-06-30T01:25:15.193Z\",\r\n \"updatedAt\": \"2020-06-30T01:26:03.24Z\",\r\n \"serviceBusEndpoint\": \"https://sjschemaregistry1.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/sjcueuap\",\r\n \"name\": \"sjcueuap\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"Central US EUAP\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:sjcueuap\",\r\n \"createdAt\": \"2020-07-07T01:19:52.39Z\",\r\n \"updatedAt\": \"2020-07-07T01:20:41.063Z\",\r\n \"serviceBusEndpoint\": \"https://sjcueuap.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/sjcentralindia\",\r\n \"name\": \"sjcentralindia\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"Central India\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:sjcentralindia\",\r\n \"createdAt\": \"2020-07-09T04:47:59.847Z\",\r\n \"updatedAt\": \"2020-07-09T04:48:59.697Z\",\r\n \"serviceBusEndpoint\": \"https://sjcentralindia.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/sjsouthindia\",\r\n \"name\": \"sjsouthindia\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"South India\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:sjsouthindia\",\r\n \"createdAt\": \"2020-07-25T17:37:49.96Z\",\r\n \"updatedAt\": \"2020-07-25T17:38:37.753Z\",\r\n \"serviceBusEndpoint\": \"https://sjsouthindia.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/rg-sr-bugbash/providers/Microsoft.EventHub/namespaces/sr-bugbash\",\r\n \"name\": \"sr-bugbash\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"clusterArmId\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/sjrg/providers/Microsoft.EventHub/clusters/SchemaRegistryPreviewCluster\",\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:sr-bugbash\",\r\n \"createdAt\": \"2020-08-17T00:01:00.033Z\",\r\n \"updatedAt\": \"2020-09-16T07:37:17.6Z\",\r\n \"serviceBusEndpoint\": \"https://sr-bugbash.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/zztestsecondary\",\r\n \"name\": \"zztestsecondary\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:zztestsecondary\",\r\n \"createdAt\": \"2020-08-26T20:46:48.983Z\",\r\n \"updatedAt\": \"2020-08-26T20:53:01.247Z\",\r\n \"serviceBusEndpoint\": \"https://zztestsecondary.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/zztestprimary\",\r\n \"name\": \"zztestprimary\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"East US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:zztestprimary\",\r\n \"createdAt\": \"2020-08-26T20:50:24.767Z\",\r\n \"updatedAt\": \"2020-08-26T20:53:01.247Z\",\r\n \"serviceBusEndpoint\": \"https://zztestprimary.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\": 8\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-WestEurope/providers/Microsoft.EventHub/namespaces/ns-localstore-scenario-10\",\r\n \"name\": \"ns-localstore-scenario-10\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West Europe\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:ns-localstore-scenario-10\",\r\n \"createdAt\": \"2020-09-06T17:24:27.343Z\",\r\n \"updatedAt\": \"2020-10-22T11:14:36.25Z\",\r\n \"serviceBusEndpoint\": \"https://ns-localstore-scenario-10.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/RGName5406/providers/Microsoft.EventHub/namespaces/Eh-NamespaceKafka-1503\",\r\n \"name\": \"Eh-NamespaceKafka-1503\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:eh-namespacekafka-1503\",\r\n \"createdAt\": \"2020-09-10T23:25:28.93Z\",\r\n \"updatedAt\": \"2020-09-10T23:26:19.88Z\",\r\n \"serviceBusEndpoint\": \"https://Eh-NamespaceKafka-1503.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/RGName2039/providers/Microsoft.EventHub/namespaces/Eh-NamespaceKafka-1200\",\r\n \"name\": \"Eh-NamespaceKafka-1200\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:eh-namespacekafka-1200\",\r\n \"createdAt\": \"2020-09-10T23:33:15.513Z\",\r\n \"updatedAt\": \"2020-09-10T23:33:58.96Z\",\r\n \"serviceBusEndpoint\": \"https://Eh-NamespaceKafka-1200.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/RGName3234/providers/Microsoft.EventHub/namespaces/Eh-NamespaceKafka-7506\",\r\n \"name\": \"Eh-NamespaceKafka-7506\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:eh-namespacekafka-7506\",\r\n \"createdAt\": \"2020-09-11T00:11:11.73Z\",\r\n \"updatedAt\": \"2020-09-11T00:11:58.973Z\",\r\n \"serviceBusEndpoint\": \"https://Eh-NamespaceKafka-7506.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/RGName4706/providers/Microsoft.EventHub/namespaces/Eh-NamespaceKafka-3743\",\r\n \"name\": \"Eh-NamespaceKafka-3743\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:eh-namespacekafka-3743\",\r\n \"createdAt\": \"2020-09-11T00:17:52.727Z\",\r\n \"updatedAt\": \"2020-09-11T00:18:36.617Z\",\r\n \"serviceBusEndpoint\": \"https://Eh-NamespaceKafka-3743.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/EventHubsVNETTestingRG/providers/Microsoft.EventHub/namespaces/sj-westcentralus\",\r\n \"name\": \"sj-westcentralus\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"clusterArmId\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/EventHubsVNETTestingRG/providers/Microsoft.EventHub/clusters/EventHubsVNetTesting\",\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:sj-westcentralus\",\r\n \"createdAt\": \"2020-09-23T00:07:29.707Z\",\r\n \"updatedAt\": \"2020-09-23T00:08:20.437Z\",\r\n \"serviceBusEndpoint\": \"https://sj-westcentralus.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-CentralUSEUAP/providers/Microsoft.EventHub/namespaces/hmlam-cdm03-001\",\r\n \"name\": \"hmlam-cdm03-001\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"Central US EUAP\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Updating\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:hmlam-cdm03-001\",\r\n \"createdAt\": \"2020-09-23T01:16:28.043Z\",\r\n \"updatedAt\": \"2021-09-02T17:34:29.203Z\",\r\n \"serviceBusEndpoint\": \"https://hmlam-cdm03-001.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/sjrg/providers/Microsoft.EventHub/namespaces/sjschemaregistry\",\r\n \"name\": \"sjschemaregistry\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:sjschemaregistry\",\r\n \"createdAt\": \"2020-09-29T19:00:19.527Z\",\r\n \"updatedAt\": \"2020-09-29T19:01:09.967Z\",\r\n \"serviceBusEndpoint\": \"https://sjschemaregistry.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/jfgRsrcGrp16/providers/Microsoft.EventHub/namespaces/jfgEvtHbNmspc1\",\r\n \"name\": \"jfgEvtHbNmspc1\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:jfgevthbnmspc1\",\r\n \"createdAt\": \"2020-10-19T02:50:21.05Z\",\r\n \"updatedAt\": \"2020-10-19T02:51:09.65Z\",\r\n \"serviceBusEndpoint\": \"https://jfgEvtHbNmspc1.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/zztestrg/providers/Microsoft.EventHub/namespaces/zztest03\",\r\n \"name\": \"zztest03\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:zztest03\",\r\n \"createdAt\": \"2020-10-20T21:48:16.673Z\",\r\n \"updatedAt\": \"2020-10-20T21:55:37.617Z\",\r\n \"serviceBusEndpoint\": \"https://zztest03.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/zztestrg/providers/Microsoft.EventHub/namespaces/zztest04\",\r\n \"name\": \"zztest04\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:zztest04\",\r\n \"createdAt\": \"2020-10-20T21:48:58.127Z\",\r\n \"updatedAt\": \"2020-10-20T21:57:59.613Z\",\r\n \"serviceBusEndpoint\": \"https://zztest04.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/sakoppes_test/providers/Microsoft.EventHub/namespaces/SamKoppesTestEHNamespace1\",\r\n \"name\": \"SamKoppesTestEHNamespace1\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"East US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:samkoppestestehnamespace1\",\r\n \"createdAt\": \"2020-10-23T17:59:47.117Z\",\r\n \"updatedAt\": \"2020-10-23T18:00:38.657Z\",\r\n \"serviceBusEndpoint\": \"https://SamKoppesTestEHNamespace1.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/hmlam-bn3-556\",\r\n \"name\": \"hmlam-bn3-556\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"clusterArmId\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/sjrg/providers/Microsoft.EventHub/clusters/SchemaRegistryPreviewCluster\",\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:hmlam-bn3-556\",\r\n \"createdAt\": \"2020-10-31T05:46:03.81Z\",\r\n \"updatedAt\": \"2020-10-31T05:46:54.773Z\",\r\n \"serviceBusEndpoint\": \"https://hmlam-bn3-556.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/jfgRsrcGrp18/providers/Microsoft.EventHub/namespaces/ADX-EG-jfgdataexplorer1\",\r\n \"name\": \"ADX-EG-jfgdataexplorer1\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"East US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:adx-eg-jfgdataexplorer1\",\r\n \"createdAt\": \"2020-11-09T16:50:22.813Z\",\r\n \"updatedAt\": \"2020-11-09T16:51:22.947Z\",\r\n \"serviceBusEndpoint\": \"https://ADX-EG-jfgdataexplorer1.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/manojprasad-rampup/providers/Microsoft.EventHub/namespaces/eventhub-nmp\",\r\n \"name\": \"eventhub-nmp\",\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 \"disableLocalAuth\": false,\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:eventhub-nmp\",\r\n \"createdAt\": \"2020-12-28T18:50:46.36Z\",\r\n \"updatedAt\": \"2021-04-21T23:21:24.477Z\",\r\n \"serviceBusEndpoint\": \"https://eventhub-nmp.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/PPGTestPG/providers/Microsoft.EventHub/namespaces/TestEHSys0121\",\r\n \"name\": \"TestEHSys0121\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"EAST US 2 EUAP\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:testehsys0121\",\r\n \"createdAt\": \"2021-01-22T23:59:08.403Z\",\r\n \"updatedAt\": \"2021-01-22T23:59:53.9Z\",\r\n \"serviceBusEndpoint\": \"https://TestEHSys0121.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/PPGTestPG/providers/Microsoft.EventHub/namespaces/TestEH0125\",\r\n \"name\": \"TestEH0125\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"EAST US 2 EUAP\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:testeh0125\",\r\n \"createdAt\": \"2021-01-26T21:05:50.063Z\",\r\n \"updatedAt\": \"2021-01-26T21:06:39.467Z\",\r\n \"serviceBusEndpoint\": \"https://TestEH0125.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-WestUS2/providers/Microsoft.EventHub/namespaces/hmlam-2-mwh01-510\",\r\n \"name\": \"hmlam-2-mwh01-510\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Updating\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:hmlam-2-mwh01-510\",\r\n \"createdAt\": \"2021-01-27T21:26:17.357Z\",\r\n \"updatedAt\": \"2021-09-02T17:15:54.36Z\",\r\n \"serviceBusEndpoint\": \"https://hmlam-2-mwh01-510.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/EventHubsVNETTestingRG/providers/Microsoft.EventHub/namespaces/testencypt0128\",\r\n \"name\": \"testencypt0128\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West Central US\",\r\n \"tags\": {},\r\n \"identity\": {\r\n \"principalId\": \"e9d041e2-62a8-41c8-9b88-71031dbf2695\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"encryption\": {\r\n \"keySource\": \"Microsoft.KeyVault\",\r\n \"keyVaultProperties\": [\r\n {\r\n \"keyName\": \"testkey\",\r\n \"keyVaultUri\": \"https://testrbac0113.vault.azure.net\",\r\n \"keyVersion\": \"\"\r\n }\r\n ],\r\n \"requireInfrastructureEncryption\": false\r\n },\r\n \"clusterArmId\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/EventHubsVNETTestingRG/providers/Microsoft.EventHub/clusters/EventHubsVNetTesting\",\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:testencypt0128\",\r\n \"createdAt\": \"2021-01-29T03:11:24.39Z\",\r\n \"updatedAt\": \"2021-09-16T03:08:07.8Z\",\r\n \"serviceBusEndpoint\": \"https://testencypt0128.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/xcrg/providers/Microsoft.EventHub/namespaces/byok-offset-test\",\r\n \"name\": \"byok-offset-test\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"Central US EUAP\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:byok-offset-test\",\r\n \"createdAt\": \"2021-02-09T17:53:55.587Z\",\r\n \"updatedAt\": \"2021-02-09T18:00:15.627Z\",\r\n \"serviceBusEndpoint\": \"https://byok-offset-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/xcrg/providers/Microsoft.EventHub/namespaces/byok-ot-test\",\r\n \"name\": \"byok-ot-test\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"EAST US 2 EUAP\",\r\n \"tags\": {},\r\n \"identity\": {\r\n \"principalId\": \"a2a77dd1-1a20-4640-a408-2a254a9e0b69\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"encryption\": {\r\n \"keySource\": \"Microsoft.KeyVault\",\r\n \"keyVaultProperties\": [\r\n {\r\n \"keyName\": \"offset-journal-byok\",\r\n \"keyVaultUri\": \"https://xc-test.vault.azure.net\",\r\n \"keyVersion\": \"\"\r\n }\r\n ],\r\n \"requireInfrastructureEncryption\": false\r\n },\r\n \"clusterArmId\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/prod-cbn04-503-533-rg/providers/Microsoft.EventHub/clusters/CBN04-503\",\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:byok-ot-test\",\r\n \"createdAt\": \"2021-02-09T19:17:55.363Z\",\r\n \"updatedAt\": \"2021-08-12T21:36:08.783Z\",\r\n \"serviceBusEndpoint\": \"https://byok-ot-test.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/jfgWalmart1/providers/Microsoft.EventHub/namespaces/jfgEH-Wmt-1\",\r\n \"name\": \"jfgEH-Wmt-1\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"East US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:jfgeh-wmt-1\",\r\n \"createdAt\": \"2021-02-14T23:49:41.33Z\",\r\n \"updatedAt\": \"2021-02-14T23:50:33.71Z\",\r\n \"serviceBusEndpoint\": \"https://jfgEH-Wmt-1.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/jfgWalmart1/providers/Microsoft.EventHub/namespaces/jfgEH-Wmt-2\",\r\n \"name\": \"jfgEH-Wmt-2\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"East US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:jfgeh-wmt-2\",\r\n \"createdAt\": \"2021-02-15T02:12:43.573Z\",\r\n \"updatedAt\": \"2021-02-15T02:13:30.477Z\",\r\n \"serviceBusEndpoint\": \"https://jfgEH-Wmt-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/sjrg/providers/Microsoft.EventHub/namespaces/sjwestus2\",\r\n \"name\": \"sjwestus2\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:sjwestus2\",\r\n \"createdAt\": \"2021-02-18T06:26:28.413Z\",\r\n \"updatedAt\": \"2021-02-18T06:27:16.157Z\",\r\n \"serviceBusEndpoint\": \"https://sjwestus2.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/ehspringboot\",\r\n \"name\": \"ehspringboot\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:ehspringboot\",\r\n \"createdAt\": \"2021-02-26T01:37:31.123Z\",\r\n \"updatedAt\": \"2021-02-26T01:38:18.35Z\",\r\n \"serviceBusEndpoint\": \"https://ehspringboot.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-JapanEast/providers/Microsoft.EventHub/namespaces/hmlam-kw1-001\",\r\n \"name\": \"hmlam-kw1-001\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"Japan East\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:hmlam-kw1-001\",\r\n \"createdAt\": \"2021-03-05T03:15:50.103Z\",\r\n \"updatedAt\": \"2021-09-02T17:17:21.117Z\",\r\n \"serviceBusEndpoint\": \"https://hmlam-kw1-001.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/useridentities/providers/Microsoft.EventHub/namespaces/icmtest-1\",\r\n \"name\": \"icmtest-1\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"East US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:icmtest-1\",\r\n \"createdAt\": \"2021-03-05T19:07:00.873Z\",\r\n \"updatedAt\": \"2021-03-05T19:07:51.14Z\",\r\n \"serviceBusEndpoint\": \"https://icmtest-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/useridentities/providers/Microsoft.EventHub/namespaces/icm-testing\",\r\n \"name\": \"icm-testing\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"East US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:icm-testing\",\r\n \"createdAt\": \"2021-03-05T19:36:02.113Z\",\r\n \"updatedAt\": \"2021-03-05T19:36:54.433Z\",\r\n \"serviceBusEndpoint\": \"https://icm-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/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-EASTUS2EUAP/providers/Microsoft.EventHub/namespaces/sarama-gw-fix-verify\",\r\n \"name\": \"sarama-gw-fix-verify\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"EAST US 2 EUAP\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:sarama-gw-fix-verify\",\r\n \"createdAt\": \"2021-03-09T02:35:20.1Z\",\r\n \"updatedAt\": \"2021-03-09T02:36:08.687Z\",\r\n \"serviceBusEndpoint\": \"https://sarama-gw-fix-verify.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-cbn04-503-533-rg/providers/Microsoft.EventHub/namespaces/clemen-test-eh-sa\",\r\n \"name\": \"clemen-test-eh-sa\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"EAST US 2 EUAP\",\r\n \"tags\": {},\r\n \"identity\": {\r\n \"principalId\": \"b4b473dd-8d23-45ab-9f29-deee83baf0b1\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:clemen-test-eh-sa\",\r\n \"createdAt\": \"2021-03-31T20:02:42.077Z\",\r\n \"updatedAt\": \"2021-08-16T19:57:09.183Z\",\r\n \"serviceBusEndpoint\": \"https://clemen-test-eh-sa.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/DisablePublicAccesTesting/providers/Microsoft.EventHub/namespaces/DisablePublicAccessTesting-EHStandard\",\r\n \"name\": \"DisablePublicAccessTesting-EHStandard\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"EAST US 2 EUAP\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:disablepublicaccesstesting-ehstandard\",\r\n \"createdAt\": \"2021-04-06T15:53:47.477Z\",\r\n \"updatedAt\": \"2021-04-06T15:54:32.47Z\",\r\n \"serviceBusEndpoint\": \"https://DisablePublicAccessTesting-EHStandard.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/arthur/providers/Microsoft.EventHub/namespaces/arerlend-sr-test\",\r\n \"name\": \"arerlend-sr-test\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:arerlend-sr-test\",\r\n \"createdAt\": \"2021-04-16T05:43:31.857Z\",\r\n \"updatedAt\": \"2021-04-16T05:44:16.807Z\",\r\n \"serviceBusEndpoint\": \"https://arerlend-sr-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\": 2\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/EHResourceGr1/providers/Microsoft.EventHub/namespaces/kasuneventhubs\",\r\n \"name\": \"kasuneventhubs\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"East US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:kasuneventhubs\",\r\n \"createdAt\": \"2021-04-16T22:17:03.377Z\",\r\n \"updatedAt\": \"2021-08-02T20:44:07.137Z\",\r\n \"serviceBusEndpoint\": \"https://kasuneventhubs.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-cbn04-503-533-rg/providers/Microsoft.EventHub/namespaces/assures-cgissue-test\",\r\n \"name\": \"assures-cgissue-test\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"EAST US 2 EUAP\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"clusterArmId\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/prod-cbn04-503-533-rg/providers/Microsoft.EventHub/clusters/CBN04-503\",\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:assures-cgissue-test\",\r\n \"createdAt\": \"2021-05-01T01:32:54.81Z\",\r\n \"updatedAt\": \"2021-05-01T01:33:47.6Z\",\r\n \"serviceBusEndpoint\": \"https://assures-cgissue-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\": 2\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/kindrasiri_eh_benchmark/providers/Microsoft.EventHub/namespaces/ehbenchmark\",\r\n \"name\": \"ehbenchmark\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"East US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:ehbenchmark\",\r\n \"createdAt\": \"2021-05-03T16:12:09.03Z\",\r\n \"updatedAt\": \"2021-05-03T16:12:56.44Z\",\r\n \"serviceBusEndpoint\": \"https://ehbenchmark.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-cbn04-503-533-rg/providers/Microsoft.EventHub/namespaces/assures-cgissue-test-2\",\r\n \"name\": \"assures-cgissue-test-2\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"EAST US 2 EUAP\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"clusterArmId\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/prod-cbn04-503-533-rg/providers/Microsoft.EventHub/clusters/CBN04-503\",\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:assures-cgissue-test-2\",\r\n \"createdAt\": \"2021-05-06T19:38:04.303Z\",\r\n \"updatedAt\": \"2021-05-06T19:38:59.563Z\",\r\n \"serviceBusEndpoint\": \"https://assures-cgissue-test-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/v-ajnavtest/providers/Microsoft.EventHub/namespaces/testcluster-test2-eastus-eh-d-ns\",\r\n \"name\": \"testcluster-test2-eastus-eh-d-ns\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"East US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"clusterArmId\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/v-ajnavtest/providers/Microsoft.EventHub/clusters/testingclusterarmtemplate\",\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:testcluster-test2-eastus-eh-d-ns\",\r\n \"createdAt\": \"2021-05-06T23:23:01.673Z\",\r\n \"updatedAt\": \"2021-05-06T23:24:07.72Z\",\r\n \"serviceBusEndpoint\": \"https://testcluster-test2-eastus-eh-d-ns.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\": 10\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ardsouza-test-5-19/providers/Microsoft.EventHub/namespaces/ardsouza-5-19-2020-deleteme-basic\",\r\n \"name\": \"ardsouza-5-19-2020-deleteme-basic\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"Canada Central\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": true,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:ardsouza-5-19-2020-deleteme-basic\",\r\n \"createdAt\": \"2021-05-20T01:26:36.323Z\",\r\n \"updatedAt\": \"2021-05-20T01:28:35.287Z\",\r\n \"serviceBusEndpoint\": \"https://ardsouza-5-19-2020-deleteme-basic.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/EventHubsVNETTestingRG/providers/Microsoft.EventHub/namespaces/TestMSiNew0520\",\r\n \"name\": \"TestMSiNew0520\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West Central US\",\r\n \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/ppgtest/providers/microsoft.managedidentity/userassignedidentities/testuai0412new\": {\r\n \"clientId\": \"ec83a3e2-bd7b-4e77-bde9-76ec42eb1d6a\",\r\n \"principalId\": \"2496443e-0c52-4245-84fb-6ee677269b16\"\r\n },\r\n \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/ppgtest/providers/microsoft.managedidentity/userassignedidentities/testuai0506\": {\r\n \"clientId\": \"40578752-05e9-4b8b-bdc4-f07e960571e0\",\r\n \"principalId\": \"406cc555-ce08-485a-a5a6-ef1ccc5e7bec\"\r\n }\r\n }\r\n },\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"encryption\": {\r\n \"keySource\": \"Microsoft.KeyVault\",\r\n \"keyVaultProperties\": [\r\n {\r\n \"keyName\": \"TestKey0506\",\r\n \"keyVaultUri\": \"https://testkv0506.vault.azure.net\",\r\n \"keyVersion\": \"\",\r\n \"identity\": {\r\n \"userAssignedIdentity\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/ppgtest/providers/microsoft.managedidentity/userassignedidentities/testuai0506\"\r\n }\r\n }\r\n ],\r\n \"requireInfrastructureEncryption\": false\r\n },\r\n \"clusterArmId\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/EventHubsVNETTestingRG/providers/Microsoft.EventHub/clusters/EventHubsVNetTesting\",\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:testmsinew0520\",\r\n \"createdAt\": \"2021-05-20T22:42:14.17Z\",\r\n \"updatedAt\": \"2021-08-06T19:47:08.883Z\",\r\n \"serviceBusEndpoint\": \"https://TestMSiNew0520.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\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/sjrg/providers/Microsoft.EventHub/namespaces/sjpremiumwe\",\r\n \"name\": \"sjpremiumwe\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West Europe\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": true,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:sjpremiumwe\",\r\n \"createdAt\": \"2021-05-21T18:16:42.207Z\",\r\n \"updatedAt\": \"2021-05-25T05:53:39.053Z\",\r\n \"serviceBusEndpoint\": \"https://sjpremiumwe.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\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/manojprasad-rampup/providers/Microsoft.EventHub/namespaces/manojprasad-eventhubs-premium\",\r\n \"name\": \"manojprasad-eventhubs-premium\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"Australia East\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": true,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:manojprasad-eventhubs-premium\",\r\n \"createdAt\": \"2021-05-24T19:31:02.89Z\",\r\n \"updatedAt\": \"2021-05-24T19:32:55.72Z\",\r\n \"serviceBusEndpoint\": \"https://manojprasad-eventhubs-premium.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\": 2\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ardsouza-test-5-19/providers/Microsoft.EventHub/namespaces/ardsouza-premium-aztest-5-24-deleteme\",\r\n \"name\": \"ardsouza-premium-aztest-5-24-deleteme\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West Europe\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": true,\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-premium-aztest-5-24-deleteme\",\r\n \"createdAt\": \"2021-05-24T23:11:51.05Z\",\r\n \"updatedAt\": \"2021-05-24T23:15:24.323Z\",\r\n \"serviceBusEndpoint\": \"https://ardsouza-premium-aztest-5-24-deleteme.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\": 2\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ardsouza-test-5-19/providers/Microsoft.EventHub/namespaces/ardsouza-westus-2-ehprem\",\r\n \"name\": \"ardsouza-westus-2-ehprem\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": true,\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-westus-2-ehprem\",\r\n \"createdAt\": \"2021-05-25T14:10:07.963Z\",\r\n \"updatedAt\": \"2021-05-25T14:14:10.663Z\",\r\n \"serviceBusEndpoint\": \"https://ardsouza-westus-2-ehprem.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\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/kindrasiri_eh_premium_benchmarking/providers/Microsoft.EventHub/namespaces/ehpremium\",\r\n \"name\": \"ehpremium\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"East US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": true,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:ehpremium\",\r\n \"createdAt\": \"2021-05-25T22:33:28.69Z\",\r\n \"updatedAt\": \"2021-09-24T04:29:41.343Z\",\r\n \"serviceBusEndpoint\": \"https://ehpremium.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/bailiu-servicebus-test-resources/providers/Microsoft.EventHub/namespaces/bailiu-eventhubs-test-centralus\",\r\n \"name\": \"bailiu-eventhubs-test-centralus\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"Central US EUAP\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:bailiu-eventhubs-test-centralus\",\r\n \"createdAt\": \"2021-06-07T17:52:17.123Z\",\r\n \"updatedAt\": \"2021-06-07T17:53:05.263Z\",\r\n \"serviceBusEndpoint\": \"https://bailiu-eventhubs-test-centralus.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/bailiu-servicebus-test-resources/providers/Microsoft.EventHub/namespaces/bailiu-eventhubs-test-westus2\",\r\n \"name\": \"bailiu-eventhubs-test-westus2\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": true,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:bailiu-eventhubs-test-westus2\",\r\n \"createdAt\": \"2021-06-07T19:23:45.427Z\",\r\n \"updatedAt\": \"2021-06-07T19:24:33.517Z\",\r\n \"serviceBusEndpoint\": \"https://bailiu-eventhubs-test-westus2.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/assures-geodr-prod/providers/Microsoft.EventHub/namespaces/geodr-primary\",\r\n \"name\": \"geodr-primary\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": true,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:geodr-primary\",\r\n \"createdAt\": \"2021-06-10T17:40:59.263Z\",\r\n \"updatedAt\": \"2021-06-18T03:14:01.397Z\",\r\n \"serviceBusEndpoint\": \"https://geodr-primary.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/assures-geodr-prod/providers/Microsoft.EventHub/namespaces/geodr-secondary-1\",\r\n \"name\": \"geodr-secondary-1\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": true,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:geodr-secondary-1\",\r\n \"createdAt\": \"2021-06-10T17:45:12.537Z\",\r\n \"updatedAt\": \"2021-06-18T03:14:01.017Z\",\r\n \"serviceBusEndpoint\": \"https://geodr-secondary-1.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\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/shsama-rg/providers/Microsoft.EventHub/namespaces/ehwhitelisttest\",\r\n \"name\": \"ehwhitelisttest\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"East US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": true,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:ehwhitelisttest\",\r\n \"createdAt\": \"2021-06-14T22:09:08.543Z\",\r\n \"updatedAt\": \"2021-06-14T22:10:26.767Z\",\r\n \"serviceBusEndpoint\": \"https://ehwhitelisttest.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/EventHubsVNETTestingRG/providers/Microsoft.EventHub/namespaces/ali-bypass-test\",\r\n \"name\": \"ali-bypass-test\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West Central US\",\r\n \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/dbedb4e0-40e6-4145-81f3-f1314c150774/resourceGroups/alitest/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ali-id-1\": {\r\n \"clientId\": \"16bc3fc1-8bc8-46a4-bd4d-583104db7d9a\",\r\n \"principalId\": \"6b03c867-9188-427a-a440-2d0e624c95cb\"\r\n }\r\n }\r\n },\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"encryption\": {\r\n \"keySource\": \"Microsoft.KeyVault\",\r\n \"keyVaultProperties\": [\r\n {\r\n \"keyName\": \"al-key\",\r\n \"keyVaultUri\": \"https://ali-kv.vault.azure.net\",\r\n \"keyVersion\": \"\",\r\n \"identity\": {\r\n \"userAssignedIdentity\": \"/subscriptions/dbedb4e0-40e6-4145-81f3-f1314c150774/resourceGroups/alitest/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ali-id-1\"\r\n }\r\n }\r\n ],\r\n \"requireInfrastructureEncryption\": false\r\n },\r\n \"clusterArmId\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/EventHubsVNETTestingRG/providers/Microsoft.EventHub/clusters/EventHubsVNetTesting\",\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:ali-bypass-test\",\r\n \"createdAt\": \"2021-06-14T22:19:01.01Z\",\r\n \"updatedAt\": \"2021-09-18T21:56:13.387Z\",\r\n \"serviceBusEndpoint\": \"https://ali-bypass-test.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\": 4\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/sjrg/providers/Microsoft.EventHub/namespaces/sjmwhpremium\",\r\n \"name\": \"sjmwhpremium\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": true,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:sjmwhpremium\",\r\n \"createdAt\": \"2021-06-15T04:32:43.893Z\",\r\n \"updatedAt\": \"2021-09-15T16:49:44.363Z\",\r\n \"serviceBusEndpoint\": \"https://sjmwhpremium.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/kindrasiri-synapse-test-rg/providers/Microsoft.EventHub/namespaces/azuremsgtest\",\r\n \"name\": \"azuremsgtest\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:azuremsgtest\",\r\n \"createdAt\": \"2021-07-01T01:43:16.197Z\",\r\n \"updatedAt\": \"2021-07-01T01:44:09.693Z\",\r\n \"serviceBusEndpoint\": \"https://azuremsgtest.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/dorothytest/providers/Microsoft.EventHub/namespaces/vnetehtest\",\r\n \"name\": \"vnetehtest\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:vnetehtest\",\r\n \"createdAt\": \"2021-07-01T22:51:08.083Z\",\r\n \"updatedAt\": \"2021-07-01T22:52:00.777Z\",\r\n \"serviceBusEndpoint\": \"https://vnetehtest.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\": 2\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/sjrgcbn/providers/Microsoft.EventHub/namespaces/sjpremiumcbnns\",\r\n \"name\": \"sjpremiumcbnns\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"EAST US 2 EUAP\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:sjpremiumcbnns\",\r\n \"createdAt\": \"2021-07-02T20:52:00.477Z\",\r\n \"updatedAt\": \"2021-07-02T22:13:32.103Z\",\r\n \"serviceBusEndpoint\": \"https://sjpremiumcbnns.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/sjrgcbn/providers/Microsoft.EventHub/namespaces/sjcbnstandard\",\r\n \"name\": \"sjcbnstandard\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"EAST US 2 EUAP\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": true,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:sjcbnstandard\",\r\n \"createdAt\": \"2021-07-03T06:59:07.623Z\",\r\n \"updatedAt\": \"2021-07-03T06:59:56.193Z\",\r\n \"serviceBusEndpoint\": \"https://sjcbnstandard.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/assures-kafka/providers/Microsoft.EventHub/namespaces/kafka-perf-decrease\",\r\n \"name\": \"kafka-perf-decrease\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:kafka-perf-decrease\",\r\n \"createdAt\": \"2021-07-06T18:21:46.48Z\",\r\n \"updatedAt\": \"2021-07-06T18:22:48.857Z\",\r\n \"serviceBusEndpoint\": \"https://kafka-perf-decrease.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-CentralUSEUAP/providers/Microsoft.EventHub/namespaces/hmlam-cdm03-502\",\r\n \"name\": \"hmlam-cdm03-502\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"Central US EUAP\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:hmlam-cdm03-502\",\r\n \"createdAt\": \"2021-07-07T01:31:09.74Z\",\r\n \"updatedAt\": \"2021-07-14T00:06:10.6Z\",\r\n \"serviceBusEndpoint\": \"https://hmlam-cdm03-502.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/PPGTest/providers/Microsoft.EventHub/namespaces/TestEHSys0705\",\r\n \"name\": \"TestEHSys0705\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"Central US EUAP\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:testehsys0705\",\r\n \"createdAt\": \"2021-07-07T20:50:02.06Z\",\r\n \"updatedAt\": \"2021-07-07T20:50:49.037Z\",\r\n \"serviceBusEndpoint\": \"https://TestEHSys0705.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/disablelocalauth/providers/Microsoft.EventHub/namespaces/ardsouza-disablelocalauth-canary-test1\",\r\n \"name\": \"ardsouza-disablelocalauth-canary-test1\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"EAST US 2 EUAP\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": true,\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-disablelocalauth-canary-test1\",\r\n \"createdAt\": \"2021-07-13T22:20:11.607Z\",\r\n \"updatedAt\": \"2021-07-13T22:21:11.107Z\",\r\n \"serviceBusEndpoint\": \"https://ardsouza-disablelocalauth-canary-test1.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/disablelocalauth/providers/Microsoft.EventHub/namespaces/ardsouza-disablelocalauth-canary-test2\",\r\n \"name\": \"ardsouza-disablelocalauth-canary-test2\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"EAST US 2 EUAP\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": true,\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-disablelocalauth-canary-test2\",\r\n \"createdAt\": \"2021-07-13T22:57:04.87Z\",\r\n \"updatedAt\": \"2021-07-13T23:54:08.33Z\",\r\n \"serviceBusEndpoint\": \"https://ardsouza-disablelocalauth-canary-test2.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/PPGTest/providers/Microsoft.EventHub/namespaces/TestSysTopicCan0716\",\r\n \"name\": \"TestSysTopicCan0716\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"EAST US 2 EUAP\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": true,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:testsystopiccan0716\",\r\n \"createdAt\": \"2021-07-16T21:48:26.007Z\",\r\n \"updatedAt\": \"2021-07-16T21:49:17.663Z\",\r\n \"serviceBusEndpoint\": \"https://TestSysTopicCan0716.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-westeurope-test/providers/Microsoft.EventHub/namespaces/ardsouza-07-2021-capture-adls2test\",\r\n \"name\": \"ardsouza-07-2021-capture-adls2test\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"Southeast Asia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": true,\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-07-2021-capture-adls2test\",\r\n \"createdAt\": \"2021-07-27T17:35:55.01Z\",\r\n \"updatedAt\": \"2021-07-27T17:36:46.08Z\",\r\n \"serviceBusEndpoint\": \"https://ardsouza-07-2021-capture-adls2test.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\": 2\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/sjrg/providers/Microsoft.EventHub/namespaces/sjpremiumyt\",\r\n \"name\": \"sjpremiumyt\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"Canada Central\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": true,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:sjpremiumyt\",\r\n \"createdAt\": \"2021-07-30T16:58:37.797Z\",\r\n \"updatedAt\": \"2021-09-08T18:47:53.797Z\",\r\n \"serviceBusEndpoint\": \"https://sjpremiumyt.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\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/sjrg/providers/Microsoft.EventHub/namespaces/sjpremiumsy1\",\r\n \"name\": \"sjpremiumsy1\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"Australia East\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": true,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:sjpremiumsy1\",\r\n \"createdAt\": \"2021-07-30T17:57:47.803Z\",\r\n \"updatedAt\": \"2021-07-30T17:59:25.597Z\",\r\n \"serviceBusEndpoint\": \"https://sjpremiumsy1.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-CentralUSEUAP/providers/Microsoft.EventHub/namespaces/drdrillPrimary08022021\",\r\n \"name\": \"drdrillPrimary08022021\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"Central US EUAP\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:drdrillprimary08022021\",\r\n \"createdAt\": \"2021-07-31T01:33:40.18Z\",\r\n \"updatedAt\": \"2021-08-30T23:20:31.35Z\",\r\n \"serviceBusEndpoint\": \"https://drdrillPrimary08022021.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/zztestrg/providers/Microsoft.EventHub/namespaces/zzns01-pltest\",\r\n \"name\": \"zzns01-pltest\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": true,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:zzns01-pltest\",\r\n \"createdAt\": \"2021-08-23T23:02:28.61Z\",\r\n \"updatedAt\": \"2021-08-23T23:03:15.843Z\",\r\n \"serviceBusEndpoint\": \"https://zzns01-pltest.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/schiller-aa/providers/Microsoft.EventHub/namespaces/aa-test-namespace\",\r\n \"name\": \"aa-test-namespace\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:aa-test-namespace\",\r\n \"createdAt\": \"2021-08-25T14:08:23.25Z\",\r\n \"updatedAt\": \"2021-08-25T14:09:11.517Z\",\r\n \"serviceBusEndpoint\": \"https://aa-test-namespace.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/EventHubsVNETTestingRG/providers/Microsoft.EventHub/namespaces/schiller-aa-namespace\",\r\n \"name\": \"schiller-aa-namespace\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"clusterArmId\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/EventHubsVNETTestingRG/providers/Microsoft.EventHub/clusters/EventHubsVNetTesting\",\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:schiller-aa-namespace\",\r\n \"createdAt\": \"2021-08-25T19:00:29.82Z\",\r\n \"updatedAt\": \"2021-08-25T19:01:16.553Z\",\r\n \"serviceBusEndpoint\": \"https://schiller-aa-namespace.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/EventHubsVNETTestingRG/providers/Microsoft.EventHub/namespaces/testMSI01060825\",\r\n \"name\": \"testMSI01060825\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West Central US\",\r\n \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/1196a38f-8e8a-4916-9056-787c19a53125/resourcegroups/ppgtest/providers/microsoft.managedidentity/userassignedidentities/testuai0618\": {\r\n \"clientId\": \"12e5b965-1d50-4d1b-b1df-a805dce0f0ec\",\r\n \"principalId\": \"aeb481c1-762b-474e-b6c6-86c67433a9ea\"\r\n }\r\n }\r\n },\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"encryption\": {\r\n \"keySource\": \"Microsoft.KeyVault\",\r\n \"keyVaultProperties\": [\r\n {\r\n \"keyName\": \"testkey0618\",\r\n \"keyVaultUri\": \"https://testkv0618.vault.azure.net\",\r\n \"keyVersion\": \"\",\r\n \"identity\": {\r\n \"userAssignedIdentity\": \"/subscriptions/1196a38f-8e8a-4916-9056-787c19a53125/resourcegroups/ppgtest/providers/microsoft.managedidentity/userassignedidentities/testuai0618\"\r\n }\r\n }\r\n ],\r\n \"requireInfrastructureEncryption\": false\r\n },\r\n \"clusterArmId\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/EventHubsVNETTestingRG/providers/Microsoft.EventHub/clusters/EventHubsVNetTesting\",\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:testmsi01060825\",\r\n \"createdAt\": \"2021-08-25T21:21:21.967Z\",\r\n \"updatedAt\": \"2021-08-25T21:26:16.927Z\",\r\n \"serviceBusEndpoint\": \"https://testMSI01060825.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.EventHub/namespaces?api-version=2021-06-01-preview&$skipToken=2021-08-25T21:21:21.967Z\"\r\n}", + "ResponseBody": "{\r\n \"value\": [\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 \"disableLocalAuth\": false,\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\": 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 \"disableLocalAuth\": false,\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/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 \"disableLocalAuth\": false,\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-06-15T14:20:00.153Z\",\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/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 \"disableLocalAuth\": false,\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/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 \"disableLocalAuth\": false,\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/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 \"disableLocalAuth\": false,\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/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 \"disableLocalAuth\": false,\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\": 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 \"disableLocalAuth\": false,\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/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 \"disableLocalAuth\": false,\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\": 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 \"disableLocalAuth\": false,\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/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 \"disableLocalAuth\": false,\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\": \"Premium\",\r\n \"tier\": \"Premium\",\r\n \"capacity\": 1\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 \"disableLocalAuth\": false,\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"clusterArmId\": \"/subscriptions/f7d26b87-63a8-4d84-93b3-e22dcf545c83/resourceGroups/rg-spark-na903/providers/Microsoft.EventHub/clusters/spark-na903-src-eh-cl1\",\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\": \"2021-04-13T22:12:05.26Z\",\r\n \"serviceBusEndpoint\": \"https://FirewallTestEHNS.servicebus.windows.net:443/\",\r\n \"status\": \"Removing\"\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 \"disableLocalAuth\": false,\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\": 2\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 \"disableLocalAuth\": false,\r\n \"zoneRedundant\": true,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\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-15T21:59:51.447Z\",\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\": \"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 \"disableLocalAuth\": false,\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/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 \"disableLocalAuth\": false,\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/shubhatestrg/providers/Microsoft.EventHub/namespaces/uxdemoforsr\",\r\n \"name\": \"uxdemoforsr\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:uxdemoforsr\",\r\n \"createdAt\": \"2020-05-21T19:41:03.867Z\",\r\n \"updatedAt\": \"2020-05-21T19:41:50.97Z\",\r\n \"serviceBusEndpoint\": \"https://uxdemoforsr.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/v-ajnavtest/providers/Microsoft.EventHub/namespaces/testingnew2018\",\r\n \"name\": \"testingnew2018\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:testingnew2018\",\r\n \"createdAt\": \"2020-06-14T21:02:16.57Z\",\r\n \"updatedAt\": \"2020-06-14T21:03:04.417Z\",\r\n \"serviceBusEndpoint\": \"https://testingnew2018.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/v-ajnavtest/providers/Microsoft.EventHub/namespaces/testingnew20181\",\r\n \"name\": \"testingnew20181\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"East US\",\r\n \"tags\": {},\r\n \"identity\": {\r\n \"principalId\": \"941b9c7d-e77d-485b-bed7-bcf43fa5a61d\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": true,\r\n \"isAutoInflateEnabled\": true,\r\n \"maximumThroughputUnits\": 12,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:testingnew20181\",\r\n \"createdAt\": \"2020-06-14T23:00:04.573Z\",\r\n \"updatedAt\": \"2021-11-02T22:55:11.343Z\",\r\n \"serviceBusEndpoint\": \"https://testingnew20181.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/clemensv8\",\r\n \"name\": \"clemensv8\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"North Europe\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:clemensv8\",\r\n \"createdAt\": \"2020-06-15T14:23:25.007Z\",\r\n \"updatedAt\": \"2020-06-15T14:52:08.377Z\",\r\n \"serviceBusEndpoint\": \"https://clemensv8.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\": 7\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/shubhatestrg/providers/Microsoft.EventHub/namespaces/tesgeotus\",\r\n \"name\": \"tesgeotus\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"East US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:tesgeotus\",\r\n \"createdAt\": \"2020-06-17T17:57:59.207Z\",\r\n \"updatedAt\": \"2020-06-17T18:22:37.757Z\",\r\n \"serviceBusEndpoint\": \"https://tesgeotus.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\": 7\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/shubhatestrg/providers/Microsoft.EventHub/namespaces/testgeotusec\",\r\n \"name\": \"testgeotusec\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:testgeotusec\",\r\n \"createdAt\": \"2020-06-17T18:19:55.487Z\",\r\n \"updatedAt\": \"2020-06-17T18:22:38.017Z\",\r\n \"serviceBusEndpoint\": \"https://testgeotusec.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-6828/providers/Microsoft.EventHub/namespaces/sdk-NS-2916\",\r\n \"name\": \"sdk-NS-2916\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": true,\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-2916\",\r\n \"createdAt\": \"2020-06-17T19:28:29.223Z\",\r\n \"updatedAt\": \"2020-06-17T19:29:19.167Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-2916.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/rg-schema-registry/providers/Microsoft.EventHub/namespaces/sr-playground\",\r\n \"name\": \"sr-playground\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"clusterArmId\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/sjrg/providers/Microsoft.EventHub/clusters/SchemaRegistryPreviewCluster\",\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:sr-playground\",\r\n \"createdAt\": \"2020-06-19T05:01:58.623Z\",\r\n \"updatedAt\": \"2020-06-19T05:05:36.437Z\",\r\n \"serviceBusEndpoint\": \"https://sr-playground.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/sjschemaregistry1\",\r\n \"name\": \"sjschemaregistry1\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"clusterArmId\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/sjrg/providers/Microsoft.EventHub/clusters/SchemaRegistryPreviewCluster\",\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:sjschemaregistry1\",\r\n \"createdAt\": \"2020-06-30T01:25:15.193Z\",\r\n \"updatedAt\": \"2020-06-30T01:26:03.24Z\",\r\n \"serviceBusEndpoint\": \"https://sjschemaregistry1.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/sjcueuap\",\r\n \"name\": \"sjcueuap\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"Central US EUAP\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:sjcueuap\",\r\n \"createdAt\": \"2020-07-07T01:19:52.39Z\",\r\n \"updatedAt\": \"2020-07-07T01:20:41.063Z\",\r\n \"serviceBusEndpoint\": \"https://sjcueuap.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/sjcentralindia\",\r\n \"name\": \"sjcentralindia\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"Central India\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:sjcentralindia\",\r\n \"createdAt\": \"2020-07-09T04:47:59.847Z\",\r\n \"updatedAt\": \"2020-07-09T04:48:59.697Z\",\r\n \"serviceBusEndpoint\": \"https://sjcentralindia.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/sjsouthindia\",\r\n \"name\": \"sjsouthindia\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"South India\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:sjsouthindia\",\r\n \"createdAt\": \"2020-07-25T17:37:49.96Z\",\r\n \"updatedAt\": \"2020-07-25T17:38:37.753Z\",\r\n \"serviceBusEndpoint\": \"https://sjsouthindia.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/rg-sr-bugbash/providers/Microsoft.EventHub/namespaces/sr-bugbash\",\r\n \"name\": \"sr-bugbash\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"clusterArmId\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/sjrg/providers/Microsoft.EventHub/clusters/SchemaRegistryPreviewCluster\",\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:sr-bugbash\",\r\n \"createdAt\": \"2020-08-17T00:01:00.033Z\",\r\n \"updatedAt\": \"2020-09-16T07:37:17.6Z\",\r\n \"serviceBusEndpoint\": \"https://sr-bugbash.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/zztestsecondary\",\r\n \"name\": \"zztestsecondary\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:zztestsecondary\",\r\n \"createdAt\": \"2020-08-26T20:46:48.983Z\",\r\n \"updatedAt\": \"2020-08-26T20:53:01.247Z\",\r\n \"serviceBusEndpoint\": \"https://zztestsecondary.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/zztestprimary\",\r\n \"name\": \"zztestprimary\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"East US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:zztestprimary\",\r\n \"createdAt\": \"2020-08-26T20:50:24.767Z\",\r\n \"updatedAt\": \"2020-08-26T20:53:01.247Z\",\r\n \"serviceBusEndpoint\": \"https://zztestprimary.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\": 8\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-WestEurope/providers/Microsoft.EventHub/namespaces/ns-localstore-scenario-10\",\r\n \"name\": \"ns-localstore-scenario-10\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West Europe\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:ns-localstore-scenario-10\",\r\n \"createdAt\": \"2020-09-06T17:24:27.343Z\",\r\n \"updatedAt\": \"2020-10-22T11:14:36.25Z\",\r\n \"serviceBusEndpoint\": \"https://ns-localstore-scenario-10.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/EventHubsVNETTestingRG/providers/Microsoft.EventHub/namespaces/sj-westcentralus\",\r\n \"name\": \"sj-westcentralus\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"clusterArmId\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/EventHubsVNETTestingRG/providers/Microsoft.EventHub/clusters/EventHubsVNetTesting\",\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:sj-westcentralus\",\r\n \"createdAt\": \"2020-09-23T00:07:29.707Z\",\r\n \"updatedAt\": \"2020-09-23T00:08:20.437Z\",\r\n \"serviceBusEndpoint\": \"https://sj-westcentralus.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/sjschemaregistry\",\r\n \"name\": \"sjschemaregistry\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:sjschemaregistry\",\r\n \"createdAt\": \"2020-09-29T19:00:19.527Z\",\r\n \"updatedAt\": \"2020-09-29T19:01:09.967Z\",\r\n \"serviceBusEndpoint\": \"https://sjschemaregistry.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/jfgRsrcGrp16/providers/Microsoft.EventHub/namespaces/jfgEvtHbNmspc1\",\r\n \"name\": \"jfgEvtHbNmspc1\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:jfgevthbnmspc1\",\r\n \"createdAt\": \"2020-10-19T02:50:21.05Z\",\r\n \"updatedAt\": \"2020-10-19T02:51:09.65Z\",\r\n \"serviceBusEndpoint\": \"https://jfgEvtHbNmspc1.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/zztestrg/providers/Microsoft.EventHub/namespaces/zztest03\",\r\n \"name\": \"zztest03\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:zztest03\",\r\n \"createdAt\": \"2020-10-20T21:48:16.673Z\",\r\n \"updatedAt\": \"2020-10-20T21:55:37.617Z\",\r\n \"serviceBusEndpoint\": \"https://zztest03.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/zztestrg/providers/Microsoft.EventHub/namespaces/zztest04\",\r\n \"name\": \"zztest04\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:zztest04\",\r\n \"createdAt\": \"2020-10-20T21:48:58.127Z\",\r\n \"updatedAt\": \"2020-10-20T21:57:59.613Z\",\r\n \"serviceBusEndpoint\": \"https://zztest04.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/sakoppes_test/providers/Microsoft.EventHub/namespaces/SamKoppesTestEHNamespace1\",\r\n \"name\": \"SamKoppesTestEHNamespace1\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"East US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:samkoppestestehnamespace1\",\r\n \"createdAt\": \"2020-10-23T17:59:47.117Z\",\r\n \"updatedAt\": \"2020-10-23T18:00:38.657Z\",\r\n \"serviceBusEndpoint\": \"https://SamKoppesTestEHNamespace1.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/hmlam-bn3-556\",\r\n \"name\": \"hmlam-bn3-556\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"clusterArmId\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/sjrg/providers/Microsoft.EventHub/clusters/SchemaRegistryPreviewCluster\",\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:hmlam-bn3-556\",\r\n \"createdAt\": \"2020-10-31T05:46:03.81Z\",\r\n \"updatedAt\": \"2020-10-31T05:46:54.773Z\",\r\n \"serviceBusEndpoint\": \"https://hmlam-bn3-556.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/jfgRsrcGrp18/providers/Microsoft.EventHub/namespaces/ADX-EG-jfgdataexplorer1\",\r\n \"name\": \"ADX-EG-jfgdataexplorer1\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"East US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:adx-eg-jfgdataexplorer1\",\r\n \"createdAt\": \"2020-11-09T16:50:22.813Z\",\r\n \"updatedAt\": \"2020-11-09T16:51:22.947Z\",\r\n \"serviceBusEndpoint\": \"https://ADX-EG-jfgdataexplorer1.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/manojprasad-rampup/providers/Microsoft.EventHub/namespaces/eventhub-nmp\",\r\n \"name\": \"eventhub-nmp\",\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 \"disableLocalAuth\": false,\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:eventhub-nmp\",\r\n \"createdAt\": \"2020-12-28T18:50:46.36Z\",\r\n \"updatedAt\": \"2021-04-21T23:21:24.477Z\",\r\n \"serviceBusEndpoint\": \"https://eventhub-nmp.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/PPGTestPG/providers/Microsoft.EventHub/namespaces/TestEHSys0121\",\r\n \"name\": \"TestEHSys0121\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"EAST US 2 EUAP\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:testehsys0121\",\r\n \"createdAt\": \"2021-01-22T23:59:08.403Z\",\r\n \"updatedAt\": \"2021-01-22T23:59:53.9Z\",\r\n \"serviceBusEndpoint\": \"https://TestEHSys0121.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/PPGTestPG/providers/Microsoft.EventHub/namespaces/TestEH0125\",\r\n \"name\": \"TestEH0125\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"EAST US 2 EUAP\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:testeh0125\",\r\n \"createdAt\": \"2021-01-26T21:05:50.063Z\",\r\n \"updatedAt\": \"2021-01-26T21:06:39.467Z\",\r\n \"serviceBusEndpoint\": \"https://TestEH0125.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-WestUS2/providers/Microsoft.EventHub/namespaces/hmlam-2-mwh01-510\",\r\n \"name\": \"hmlam-2-mwh01-510\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:hmlam-2-mwh01-510\",\r\n \"createdAt\": \"2021-01-27T21:26:17.357Z\",\r\n \"updatedAt\": \"2021-10-11T17:52:07.59Z\",\r\n \"serviceBusEndpoint\": \"https://hmlam-2-mwh01-510.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/EventHubsVNETTestingRG/providers/Microsoft.EventHub/namespaces/testencypt0128\",\r\n \"name\": \"testencypt0128\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West Central US\",\r\n \"tags\": {},\r\n \"identity\": {\r\n \"principalId\": \"e9d041e2-62a8-41c8-9b88-71031dbf2695\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"encryption\": {\r\n \"keySource\": \"Microsoft.KeyVault\",\r\n \"keyVaultProperties\": [\r\n {\r\n \"keyName\": \"testkey\",\r\n \"keyVaultUri\": \"https://testrbac0113.vault.azure.net\",\r\n \"keyVersion\": \"\"\r\n }\r\n ],\r\n \"requireInfrastructureEncryption\": false\r\n },\r\n \"clusterArmId\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/EventHubsVNETTestingRG/providers/Microsoft.EventHub/clusters/EventHubsVNetTesting\",\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:testencypt0128\",\r\n \"createdAt\": \"2021-01-29T03:11:24.39Z\",\r\n \"updatedAt\": \"2021-11-01T03:08:07.49Z\",\r\n \"serviceBusEndpoint\": \"https://testencypt0128.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/xcrg/providers/Microsoft.EventHub/namespaces/byok-offset-test\",\r\n \"name\": \"byok-offset-test\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"Central US EUAP\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:byok-offset-test\",\r\n \"createdAt\": \"2021-02-09T17:53:55.587Z\",\r\n \"updatedAt\": \"2021-02-09T18:00:15.627Z\",\r\n \"serviceBusEndpoint\": \"https://byok-offset-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/xcrg/providers/Microsoft.EventHub/namespaces/byok-ot-test\",\r\n \"name\": \"byok-ot-test\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"EAST US 2 EUAP\",\r\n \"tags\": {},\r\n \"identity\": {\r\n \"principalId\": \"a2a77dd1-1a20-4640-a408-2a254a9e0b69\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"encryption\": {\r\n \"keySource\": \"Microsoft.KeyVault\",\r\n \"keyVaultProperties\": [\r\n {\r\n \"keyName\": \"offset-journal-byok\",\r\n \"keyVaultUri\": \"https://xc-test.vault.azure.net\",\r\n \"keyVersion\": \"\"\r\n }\r\n ],\r\n \"requireInfrastructureEncryption\": false\r\n },\r\n \"clusterArmId\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/prod-cbn04-503-533-rg/providers/Microsoft.EventHub/clusters/CBN04-503\",\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:byok-ot-test\",\r\n \"createdAt\": \"2021-02-09T19:17:55.363Z\",\r\n \"updatedAt\": \"2021-11-12T21:36:13.557Z\",\r\n \"serviceBusEndpoint\": \"https://byok-ot-test.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/jfgWalmart1/providers/Microsoft.EventHub/namespaces/jfgEH-Wmt-1\",\r\n \"name\": \"jfgEH-Wmt-1\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"East US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:jfgeh-wmt-1\",\r\n \"createdAt\": \"2021-02-14T23:49:41.33Z\",\r\n \"updatedAt\": \"2021-02-14T23:50:33.71Z\",\r\n \"serviceBusEndpoint\": \"https://jfgEH-Wmt-1.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/jfgWalmart1/providers/Microsoft.EventHub/namespaces/jfgEH-Wmt-2\",\r\n \"name\": \"jfgEH-Wmt-2\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"East US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:jfgeh-wmt-2\",\r\n \"createdAt\": \"2021-02-15T02:12:43.573Z\",\r\n \"updatedAt\": \"2021-02-15T02:13:30.477Z\",\r\n \"serviceBusEndpoint\": \"https://jfgEH-Wmt-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/sjrg/providers/Microsoft.EventHub/namespaces/sjwestus2\",\r\n \"name\": \"sjwestus2\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:sjwestus2\",\r\n \"createdAt\": \"2021-02-18T06:26:28.413Z\",\r\n \"updatedAt\": \"2021-02-18T06:27:16.157Z\",\r\n \"serviceBusEndpoint\": \"https://sjwestus2.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/ehspringboot\",\r\n \"name\": \"ehspringboot\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:ehspringboot\",\r\n \"createdAt\": \"2021-02-26T01:37:31.123Z\",\r\n \"updatedAt\": \"2021-02-26T01:38:18.35Z\",\r\n \"serviceBusEndpoint\": \"https://ehspringboot.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/useridentities/providers/Microsoft.EventHub/namespaces/icmtest-1\",\r\n \"name\": \"icmtest-1\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"East US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:icmtest-1\",\r\n \"createdAt\": \"2021-03-05T19:07:00.873Z\",\r\n \"updatedAt\": \"2021-03-05T19:07:51.14Z\",\r\n \"serviceBusEndpoint\": \"https://icmtest-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/useridentities/providers/Microsoft.EventHub/namespaces/icm-testing\",\r\n \"name\": \"icm-testing\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"East US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:icm-testing\",\r\n \"createdAt\": \"2021-03-05T19:36:02.113Z\",\r\n \"updatedAt\": \"2021-03-05T19:36:54.433Z\",\r\n \"serviceBusEndpoint\": \"https://icm-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/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-EASTUS2EUAP/providers/Microsoft.EventHub/namespaces/sarama-gw-fix-verify\",\r\n \"name\": \"sarama-gw-fix-verify\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"EAST US 2 EUAP\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:sarama-gw-fix-verify\",\r\n \"createdAt\": \"2021-03-09T02:35:20.1Z\",\r\n \"updatedAt\": \"2021-03-09T02:36:08.687Z\",\r\n \"serviceBusEndpoint\": \"https://sarama-gw-fix-verify.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-cbn04-503-533-rg/providers/Microsoft.EventHub/namespaces/clemen-test-eh-sa\",\r\n \"name\": \"clemen-test-eh-sa\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"EAST US 2 EUAP\",\r\n \"tags\": {},\r\n \"identity\": {\r\n \"principalId\": \"b4b473dd-8d23-45ab-9f29-deee83baf0b1\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:clemen-test-eh-sa\",\r\n \"createdAt\": \"2021-03-31T20:02:42.077Z\",\r\n \"updatedAt\": \"2021-10-01T19:57:09.467Z\",\r\n \"serviceBusEndpoint\": \"https://clemen-test-eh-sa.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/DisablePublicAccesTesting/providers/Microsoft.EventHub/namespaces/DisablePublicAccessTesting-EHStandard\",\r\n \"name\": \"DisablePublicAccessTesting-EHStandard\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"EAST US 2 EUAP\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:disablepublicaccesstesting-ehstandard\",\r\n \"createdAt\": \"2021-04-06T15:53:47.477Z\",\r\n \"updatedAt\": \"2021-04-06T15:54:32.47Z\",\r\n \"serviceBusEndpoint\": \"https://DisablePublicAccessTesting-EHStandard.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/arthur/providers/Microsoft.EventHub/namespaces/arerlend-sr-test\",\r\n \"name\": \"arerlend-sr-test\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:arerlend-sr-test\",\r\n \"createdAt\": \"2021-04-16T05:43:31.857Z\",\r\n \"updatedAt\": \"2021-04-16T05:44:16.807Z\",\r\n \"serviceBusEndpoint\": \"https://arerlend-sr-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/EHResourceGr1/providers/Microsoft.EventHub/namespaces/kasuneventhubs\",\r\n \"name\": \"kasuneventhubs\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"East US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:kasuneventhubs\",\r\n \"createdAt\": \"2021-04-16T22:17:03.377Z\",\r\n \"updatedAt\": \"2021-10-13T20:55:24.767Z\",\r\n \"serviceBusEndpoint\": \"https://kasuneventhubs.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-cbn04-503-533-rg/providers/Microsoft.EventHub/namespaces/assures-cgissue-test\",\r\n \"name\": \"assures-cgissue-test\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"EAST US 2 EUAP\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"clusterArmId\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/prod-cbn04-503-533-rg/providers/Microsoft.EventHub/clusters/CBN04-503\",\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:assures-cgissue-test\",\r\n \"createdAt\": \"2021-05-01T01:32:54.81Z\",\r\n \"updatedAt\": \"2021-05-01T01:33:47.6Z\",\r\n \"serviceBusEndpoint\": \"https://assures-cgissue-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\": 2\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/kindrasiri_eh_benchmark/providers/Microsoft.EventHub/namespaces/ehbenchmark\",\r\n \"name\": \"ehbenchmark\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"East US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:ehbenchmark\",\r\n \"createdAt\": \"2021-05-03T16:12:09.03Z\",\r\n \"updatedAt\": \"2021-05-03T16:12:56.44Z\",\r\n \"serviceBusEndpoint\": \"https://ehbenchmark.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-cbn04-503-533-rg/providers/Microsoft.EventHub/namespaces/assures-cgissue-test-2\",\r\n \"name\": \"assures-cgissue-test-2\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"EAST US 2 EUAP\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"clusterArmId\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/prod-cbn04-503-533-rg/providers/Microsoft.EventHub/clusters/CBN04-503\",\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:assures-cgissue-test-2\",\r\n \"createdAt\": \"2021-05-06T19:38:04.303Z\",\r\n \"updatedAt\": \"2021-05-06T19:38:59.563Z\",\r\n \"serviceBusEndpoint\": \"https://assures-cgissue-test-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/v-ajnavtest/providers/Microsoft.EventHub/namespaces/testcluster-test2-eastus-eh-d-ns\",\r\n \"name\": \"testcluster-test2-eastus-eh-d-ns\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"East US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"clusterArmId\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/v-ajnavtest/providers/Microsoft.EventHub/clusters/testingclusterarmtemplate\",\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:testcluster-test2-eastus-eh-d-ns\",\r\n \"createdAt\": \"2021-05-06T23:23:01.673Z\",\r\n \"updatedAt\": \"2021-05-06T23:24:07.72Z\",\r\n \"serviceBusEndpoint\": \"https://testcluster-test2-eastus-eh-d-ns.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\": 10\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ardsouza-test-5-19/providers/Microsoft.EventHub/namespaces/ardsouza-5-19-2020-deleteme-basic\",\r\n \"name\": \"ardsouza-5-19-2020-deleteme-basic\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"Canada Central\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": true,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:ardsouza-5-19-2020-deleteme-basic\",\r\n \"createdAt\": \"2021-05-20T01:26:36.323Z\",\r\n \"updatedAt\": \"2021-05-20T01:28:35.287Z\",\r\n \"serviceBusEndpoint\": \"https://ardsouza-5-19-2020-deleteme-basic.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/EventHubsVNETTestingRG/providers/Microsoft.EventHub/namespaces/TestMSiNew0520\",\r\n \"name\": \"TestMSiNew0520\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West Central US\",\r\n \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/ppgtest/providers/microsoft.managedidentity/userassignedidentities/testuai0412new\": {\r\n \"clientId\": \"ec83a3e2-bd7b-4e77-bde9-76ec42eb1d6a\",\r\n \"principalId\": \"2496443e-0c52-4245-84fb-6ee677269b16\"\r\n },\r\n \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/ppgtest/providers/microsoft.managedidentity/userassignedidentities/testuai0506\": {\r\n \"clientId\": \"40578752-05e9-4b8b-bdc4-f07e960571e0\",\r\n \"principalId\": \"406cc555-ce08-485a-a5a6-ef1ccc5e7bec\"\r\n }\r\n }\r\n },\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"encryption\": {\r\n \"keySource\": \"Microsoft.KeyVault\",\r\n \"keyVaultProperties\": [\r\n {\r\n \"keyName\": \"TestKey0506\",\r\n \"keyVaultUri\": \"https://testkv0506.vault.azure.net\",\r\n \"keyVersion\": \"\",\r\n \"identity\": {\r\n \"userAssignedIdentity\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/ppgtest/providers/microsoft.managedidentity/userassignedidentities/testuai0506\"\r\n }\r\n }\r\n ],\r\n \"requireInfrastructureEncryption\": false\r\n },\r\n \"clusterArmId\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/EventHubsVNETTestingRG/providers/Microsoft.EventHub/clusters/EventHubsVNetTesting\",\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:testmsinew0520\",\r\n \"createdAt\": \"2021-05-20T22:42:14.17Z\",\r\n \"updatedAt\": \"2021-08-06T19:47:08.883Z\",\r\n \"serviceBusEndpoint\": \"https://TestMSiNew0520.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\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/sjrg/providers/Microsoft.EventHub/namespaces/sjpremiumwe\",\r\n \"name\": \"sjpremiumwe\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West Europe\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": true,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:sjpremiumwe\",\r\n \"createdAt\": \"2021-05-21T18:16:42.207Z\",\r\n \"updatedAt\": \"2021-05-25T05:53:39.053Z\",\r\n \"serviceBusEndpoint\": \"https://sjpremiumwe.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\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/manojprasad-rampup/providers/Microsoft.EventHub/namespaces/manojprasad-eventhubs-premium\",\r\n \"name\": \"manojprasad-eventhubs-premium\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"Australia East\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": true,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:manojprasad-eventhubs-premium\",\r\n \"createdAt\": \"2021-05-24T19:31:02.89Z\",\r\n \"updatedAt\": \"2021-05-24T19:32:55.72Z\",\r\n \"serviceBusEndpoint\": \"https://manojprasad-eventhubs-premium.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\": 2\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ardsouza-test-5-19/providers/Microsoft.EventHub/namespaces/ardsouza-premium-aztest-5-24-deleteme\",\r\n \"name\": \"ardsouza-premium-aztest-5-24-deleteme\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West Europe\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": true,\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-premium-aztest-5-24-deleteme\",\r\n \"createdAt\": \"2021-05-24T23:11:51.05Z\",\r\n \"updatedAt\": \"2021-05-24T23:15:24.323Z\",\r\n \"serviceBusEndpoint\": \"https://ardsouza-premium-aztest-5-24-deleteme.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\": 2\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ardsouza-test-5-19/providers/Microsoft.EventHub/namespaces/ardsouza-westus-2-ehprem\",\r\n \"name\": \"ardsouza-westus-2-ehprem\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": true,\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-westus-2-ehprem\",\r\n \"createdAt\": \"2021-05-25T14:10:07.963Z\",\r\n \"updatedAt\": \"2021-05-25T14:14:10.663Z\",\r\n \"serviceBusEndpoint\": \"https://ardsouza-westus-2-ehprem.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\": 4\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/kindrasiri_eh_premium_benchmarking/providers/Microsoft.EventHub/namespaces/ehpremium\",\r\n \"name\": \"ehpremium\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"East US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": true,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:ehpremium\",\r\n \"createdAt\": \"2021-05-25T22:33:28.69Z\",\r\n \"updatedAt\": \"2021-09-24T22:03:55.787Z\",\r\n \"serviceBusEndpoint\": \"https://ehpremium.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/bailiu-servicebus-test-resources/providers/Microsoft.EventHub/namespaces/bailiu-eventhubs-test-centralus\",\r\n \"name\": \"bailiu-eventhubs-test-centralus\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"Central US EUAP\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:bailiu-eventhubs-test-centralus\",\r\n \"createdAt\": \"2021-06-07T17:52:17.123Z\",\r\n \"updatedAt\": \"2021-06-07T17:53:05.263Z\",\r\n \"serviceBusEndpoint\": \"https://bailiu-eventhubs-test-centralus.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/bailiu-servicebus-test-resources/providers/Microsoft.EventHub/namespaces/bailiu-eventhubs-test-westus2\",\r\n \"name\": \"bailiu-eventhubs-test-westus2\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": true,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:bailiu-eventhubs-test-westus2\",\r\n \"createdAt\": \"2021-06-07T19:23:45.427Z\",\r\n \"updatedAt\": \"2021-06-07T19:24:33.517Z\",\r\n \"serviceBusEndpoint\": \"https://bailiu-eventhubs-test-westus2.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/assures-geodr-prod/providers/Microsoft.EventHub/namespaces/geodr-primary\",\r\n \"name\": \"geodr-primary\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": true,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:geodr-primary\",\r\n \"createdAt\": \"2021-06-10T17:40:59.263Z\",\r\n \"updatedAt\": \"2021-06-18T03:14:01.397Z\",\r\n \"serviceBusEndpoint\": \"https://geodr-primary.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/assures-geodr-prod/providers/Microsoft.EventHub/namespaces/geodr-secondary-1\",\r\n \"name\": \"geodr-secondary-1\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": true,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:geodr-secondary-1\",\r\n \"createdAt\": \"2021-06-10T17:45:12.537Z\",\r\n \"updatedAt\": \"2021-06-18T03:14:01.017Z\",\r\n \"serviceBusEndpoint\": \"https://geodr-secondary-1.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\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/shsama-rg/providers/Microsoft.EventHub/namespaces/ehwhitelisttest\",\r\n \"name\": \"ehwhitelisttest\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"East US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": true,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:ehwhitelisttest\",\r\n \"createdAt\": \"2021-06-14T22:09:08.543Z\",\r\n \"updatedAt\": \"2021-06-14T22:10:26.767Z\",\r\n \"serviceBusEndpoint\": \"https://ehwhitelisttest.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/EventHubsVNETTestingRG/providers/Microsoft.EventHub/namespaces/ali-bypass-test\",\r\n \"name\": \"ali-bypass-test\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West Central US\",\r\n \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/dbedb4e0-40e6-4145-81f3-f1314c150774/resourceGroups/alitest/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ali-id-1\": {\r\n \"clientId\": \"16bc3fc1-8bc8-46a4-bd4d-583104db7d9a\",\r\n \"principalId\": \"6b03c867-9188-427a-a440-2d0e624c95cb\"\r\n }\r\n }\r\n },\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"encryption\": {\r\n \"keySource\": \"Microsoft.KeyVault\",\r\n \"keyVaultProperties\": [\r\n {\r\n \"keyName\": \"al-key\",\r\n \"keyVaultUri\": \"https://ali-kv.vault.azure.net\",\r\n \"keyVersion\": \"\",\r\n \"identity\": {\r\n \"userAssignedIdentity\": \"/subscriptions/dbedb4e0-40e6-4145-81f3-f1314c150774/resourceGroups/alitest/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ali-id-1\"\r\n }\r\n }\r\n ],\r\n \"requireInfrastructureEncryption\": false\r\n },\r\n \"clusterArmId\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/EventHubsVNETTestingRG/providers/Microsoft.EventHub/clusters/EventHubsVNetTesting\",\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:ali-bypass-test\",\r\n \"createdAt\": \"2021-06-14T22:19:01.01Z\",\r\n \"updatedAt\": \"2021-11-03T21:56:20.253Z\",\r\n \"serviceBusEndpoint\": \"https://ali-bypass-test.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\": 4\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/sjrg/providers/Microsoft.EventHub/namespaces/sjmwhpremium\",\r\n \"name\": \"sjmwhpremium\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": true,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:sjmwhpremium\",\r\n \"createdAt\": \"2021-06-15T04:32:43.893Z\",\r\n \"updatedAt\": \"2021-09-15T16:49:44.363Z\",\r\n \"serviceBusEndpoint\": \"https://sjmwhpremium.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/kindrasiri-synapse-test-rg/providers/Microsoft.EventHub/namespaces/azuremsgtest\",\r\n \"name\": \"azuremsgtest\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:azuremsgtest\",\r\n \"createdAt\": \"2021-07-01T01:43:16.197Z\",\r\n \"updatedAt\": \"2021-07-01T01:44:09.693Z\",\r\n \"serviceBusEndpoint\": \"https://azuremsgtest.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/dorothytest/providers/Microsoft.EventHub/namespaces/vnetehtest\",\r\n \"name\": \"vnetehtest\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:vnetehtest\",\r\n \"createdAt\": \"2021-07-01T22:51:08.083Z\",\r\n \"updatedAt\": \"2021-07-01T22:52:00.777Z\",\r\n \"serviceBusEndpoint\": \"https://vnetehtest.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\": 2\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/sjrgcbn/providers/Microsoft.EventHub/namespaces/sjpremiumcbnns\",\r\n \"name\": \"sjpremiumcbnns\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"EAST US 2 EUAP\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:sjpremiumcbnns\",\r\n \"createdAt\": \"2021-07-02T20:52:00.477Z\",\r\n \"updatedAt\": \"2021-07-02T22:13:32.103Z\",\r\n \"serviceBusEndpoint\": \"https://sjpremiumcbnns.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/sjrgcbn/providers/Microsoft.EventHub/namespaces/sjcbnstandard\",\r\n \"name\": \"sjcbnstandard\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"EAST US 2 EUAP\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": true,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:sjcbnstandard\",\r\n \"createdAt\": \"2021-07-03T06:59:07.623Z\",\r\n \"updatedAt\": \"2021-07-03T06:59:56.193Z\",\r\n \"serviceBusEndpoint\": \"https://sjcbnstandard.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/assures-kafka/providers/Microsoft.EventHub/namespaces/kafka-perf-decrease\",\r\n \"name\": \"kafka-perf-decrease\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:kafka-perf-decrease\",\r\n \"createdAt\": \"2021-07-06T18:21:46.48Z\",\r\n \"updatedAt\": \"2021-07-06T18:22:48.857Z\",\r\n \"serviceBusEndpoint\": \"https://kafka-perf-decrease.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-CentralUSEUAP/providers/Microsoft.EventHub/namespaces/hmlam-cdm03-502\",\r\n \"name\": \"hmlam-cdm03-502\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"Central US EUAP\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:hmlam-cdm03-502\",\r\n \"createdAt\": \"2021-07-07T01:31:09.74Z\",\r\n \"updatedAt\": \"2021-10-28T21:42:48.483Z\",\r\n \"serviceBusEndpoint\": \"https://hmlam-cdm03-502.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/PPGTest/providers/Microsoft.EventHub/namespaces/TestEHSys0705\",\r\n \"name\": \"TestEHSys0705\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"Central US EUAP\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:testehsys0705\",\r\n \"createdAt\": \"2021-07-07T20:50:02.06Z\",\r\n \"updatedAt\": \"2021-10-18T20:29:46.29Z\",\r\n \"serviceBusEndpoint\": \"https://TestEHSys0705.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/disablelocalauth/providers/Microsoft.EventHub/namespaces/ardsouza-disablelocalauth-canary-test1\",\r\n \"name\": \"ardsouza-disablelocalauth-canary-test1\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"EAST US 2 EUAP\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": true,\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-disablelocalauth-canary-test1\",\r\n \"createdAt\": \"2021-07-13T22:20:11.607Z\",\r\n \"updatedAt\": \"2021-07-13T22:21:11.107Z\",\r\n \"serviceBusEndpoint\": \"https://ardsouza-disablelocalauth-canary-test1.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/disablelocalauth/providers/Microsoft.EventHub/namespaces/ardsouza-disablelocalauth-canary-test2\",\r\n \"name\": \"ardsouza-disablelocalauth-canary-test2\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"EAST US 2 EUAP\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": true,\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-disablelocalauth-canary-test2\",\r\n \"createdAt\": \"2021-07-13T22:57:04.87Z\",\r\n \"updatedAt\": \"2021-07-13T23:54:08.33Z\",\r\n \"serviceBusEndpoint\": \"https://ardsouza-disablelocalauth-canary-test2.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/PPGTest/providers/Microsoft.EventHub/namespaces/TestSysTopicCan0716\",\r\n \"name\": \"TestSysTopicCan0716\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"EAST US 2 EUAP\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": true,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:testsystopiccan0716\",\r\n \"createdAt\": \"2021-07-16T21:48:26.007Z\",\r\n \"updatedAt\": \"2021-07-16T21:49:17.663Z\",\r\n \"serviceBusEndpoint\": \"https://TestSysTopicCan0716.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-westeurope-test/providers/Microsoft.EventHub/namespaces/ardsouza-07-2021-capture-adls2test\",\r\n \"name\": \"ardsouza-07-2021-capture-adls2test\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"Southeast Asia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": true,\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-07-2021-capture-adls2test\",\r\n \"createdAt\": \"2021-07-27T17:35:55.01Z\",\r\n \"updatedAt\": \"2021-07-27T17:36:46.08Z\",\r\n \"serviceBusEndpoint\": \"https://ardsouza-07-2021-capture-adls2test.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\": 2\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/sjrg/providers/Microsoft.EventHub/namespaces/sjpremiumyt\",\r\n \"name\": \"sjpremiumyt\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"Canada Central\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": true,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:sjpremiumyt\",\r\n \"createdAt\": \"2021-07-30T16:58:37.797Z\",\r\n \"updatedAt\": \"2021-09-08T18:47:53.797Z\",\r\n \"serviceBusEndpoint\": \"https://sjpremiumyt.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\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/sjrg/providers/Microsoft.EventHub/namespaces/sjpremiumsy1\",\r\n \"name\": \"sjpremiumsy1\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"Australia East\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": true,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:sjpremiumsy1\",\r\n \"createdAt\": \"2021-07-30T17:57:47.803Z\",\r\n \"updatedAt\": \"2021-07-30T17:59:25.597Z\",\r\n \"serviceBusEndpoint\": \"https://sjpremiumsy1.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-CentralUSEUAP/providers/Microsoft.EventHub/namespaces/drdrillPrimary08022021\",\r\n \"name\": \"drdrillPrimary08022021\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"Central US EUAP\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:drdrillprimary08022021\",\r\n \"createdAt\": \"2021-07-31T01:33:40.18Z\",\r\n \"updatedAt\": \"2021-08-30T23:20:31.35Z\",\r\n \"serviceBusEndpoint\": \"https://drdrillPrimary08022021.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/zztestrg/providers/Microsoft.EventHub/namespaces/zzns01-pltest\",\r\n \"name\": \"zzns01-pltest\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": true,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:zzns01-pltest\",\r\n \"createdAt\": \"2021-08-23T23:02:28.61Z\",\r\n \"updatedAt\": \"2021-08-23T23:03:15.843Z\",\r\n \"serviceBusEndpoint\": \"https://zzns01-pltest.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/EventHubsVNETTestingRG/providers/Microsoft.EventHub/namespaces/testMSI01060825\",\r\n \"name\": \"testMSI01060825\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West Central US\",\r\n \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/1196a38f-8e8a-4916-9056-787c19a53125/resourcegroups/ppgtest/providers/microsoft.managedidentity/userassignedidentities/testuai0618\": {\r\n \"clientId\": \"12e5b965-1d50-4d1b-b1df-a805dce0f0ec\",\r\n \"principalId\": \"aeb481c1-762b-474e-b6c6-86c67433a9ea\"\r\n }\r\n }\r\n },\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"encryption\": {\r\n \"keySource\": \"Microsoft.KeyVault\",\r\n \"keyVaultProperties\": [\r\n {\r\n \"keyName\": \"testkey0618\",\r\n \"keyVaultUri\": \"https://testkv0618.vault.azure.net\",\r\n \"keyVersion\": \"\",\r\n \"identity\": {\r\n \"userAssignedIdentity\": \"/subscriptions/1196a38f-8e8a-4916-9056-787c19a53125/resourcegroups/ppgtest/providers/microsoft.managedidentity/userassignedidentities/testuai0618\"\r\n }\r\n }\r\n ],\r\n \"requireInfrastructureEncryption\": false\r\n },\r\n \"clusterArmId\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/EventHubsVNETTestingRG/providers/Microsoft.EventHub/clusters/EventHubsVNetTesting\",\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:testmsi01060825\",\r\n \"createdAt\": \"2021-08-25T21:21:21.967Z\",\r\n \"updatedAt\": \"2021-08-25T21:26:16.927Z\",\r\n \"serviceBusEndpoint\": \"https://testMSI01060825.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-EASTUS2EUAP/providers/Microsoft.EventHub/namespaces/drdrillSecondary08022021\",\r\n \"name\": \"drdrillSecondary08022021\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"EAST US 2 EUAP\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": true,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:drdrillsecondary08022021\",\r\n \"createdAt\": \"2021-08-30T23:14:33.313Z\",\r\n \"updatedAt\": \"2021-08-30T23:17:43.6Z\",\r\n \"serviceBusEndpoint\": \"https://drdrillSecondary08022021.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/manojprasad-rampup/providers/Microsoft.EventHub/namespaces/manojprasad-eh-namespace\",\r\n \"name\": \"manojprasad-eh-namespace\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"clusterArmId\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/manojprasad-rampup/providers/Microsoft.EventHub/clusters/manojprasad-eh-cluster\",\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:manojprasad-eh-namespace\",\r\n \"createdAt\": \"2021-08-31T19:32:58.667Z\",\r\n \"updatedAt\": \"2021-08-31T19:33:47.073Z\",\r\n \"serviceBusEndpoint\": \"https://manojprasad-eh-namespace.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-WestUS2/providers/Microsoft.EventHub/namespaces/hmlam-canada-east-01\",\r\n \"name\": \"hmlam-canada-east-01\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"Canada East\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:hmlam-canada-east-01\",\r\n \"createdAt\": \"2021-09-02T17:13:09.64Z\",\r\n \"updatedAt\": \"2021-09-02T17:15:57.537Z\",\r\n \"serviceBusEndpoint\": \"https://hmlam-canada-east-01.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-cbn04-503-533-rg/providers/Microsoft.EventHub/namespaces/TestNSforVMSSMigration\",\r\n \"name\": \"TestNSforVMSSMigration\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"EAST US 2 EUAP\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"clusterArmId\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/prod-cbn04-503-533-rg/providers/Microsoft.EventHub/clusters/CBN04-503\",\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:testnsforvmssmigration\",\r\n \"createdAt\": \"2021-09-14T01:57:25.823Z\",\r\n \"updatedAt\": \"2021-09-14T17:43:00.203Z\",\r\n \"serviceBusEndpoint\": \"https://TestNSforVMSSMigration.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-EASTUS2EUAP/providers/Microsoft.EventHub/namespaces/taab-testns\",\r\n \"name\": \"taab-testns\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"EAST US 2 EUAP\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:taab-testns\",\r\n \"createdAt\": \"2021-09-16T20:21:03.61Z\",\r\n \"updatedAt\": \"2021-09-16T20:21:56.373Z\",\r\n \"serviceBusEndpoint\": \"https://taab-testns.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-EASTUS2EUAP/providers/Microsoft.EventHub/namespaces/yamlin-testNS-VMSS\",\r\n \"name\": \"yamlin-testNS-VMSS\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"EAST US 2 EUAP\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:yamlin-testns-vmss\",\r\n \"createdAt\": \"2021-09-17T17:18:09.21Z\",\r\n \"updatedAt\": \"2021-09-17T17:18:56.28Z\",\r\n \"serviceBusEndpoint\": \"https://yamlin-testNS-VMSS.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/EventHubsVNETTestingRG/providers/Microsoft.EventHub/namespaces/TestEHDedMSI0922\",\r\n \"name\": \"TestEHDedMSI0922\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West Central US\",\r\n \"tags\": {},\r\n \"identity\": {\r\n \"principalId\": \"f8a107e9-9278-45b0-ac39-9c88fe17ea5a\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"encryption\": {\r\n \"keySource\": \"Microsoft.KeyVault\",\r\n \"keyVaultProperties\": [\r\n {\r\n \"keyName\": \"TestKEyNew0409\",\r\n \"keyVaultUri\": \"https://testkv0409.vault.azure.net\",\r\n \"keyVersion\": \"\"\r\n }\r\n ],\r\n \"requireInfrastructureEncryption\": false\r\n },\r\n \"clusterArmId\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/EventHubsVNETTestingRG/providers/Microsoft.EventHub/clusters/EventHubsVNetTesting\",\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:testehdedmsi0922\",\r\n \"createdAt\": \"2021-09-22T23:35:52.497Z\",\r\n \"updatedAt\": \"2021-11-07T23:39:15.24Z\",\r\n \"serviceBusEndpoint\": \"https://TestEHDedMSI0922.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/v-ajnavtest/providers/Microsoft.EventHub/namespaces/sdk-NS-7728\",\r\n \"name\": \"sdk-NS-7728\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"identity\": {\r\n \"principalId\": \"96967467-e23f-442e-a4a0-dccea7044fd7\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"clusterArmId\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/v-ajnavtest/providers/Microsoft.EventHub/clusters/PMTestCluster1\",\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:sdk-ns-7728\",\r\n \"createdAt\": \"2021-09-27T00:21:53.463Z\",\r\n \"updatedAt\": \"2021-11-12T00:16:10.567Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-7728.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.EventHub/namespaces?api-version=2021-11-01&$skipToken=2021-09-27T00:21:53.463Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-2414/providers/Microsoft.EventHub/namespaces/sdk-NS-2649?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMjQxNC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTI2NDk/YXBpLXZlcnNpb249MjAyMS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-2040/providers/Microsoft.EventHub/namespaces/sdk-NS-6670?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMjA0MC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTY2NzA/YXBpLXZlcnNpb249MjAyMS0xMS0wMQ==", "RequestMethod": "PATCH", "RequestBody": "{\r\n \"tags\": {\r\n \"tag3\": \"value3\",\r\n \"tag4\": \"value4\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "a78e5c83-c2dd-4c5d-b17b-ac60b818727f" + "7d838629-dde9-4e7b-a569-2a47d4d561ba" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -768,27 +831,30 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:53:25 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "7940530b-eda2-4d7b-873e-9f8bd24e76bc_M6SN1_M6SN1" + "8d604f23-2844-46b1-923e-327bff8aafca_M10CH3_M10CH3" ], "Server-SB": [ - "Service-Bus-Resource-Provider/SN1" - ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" + "Service-Bus-Resource-Provider/CH3" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "48" ], "x-ms-correlation-request-id": [ - "0751be69-c9a5-418f-819d-1a621593bdb2" + "1cce04fd-3393-40d5-aad9-d56f010a6697" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T044108Z:0751be69-c9a5-418f-819d-1a621593bdb2" + "SOUTHINDIA:20211115T025325Z:1cce04fd-3393-40d5-aad9-d56f010a6697" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -796,11 +862,8 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:41:07 GMT" - ], "Content-Length": [ - "729" + "730" ], "Content-Type": [ "application/json; charset=utf-8" @@ -809,56 +872,59 @@ "-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-2414/providers/Microsoft.EventHub/namespaces/sdk-NS-2649\",\r\n \"name\": \"sdk-NS-2649\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"East US\",\r\n \"tags\": {\r\n \"tag3\": \"value3\",\r\n \"tag4\": \"value4\"\r\n },\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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-2649\",\r\n \"createdAt\": \"2021-09-24T04:39:59.997Z\",\r\n \"updatedAt\": \"2021-09-24T04:41:07.57Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-2649.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-2040/providers/Microsoft.EventHub/namespaces/sdk-NS-6670\",\r\n \"name\": \"sdk-NS-6670\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"East US\",\r\n \"tags\": {\r\n \"tag3\": \"value3\",\r\n \"tag4\": \"value4\"\r\n },\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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-6670\",\r\n \"createdAt\": \"2021-11-15T02:52:12.047Z\",\r\n \"updatedAt\": \"2021-11-15T02:53:22.413Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-6670.servicebus.windows.net:443/\",\r\n \"status\": \"Activating\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-2414/providers/Microsoft.EventHub/namespaces/sdk-NS-2649?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMjQxNC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTI2NDk/YXBpLXZlcnNpb249MjAyMS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-2040/providers/Microsoft.EventHub/namespaces/sdk-NS-6670?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMjA0MC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTY2NzA/YXBpLXZlcnNpb249MjAyMS0xMS0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "62566785-f964-4539-9ee5-7e0ad41c236d" + "9c5fcdf4-7313-4ef6-9fbb-7ee9ca93786b" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:53:36 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-2414/providers/Microsoft.EventHub/namespaces/sdk-NS-2649/operationresults/sdk-NS-2649?api-version=2021-06-01-preview" + "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-2040/providers/Microsoft.EventHub/namespaces/sdk-NS-6670/operationresults/sdk-NS-6670?api-version=2021-11-01" + ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "9f88b3c1-637c-4718-a430-6b45e2a5ca7c_M6SN1_M6SN1" + "0e2da5b8-4e39-42bc-8955-6e3b2988e133_M10CH3_M10CH3" ], "Server-SB": [ - "Service-Bus-Resource-Provider/SN1" - ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" + "Service-Bus-Resource-Provider/CH3" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14998" ], "x-ms-correlation-request-id": [ - "047e5d3a-d696-45b2-acd8-044254810d66" + "b99e3bd0-08a0-4c9e-a3d7-b4835a9a126c" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T044129Z:047e5d3a-d696-45b2-acd8-044254810d66" + "SOUTHINDIA:20211115T025337Z:b99e3bd0-08a0-4c9e-a3d7-b4835a9a126c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -866,57 +932,57 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:41:28 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-2414/providers/Microsoft.EventHub/namespaces/sdk-NS-2649/operationresults/sdk-NS-2649?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMjQxNC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTI2NDkvb3BlcmF0aW9ucmVzdWx0cy9zZGstTlMtMjY0OT9hcGktdmVyc2lvbj0yMDIxLTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-2040/providers/Microsoft.EventHub/namespaces/sdk-NS-6670/operationresults/sdk-NS-6670?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMjA0MC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTY2NzAvb3BlcmF0aW9ucmVzdWx0cy9zZGstTlMtNjY3MD9hcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:54:06 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "ea4e79b4-77e6-4de9-a293-24ab4f227fae_M5SN1_M5SN1" + "4621aa7c-2788-44d9-9c59-6d7e519caa41_M10CH3_M10CH3" ], "Server-SB": [ - "Service-Bus-Resource-Provider/SN1" - ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" + "Service-Bus-Resource-Provider/CH3" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11992" ], "x-ms-correlation-request-id": [ - "293fe5f0-fbb1-4665-97fe-0077ae16b0d6" + "94a34ecf-d3c4-49a7-8237-3346263bd2eb" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T044159Z:293fe5f0-fbb1-4665-97fe-0077ae16b0d6" + "SOUTHINDIA:20211115T025407Z:94a34ecf-d3c4-49a7-8237-3346263bd2eb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -924,57 +990,57 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:41:58 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-2414/providers/Microsoft.EventHub/namespaces/sdk-NS-2649/operationresults/sdk-NS-2649?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMjQxNC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTI2NDkvb3BlcmF0aW9ucmVzdWx0cy9zZGstTlMtMjY0OT9hcGktdmVyc2lvbj0yMDIxLTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-2040/providers/Microsoft.EventHub/namespaces/sdk-NS-6670/operationresults/sdk-NS-6670?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMjA0MC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTY2NzAvb3BlcmF0aW9ucmVzdWx0cy9zZGstTlMtNjY3MD9hcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:54:07 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "e0640aee-4900-43b2-873f-498ea1727e93_M5SN1_M5SN1" + "caa4c184-12b8-4073-b76b-c31a1ea7246b_M10CH3_M10CH3" ], "Server-SB": [ - "Service-Bus-Resource-Provider/SN1" - ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" + "Service-Bus-Resource-Provider/CH3" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11991" ], "x-ms-correlation-request-id": [ - "5cc593d8-f75e-442f-9f12-59091acb1e30" + "6f3751ed-0b24-40ed-81e9-14169d3f9456" ], "x-ms-routing-request-id": [ - "WESTUS:20210924T044159Z:5cc593d8-f75e-442f-9f12-59091acb1e30" + "SOUTHINDIA:20211115T025407Z:6f3751ed-0b24-40ed-81e9-14169d3f9456" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -982,14 +1048,11 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:41:58 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", @@ -998,8 +1061,8 @@ ], "Names": { "NamespaceCreateGetUpdateDelete_list": [ - "Default-EventHub-2414", - "sdk-NS-2649" + "Default-EventHub-2040", + "sdk-NS-6670" ] }, "Variables": { 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 9b13bc85d65d..bfb3e75d1f4c 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,21 +1,21 @@ { "Entries": [ { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/Default-EventHub-1053?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlZ3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMTA1Mz9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/Default-EventHub-6270?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlZ3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNjI3MD9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "c1ad6309-f754-4587-a217-f8e58e8102dd" + "e2b93bde-e7a6-4f84-bf78-05363dda100e" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", + "OSVersion/Microsoft.Windows.10.0.22000.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ], "Content-Type": [ @@ -29,6 +29,9 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:15:45 GMT" + ], "Pragma": [ "no-cache" ], @@ -36,13 +39,13 @@ "1199" ], "x-ms-request-id": [ - "d7340cdd-b004-4af0-a58d-459d7ef0eeef" + "cd55d8b8-3f87-444a-9b03-d80214d8a47d" ], "x-ms-correlation-request-id": [ - "d7340cdd-b004-4af0-a58d-459d7ef0eeef" + "cd55d8b8-3f87-444a-9b03-d80214d8a47d" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210924T040725Z:d7340cdd-b004-4af0-a58d-459d7ef0eeef" + "SOUTHINDIA:20211115T021546Z:cd55d8b8-3f87-444a-9b03-d80214d8a47d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -50,9 +53,6 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:07:24 GMT" - ], "Content-Length": [ "195" ], @@ -63,53 +63,56 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-1053\",\r\n \"name\": \"Default-EventHub-1053\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-6270\",\r\n \"name\": \"Default-EventHub-6270\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/providers/Microsoft.EventHub/operations?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIxLTA2LTAxLXByZXZpZXc=", + "RequestUri": "/providers/Microsoft.EventHub/operations?api-version=2021-11-01", + "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "54f90d95-e10a-4370-8654-d10d5a824e58" + "9bc85875-9f06-43b0-ab67-768d843b864e" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:15:46 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "e6405686-7cf3-4a21-85ca-832fc03fe1cb_M4CH3_M4CH3" + "a154ce97-008e-4d8a-96d4-219ce94be2a8_M1CH3_M1CH3" ], "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], - "Server": [ - "Service-Bus-Resource-Provider/CH3", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-tenant-reads": [ "11999" ], "x-ms-correlation-request-id": [ - "28425c4d-b7eb-4bad-bae5-0f380f01e0e3" + "2f6650cc-c220-4592-a39b-159087055161" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210924T040725Z:28425c4d-b7eb-4bad-bae5-0f380f01e0e3" + "SOUTHINDIA:20211115T021546Z:2f6650cc-c220-4592-a39b-159087055161" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -117,11 +120,8 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:07:24 GMT" - ], "Content-Length": [ - "48635" + "48935" ], "Content-Type": [ "application/json; charset=utf-8" @@ -130,26 +130,26 @@ "-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 \"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/schemagroups/write\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"SchemaGroup\",\r\n \"operation\": \"Create or Update SchemaGroup\",\r\n \"description\": \"Create or Update SchemaGroup properties.\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/schemagroups/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"SchemaGroup\",\r\n \"operation\": \"Get SchemaGroup\",\r\n \"description\": \"Get list of SchemaGroup Resource Descriptions\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/schemagroups/delete\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"SchemaGroup\",\r\n \"operation\": \"Delete SchemaGroup\",\r\n \"description\": \"Operation to delete SchemaGroup Resource\"\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 \"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 \"fillGapWithZero\": false\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 \"Minimum\",\r\n \"Maximum\"\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 \"name\": \"NamespaceCpuUsage\",\r\n \"displayName\": \"CPU\",\r\n \"displayDescription\": \"CPU usage metric for Premium SKU namespaces.\",\r\n \"unit\": \"Percent\",\r\n \"aggregationType\": \"Maximum\",\r\n \"internalMetricName\": \"NamespaceCpuUsage\",\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\": \"Replica\",\r\n \"isHidden\": true,\r\n \"defaultDimensionValues\": [\r\n {\r\n \"value\": \"Primary\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"supportedAggregationTypes\": [\r\n \"Maximum\",\r\n \"Minimum\",\r\n \"Average\"\r\n ],\r\n \"metricFilterPattern\": \"(?i)^premium$\",\r\n \"fillGapWithZero\": false\r\n },\r\n {\r\n \"name\": \"NamespaceMemoryUsage\",\r\n \"displayName\": \"Memory Usage\",\r\n \"displayDescription\": \"Memory usage metric for Premium SKU namespaces.\",\r\n \"unit\": \"Percent\",\r\n \"aggregationType\": \"Maximum\",\r\n \"internalMetricName\": \"NamespaceWorkingSet64\",\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\": \"Replica\",\r\n \"isHidden\": true,\r\n \"defaultDimensionValues\": [\r\n {\r\n \"value\": \"Primary\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"supportedAggregationTypes\": [\r\n \"Maximum\",\r\n \"Minimum\",\r\n \"Average\"\r\n ],\r\n \"metricFilterPattern\": \"(?i)^premium$\",\r\n \"fillGapWithZero\": false\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 \"lockAggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"fillGapWithZero\": false\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\",\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 \"Minimum\",\r\n \"Maximum\"\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/schemas/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"Schemas\",\r\n \"operation\": \"Retrieve schemas\",\r\n \"description\": \"Retrieve schemas\"\r\n },\r\n \"isDataAction\": true\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/schemas/write\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"Schemas\",\r\n \"operation\": \"Write schemas\",\r\n \"description\": \"Write schemas\"\r\n },\r\n \"isDataAction\": true\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/schemas/delete\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"Schemas\",\r\n \"operation\": \"Delete schemas\",\r\n \"description\": \"Delete schemas\"\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 \"name\": \"Microsoft.EventHub/namespaces/privateEndpointConnectionProxies/operationstatus/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"Non Resource Operation\",\r\n \"operation\": \"Private endpoint operation status\",\r\n \"description\": \"Get the status of an asynchronous private endpoint operation\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/privateEndpointConnections/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"Private Endpoint Connection\",\r\n \"operation\": \"Get Private Endpoint Connection\",\r\n \"description\": \"Get Private Endpoint Connection\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/privateEndpointConnections/write\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"Private Endpoint Connection\",\r\n \"operation\": \"Create or Update Private Endpoint Connection\",\r\n \"description\": \"Create or Update Private Endpoint Connection\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/privateEndpointConnections/delete\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"Private Endpoint Connection\",\r\n \"operation\": \"Removes Private Endpoint Connection\",\r\n \"description\": \"Removes Private Endpoint Connection\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/privateLinkResources/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"PrivateLinks\",\r\n \"operation\": \"Gets the resource types that support private endpoint connections\",\r\n \"description\": \"Gets the resource types that support private endpoint connections\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/privateEndpointConnections/operationstatus/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"Non Resource Operation\",\r\n \"operation\": \"Private endpoint operation status\",\r\n \"description\": \"Get the status of an asynchronous private endpoint operation\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/privateEndpointConnectionsApproval/action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"Private Endpoint Connection\",\r\n \"operation\": \"Approve Private Endpoint Connection\",\r\n \"description\": \"Approve Private Endpoint Connection\"\r\n },\r\n \"isDataAction\": false\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/schemagroups/write\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"SchemaGroup\",\r\n \"operation\": \"Create or Update SchemaGroup\",\r\n \"description\": \"Create or Update SchemaGroup properties.\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/schemagroups/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"SchemaGroup\",\r\n \"operation\": \"Get SchemaGroup\",\r\n \"description\": \"Get list of SchemaGroup Resource Descriptions\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/schemagroups/delete\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"SchemaGroup\",\r\n \"operation\": \"Delete SchemaGroup\",\r\n \"description\": \"Operation to delete SchemaGroup Resource\"\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\": \"Maximum\",\r\n \"internalMetricName\": \"NamespaceActiveConnections\",\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 \"supportedAggregationTypes\": [\r\n \"Maximum\",\r\n \"Minimum\",\r\n \"Average\"\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\": \"Maximum\",\r\n \"internalMetricName\": \"ConnectionOpen\",\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 \"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\": \"Maximum\",\r\n \"internalMetricName\": \"ConnectionClose\",\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 \"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 \"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 \"fillGapWithZero\": false\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 \"Minimum\",\r\n \"Maximum\"\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 \"name\": \"NamespaceCpuUsage\",\r\n \"displayName\": \"CPU\",\r\n \"displayDescription\": \"CPU usage metric for Premium SKU namespaces.\",\r\n \"unit\": \"Percent\",\r\n \"aggregationType\": \"Maximum\",\r\n \"internalMetricName\": \"NamespaceCpuUsage\",\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\": \"Replica\",\r\n \"isHidden\": true,\r\n \"defaultDimensionValues\": [\r\n {\r\n \"value\": \"Primary\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"supportedAggregationTypes\": [\r\n \"Maximum\",\r\n \"Minimum\",\r\n \"Average\"\r\n ],\r\n \"metricFilterPattern\": \"(?i)^premium$\",\r\n \"fillGapWithZero\": false\r\n },\r\n {\r\n \"name\": \"NamespaceMemoryUsage\",\r\n \"displayName\": \"Memory Usage\",\r\n \"displayDescription\": \"Memory usage metric for Premium SKU namespaces.\",\r\n \"unit\": \"Percent\",\r\n \"aggregationType\": \"Maximum\",\r\n \"internalMetricName\": \"NamespaceWorkingSet64\",\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\": \"Replica\",\r\n \"isHidden\": true,\r\n \"defaultDimensionValues\": [\r\n {\r\n \"value\": \"Primary\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"supportedAggregationTypes\": [\r\n \"Maximum\",\r\n \"Minimum\",\r\n \"Average\"\r\n ],\r\n \"metricFilterPattern\": \"(?i)^premium$\",\r\n \"fillGapWithZero\": false\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\": \"Maximum\",\r\n \"internalMetricName\": \"NamespaceActiveConnections\",\r\n \"isDimensionRequired\": false,\r\n \"resourceIdDimensionNameOverride\": \"ScaleUnit\",\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 \"supportedAggregationTypes\": [\r\n \"Maximum\",\r\n \"Minimum\",\r\n \"Average\"\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\": \"Maximum\",\r\n \"internalMetricName\": \"ConnectionOpen\",\r\n \"isDimensionRequired\": false,\r\n \"resourceIdDimensionNameOverride\": \"ScaleUnit\",\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 \"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\": \"Maximum\",\r\n \"internalMetricName\": \"ConnectionClose\",\r\n \"isDimensionRequired\": false,\r\n \"resourceIdDimensionNameOverride\": \"ScaleUnit\",\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 \"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 \"lockAggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"fillGapWithZero\": false\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\",\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 \"Minimum\",\r\n \"Maximum\"\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/schemas/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"Schemas\",\r\n \"operation\": \"Retrieve schemas\",\r\n \"description\": \"Retrieve schemas\"\r\n },\r\n \"isDataAction\": true\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/schemas/write\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"Schemas\",\r\n \"operation\": \"Write schemas\",\r\n \"description\": \"Write schemas\"\r\n },\r\n \"isDataAction\": true\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/schemas/delete\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"Schemas\",\r\n \"operation\": \"Delete schemas\",\r\n \"description\": \"Delete schemas\"\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 \"name\": \"Microsoft.EventHub/namespaces/privateEndpointConnectionProxies/operationstatus/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"Non Resource Operation\",\r\n \"operation\": \"Private endpoint operation status\",\r\n \"description\": \"Get the status of an asynchronous private endpoint operation\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/privateEndpointConnections/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"Private Endpoint Connection\",\r\n \"operation\": \"Get Private Endpoint Connection\",\r\n \"description\": \"Get Private Endpoint Connection\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/privateEndpointConnections/write\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"Private Endpoint Connection\",\r\n \"operation\": \"Create or Update Private Endpoint Connection\",\r\n \"description\": \"Create or Update Private Endpoint Connection\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/privateEndpointConnections/delete\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"Private Endpoint Connection\",\r\n \"operation\": \"Removes Private Endpoint Connection\",\r\n \"description\": \"Removes Private Endpoint Connection\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/privateLinkResources/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"PrivateLinks\",\r\n \"operation\": \"Gets the resource types that support private endpoint connections\",\r\n \"description\": \"Gets the resource types that support private endpoint connections\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/privateEndpointConnections/operationstatus/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"Non Resource Operation\",\r\n \"operation\": \"Private endpoint operation status\",\r\n \"description\": \"Get the status of an asynchronous private endpoint operation\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/privateEndpointConnectionsApproval/action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"Private Endpoint Connection\",\r\n \"operation\": \"Approve Private Endpoint Connection\",\r\n \"description\": \"Approve Private Endpoint Connection\"\r\n },\r\n \"isDataAction\": false\r\n }\r\n ],\r\n \"nextLink\": \"\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.EventHub/checkNameAvailability?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvY2hlY2tOYW1lQXZhaWxhYmlsaXR5P2FwaS12ZXJzaW9uPTIwMjEtMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.EventHub/checkNameAvailability?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvY2hlY2tOYW1lQXZhaWxhYmlsaXR5P2FwaS12ZXJzaW9uPTIwMjEtMTEtMDE=", "RequestMethod": "POST", - "RequestBody": "{\r\n \"name\": \"sdk-NS-9986\"\r\n}", + "RequestBody": "{\r\n \"name\": \"sdk-NS-1070\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "544dfb24-c7ba-4c76-8c30-2486e24ddbc9" + "1aeb2df4-6704-4694-871f-904fcb79c7d3" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -162,27 +162,30 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:15:46 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "6216a0e9-9687-4ada-b710-385dae2a94c8_M4CH3_M4CH3" + "8d70545c-5de4-4191-9084-764064578808_M1CH3_M1CH3" ], "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], - "Server": [ - "Service-Bus-Resource-Provider/CH3", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], "x-ms-correlation-request-id": [ - "1e2cb029-8000-4959-b27d-64ac0e3cbd9a" + "5a2abca6-80f0-438b-b6ff-23e2b85038e6" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210924T040725Z:1e2cb029-8000-4959-b27d-64ac0e3cbd9a" + "SOUTHINDIA:20211115T021547Z:5a2abca6-80f0-438b-b6ff-23e2b85038e6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -190,9 +193,6 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:07:25 GMT" - ], "Content-Length": [ "53" ], @@ -207,22 +207,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-1053/providers/Microsoft.EventHub/namespaces/sdk-NS-9986?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMTA1My9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTk5ODY/YXBpLXZlcnNpb249MjAyMS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-6270/providers/Microsoft.EventHub/namespaces/sdk-NS-1070?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNjI3MC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTEwNzA/YXBpLXZlcnNpb249MjAyMS0xMS0wMQ==", "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": [ - "4d8a05f2-623d-4fa0-a054-67170cf70685" + "5673e1eb-3aeb-40cf-9b92-ea644f5aa078" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -235,27 +235,30 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:15:53 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "64873b08-751f-4aaa-bda9-cde2ecb81817_M7CH3_M7CH3" + "e3c4882f-e446-4e2e-9026-6a9b528cb062_M1CH3_M1CH3" ], "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], - "Server": [ - "Service-Bus-Resource-Provider/CH3", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "49" ], "x-ms-correlation-request-id": [ - "5d6c07ff-04d6-4c98-beb3-002a39a5c565" + "10513708-394f-4fbd-b26c-da9c38372b0b" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210924T040729Z:5d6c07ff-04d6-4c98-beb3-002a39a5c565" + "SOUTHINDIA:20211115T021554Z:10513708-394f-4fbd-b26c-da9c38372b0b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -263,9 +266,6 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:07:28 GMT" - ], "Content-Length": [ "729" ], @@ -276,47 +276,50 @@ "-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-1053/providers/Microsoft.EventHub/namespaces/sdk-NS-9986\",\r\n \"name\": \"sdk-NS-9986\",\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 \"disableLocalAuth\": false,\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-9986\",\r\n \"createdAt\": \"2021-09-24T04:07:28.347Z\",\r\n \"updatedAt\": \"2021-09-24T04:07:28.347Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-9986.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-6270/providers/Microsoft.EventHub/namespaces/sdk-NS-1070\",\r\n \"name\": \"sdk-NS-1070\",\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 \"disableLocalAuth\": false,\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-1070\",\r\n \"createdAt\": \"2021-11-15T02:15:52.097Z\",\r\n \"updatedAt\": \"2021-11-15T02:15:52.097Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-1070.servicebus.windows.net:443/\",\r\n \"status\": \"Activating\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-1053/providers/Microsoft.EventHub/namespaces/sdk-NS-9986?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMTA1My9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTk5ODY/YXBpLXZlcnNpb249MjAyMS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-6270/providers/Microsoft.EventHub/namespaces/sdk-NS-1070?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNjI3MC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTEwNzA/YXBpLXZlcnNpb249MjAyMS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:16:25 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "04d26187-de40-4ef1-87f9-984581f7248f_M3CH3_M3CH3" + "c5dc3f56-6c86-40ef-a29c-174d26f32210_M3SN1_M3SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" - ], - "Server": [ - "Service-Bus-Resource-Provider/CH3", - "Microsoft-HTTPAPI/2.0" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11999" ], "x-ms-correlation-request-id": [ - "ea56d12a-8ab0-4e3c-8918-5ccc627b7082" + "4eda6b38-ab16-4256-89cd-27ad43d6d1a8" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210924T040759Z:ea56d12a-8ab0-4e3c-8918-5ccc627b7082" + "SOUTHINDIA:20211115T021626Z:4eda6b38-ab16-4256-89cd-27ad43d6d1a8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -324,9 +327,6 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:07:59 GMT" - ], "Content-Length": [ "729" ], @@ -337,47 +337,50 @@ "-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-1053/providers/Microsoft.EventHub/namespaces/sdk-NS-9986\",\r\n \"name\": \"sdk-NS-9986\",\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 \"disableLocalAuth\": false,\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-9986\",\r\n \"createdAt\": \"2021-09-24T04:07:28.347Z\",\r\n \"updatedAt\": \"2021-09-24T04:07:28.347Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-9986.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-6270/providers/Microsoft.EventHub/namespaces/sdk-NS-1070\",\r\n \"name\": \"sdk-NS-1070\",\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 \"disableLocalAuth\": false,\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-1070\",\r\n \"createdAt\": \"2021-11-15T02:15:52.097Z\",\r\n \"updatedAt\": \"2021-11-15T02:15:52.097Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-1070.servicebus.windows.net:443/\",\r\n \"status\": \"Activating\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-1053/providers/Microsoft.EventHub/namespaces/sdk-NS-9986?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMTA1My9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTk5ODY/YXBpLXZlcnNpb249MjAyMS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-6270/providers/Microsoft.EventHub/namespaces/sdk-NS-1070?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNjI3MC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTEwNzA/YXBpLXZlcnNpb249MjAyMS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:16:56 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "2946851f-1593-44a7-a595-efb7e0e431c9_M9CH3_M9CH3" + "bb677b99-bf65-48ec-ad06-0fdf430a36a6_M6SN1_M6SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" - ], - "Server": [ - "Service-Bus-Resource-Provider/CH3", - "Microsoft-HTTPAPI/2.0" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11998" ], "x-ms-correlation-request-id": [ - "f9bccc3d-4502-491c-8ab3-c3857c67f480" + "7a7f3299-b55e-42c8-99b2-74a7be821ff2" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210924T040830Z:f9bccc3d-4502-491c-8ab3-c3857c67f480" + "SOUTHINDIA:20211115T021656Z:7a7f3299-b55e-42c8-99b2-74a7be821ff2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -385,9 +388,6 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:08:29 GMT" - ], "Content-Length": [ "727" ], @@ -398,53 +398,56 @@ "-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-1053/providers/Microsoft.EventHub/namespaces/sdk-NS-9986\",\r\n \"name\": \"sdk-NS-9986\",\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 \"disableLocalAuth\": false,\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-9986\",\r\n \"createdAt\": \"2021-09-24T04:07:28.347Z\",\r\n \"updatedAt\": \"2021-09-24T04:08:20.237Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-9986.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-6270/providers/Microsoft.EventHub/namespaces/sdk-NS-1070\",\r\n \"name\": \"sdk-NS-1070\",\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 \"disableLocalAuth\": false,\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-1070\",\r\n \"createdAt\": \"2021-11-15T02:15:52.097Z\",\r\n \"updatedAt\": \"2021-11-15T02:16:44.473Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-1070.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-1053/providers/Microsoft.EventHub/namespaces/sdk-NS-9986?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMTA1My9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTk5ODY/YXBpLXZlcnNpb249MjAyMS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-6270/providers/Microsoft.EventHub/namespaces/sdk-NS-1070?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNjI3MC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTEwNzA/YXBpLXZlcnNpb249MjAyMS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7ed5197f-1fd4-49ea-b809-674a7cd56199" + "60430428-23c4-47fa-9d53-0fc79146f983" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:17:01 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "b71d4d53-4e75-4a96-a244-52eb762b4f89_M10CH3_M10CH3" + "739d0e03-a7ff-49dc-b50c-acab0f559321_M6SN1_M6SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" - ], - "Server": [ - "Service-Bus-Resource-Provider/CH3", - "Microsoft-HTTPAPI/2.0" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11997" ], "x-ms-correlation-request-id": [ - "800c1069-10ca-4b19-b587-80e8e79c09a8" + "3b83b7cc-44e7-4150-a158-10444d62cea6" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210924T040835Z:800c1069-10ca-4b19-b587-80e8e79c09a8" + "SOUTHINDIA:20211115T021701Z:3b83b7cc-44e7-4150-a158-10444d62cea6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -452,9 +455,6 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:08:34 GMT" - ], "Content-Length": [ "727" ], @@ -465,53 +465,56 @@ "-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-1053/providers/Microsoft.EventHub/namespaces/sdk-NS-9986\",\r\n \"name\": \"sdk-NS-9986\",\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 \"disableLocalAuth\": false,\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-9986\",\r\n \"createdAt\": \"2021-09-24T04:07:28.347Z\",\r\n \"updatedAt\": \"2021-09-24T04:08:20.237Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-9986.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-6270/providers/Microsoft.EventHub/namespaces/sdk-NS-1070\",\r\n \"name\": \"sdk-NS-1070\",\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 \"disableLocalAuth\": false,\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-1070\",\r\n \"createdAt\": \"2021-11-15T02:15:52.097Z\",\r\n \"updatedAt\": \"2021-11-15T02:16:44.473Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-1070.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-1053/providers/Microsoft.EventHub/namespaces/sdk-NS-9986?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMTA1My9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTk5ODY/YXBpLXZlcnNpb249MjAyMS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-6270/providers/Microsoft.EventHub/namespaces/sdk-NS-1070?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNjI3MC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTEwNzA/YXBpLXZlcnNpb249MjAyMS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5b5ec1a7-b2ed-4102-963e-58b0f9551281" + "26cc0e8b-e58c-4e77-9fd3-0cdcecbbd571" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:17:01 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "1e63eb08-ae52-4eed-af64-4e290de4db7b_M10CH3_M10CH3" + "fdc44caa-b305-4362-b7ae-16fe907a1b07_M6SN1_M6SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" - ], - "Server": [ - "Service-Bus-Resource-Provider/CH3", - "Microsoft-HTTPAPI/2.0" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11996" ], "x-ms-correlation-request-id": [ - "32052a2f-fea8-4a7d-bb64-ddbf2351aa6c" + "726c679e-2d2c-4da5-b692-5cc268254e05" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210924T040835Z:32052a2f-fea8-4a7d-bb64-ddbf2351aa6c" + "SOUTHINDIA:20211115T021702Z:726c679e-2d2c-4da5-b692-5cc268254e05" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -519,9 +522,6 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:08:34 GMT" - ], "Content-Length": [ "727" ], @@ -532,53 +532,56 @@ "-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-1053/providers/Microsoft.EventHub/namespaces/sdk-NS-9986\",\r\n \"name\": \"sdk-NS-9986\",\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 \"disableLocalAuth\": false,\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-9986\",\r\n \"createdAt\": \"2021-09-24T04:07:28.347Z\",\r\n \"updatedAt\": \"2021-09-24T04:08:20.237Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-9986.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-6270/providers/Microsoft.EventHub/namespaces/sdk-NS-1070\",\r\n \"name\": \"sdk-NS-1070\",\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 \"disableLocalAuth\": false,\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-1070\",\r\n \"createdAt\": \"2021-11-15T02:15:52.097Z\",\r\n \"updatedAt\": \"2021-11-15T02:16:44.473Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-1070.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-1053/providers/Microsoft.EventHub/namespaces/sdk-NS-9986?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMTA1My9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTk5ODY/YXBpLXZlcnNpb249MjAyMS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-6270/providers/Microsoft.EventHub/namespaces/sdk-NS-1070?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNjI3MC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTEwNzA/YXBpLXZlcnNpb249MjAyMS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7259cfa3-3133-4f81-a39f-82a4e90f80c3" + "2b784008-dfb2-4cc5-8d22-cf6dbe8e6eaa" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:17:07 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "558029e3-10e6-4de0-a015-bc4524e691df_M11CH3_M11CH3" + "531e2475-80b1-4926-a3e9-8fbc486bd8c2_M6SN1_M6SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" - ], - "Server": [ - "Service-Bus-Resource-Provider/CH3", - "Microsoft-HTTPAPI/2.0" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11993" ], "x-ms-correlation-request-id": [ - "02feac1c-0763-4b7a-adf9-e10ea1371fd1" + "39d7b8cd-5973-46a4-b919-69692f2aea59" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210924T040837Z:02feac1c-0763-4b7a-adf9-e10ea1371fd1" + "SOUTHINDIA:20211115T021708Z:39d7b8cd-5973-46a4-b919-69692f2aea59" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -586,11 +589,8 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:08:36 GMT" - ], "Content-Length": [ - "727" + "726" ], "Content-Type": [ "application/json; charset=utf-8" @@ -599,53 +599,56 @@ "-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-1053/providers/Microsoft.EventHub/namespaces/sdk-NS-9986\",\r\n \"name\": \"sdk-NS-9986\",\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 \"disableLocalAuth\": false,\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-9986\",\r\n \"createdAt\": \"2021-09-24T04:07:28.347Z\",\r\n \"updatedAt\": \"2021-09-24T04:08:37.093Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-9986.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-6270/providers/Microsoft.EventHub/namespaces/sdk-NS-1070\",\r\n \"name\": \"sdk-NS-1070\",\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 \"disableLocalAuth\": false,\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-1070\",\r\n \"createdAt\": \"2021-11-15T02:15:52.097Z\",\r\n \"updatedAt\": \"2021-11-15T02:17:05Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-1070.servicebus.windows.net:443/\",\r\n \"status\": \"Activating\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-1053/providers/Microsoft.EventHub/namespaces?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMTA1My9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXM/YXBpLXZlcnNpb249MjAyMS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-6270/providers/Microsoft.EventHub/namespaces?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNjI3MC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXM/YXBpLXZlcnNpb249MjAyMS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5cff71c0-232b-4e0b-a7a2-ffcad8c69b87" + "7449e799-012d-4535-99b8-07ff07a16a50" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:17:01 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "b1fdb518-885e-4393-a9b3-6d23d0446814_M10CH3_M10CH3" + "75a76335-544e-4d18-a0d9-3a3e4b03a35b_M6SN1_M6SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" - ], - "Server": [ - "Service-Bus-Resource-Provider/CH3", - "Microsoft-HTTPAPI/2.0" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11995" ], "x-ms-correlation-request-id": [ - "71111b23-6dfb-4814-9f02-073a58d8b353" + "ed821255-5973-40cb-96b7-2108995602fc" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210924T040835Z:71111b23-6dfb-4814-9f02-073a58d8b353" + "SOUTHINDIA:20211115T021702Z:ed821255-5973-40cb-96b7-2108995602fc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -653,9 +656,6 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:08:35 GMT" - ], "Content-Length": [ "739" ], @@ -666,56 +666,59 @@ "-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/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-1053/providers/Microsoft.EventHub/namespaces/sdk-NS-9986\",\r\n \"name\": \"sdk-NS-9986\",\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 \"disableLocalAuth\": false,\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-9986\",\r\n \"createdAt\": \"2021-09-24T04:07:28.347Z\",\r\n \"updatedAt\": \"2021-09-24T04:08:20.237Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-9986.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-6270/providers/Microsoft.EventHub/namespaces/sdk-NS-1070\",\r\n \"name\": \"sdk-NS-1070\",\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 \"disableLocalAuth\": false,\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-1070\",\r\n \"createdAt\": \"2021-11-15T02:15:52.097Z\",\r\n \"updatedAt\": \"2021-11-15T02:16:44.473Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-1070.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.EventHub/namespaces?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcz9hcGktdmVyc2lvbj0yMDIxLTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.EventHub/namespaces?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcz9hcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "03113fc9-e54a-41d1-9b51-5633dd782c42" + "e3009550-53f0-4a49-bca9-ea959738a0d5" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:17:02 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-inline-count": [ "" ], "x-ms-request-id": [ - "d8b8ff7c-8bd1-44df-98cc-70b6d18a9b03_M10CH3_M10CH3" + "1add6257-e86c-421e-85ae-e81f017427c9_M6SN1_M6SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" - ], - "Server": [ - "Service-Bus-Resource-Provider/CH3", - "Microsoft-HTTPAPI/2.0" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11994" ], "x-ms-correlation-request-id": [ - "6433fb6a-cd19-41c9-8fb6-a3d27f27c7b6" + "7ccd4c65-6884-434f-815f-46a3e75df648" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210924T040835Z:6433fb6a-cd19-41c9-8fb6-a3d27f27c7b6" + "SOUTHINDIA:20211115T021703Z:7ccd4c65-6884-434f-815f-46a3e75df648" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -723,11 +726,8 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:08:35 GMT" - ], "Content-Length": [ - "77535" + "78546" ], "Content-Type": [ "application/json; charset=utf-8" @@ -736,26 +736,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\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 \"disableLocalAuth\": false,\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\": 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 \"disableLocalAuth\": false,\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/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 \"disableLocalAuth\": false,\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-06-15T14:20:00.153Z\",\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/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 \"disableLocalAuth\": false,\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/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 \"disableLocalAuth\": false,\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/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 \"disableLocalAuth\": false,\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/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 \"disableLocalAuth\": false,\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\": 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 \"disableLocalAuth\": false,\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/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 \"disableLocalAuth\": false,\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\": 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 \"disableLocalAuth\": false,\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/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 \"disableLocalAuth\": false,\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\": \"Premium\",\r\n \"tier\": \"Premium\",\r\n \"capacity\": 1\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 \"disableLocalAuth\": false,\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"clusterArmId\": \"/subscriptions/f7d26b87-63a8-4d84-93b3-e22dcf545c83/resourceGroups/rg-spark-na903/providers/Microsoft.EventHub/clusters/spark-na903-src-eh-cl1\",\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\": \"2021-04-13T22:12:05.26Z\",\r\n \"serviceBusEndpoint\": \"https://FirewallTestEHNS.servicebus.windows.net:443/\",\r\n \"status\": \"Removing\"\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 \"disableLocalAuth\": false,\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\": 2\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 \"disableLocalAuth\": false,\r\n \"zoneRedundant\": true,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\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-15T21:59:51.447Z\",\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\": \"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 \"disableLocalAuth\": false,\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/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 \"disableLocalAuth\": false,\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/shubhatestrg/providers/Microsoft.EventHub/namespaces/uxdemoforsr\",\r\n \"name\": \"uxdemoforsr\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:uxdemoforsr\",\r\n \"createdAt\": \"2020-05-21T19:41:03.867Z\",\r\n \"updatedAt\": \"2020-05-21T19:41:50.97Z\",\r\n \"serviceBusEndpoint\": \"https://uxdemoforsr.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/v-ajnavtest/providers/Microsoft.EventHub/namespaces/testingnew2018\",\r\n \"name\": \"testingnew2018\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:testingnew2018\",\r\n \"createdAt\": \"2020-06-14T21:02:16.57Z\",\r\n \"updatedAt\": \"2020-06-14T21:03:04.417Z\",\r\n \"serviceBusEndpoint\": \"https://testingnew2018.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/v-ajnavtest/providers/Microsoft.EventHub/namespaces/testingnew20181\",\r\n \"name\": \"testingnew20181\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"East US\",\r\n \"tags\": {},\r\n \"identity\": {\r\n \"principalId\": \"941b9c7d-e77d-485b-bed7-bcf43fa5a61d\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": true,\r\n \"isAutoInflateEnabled\": true,\r\n \"maximumThroughputUnits\": 12,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:testingnew20181\",\r\n \"createdAt\": \"2020-06-14T23:00:04.573Z\",\r\n \"updatedAt\": \"2021-09-17T22:55:08.077Z\",\r\n \"serviceBusEndpoint\": \"https://testingnew20181.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/clemensv8\",\r\n \"name\": \"clemensv8\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"North Europe\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:clemensv8\",\r\n \"createdAt\": \"2020-06-15T14:23:25.007Z\",\r\n \"updatedAt\": \"2020-06-15T14:52:08.377Z\",\r\n \"serviceBusEndpoint\": \"https://clemensv8.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\": 7\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/shubhatestrg/providers/Microsoft.EventHub/namespaces/tesgeotus\",\r\n \"name\": \"tesgeotus\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"East US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:tesgeotus\",\r\n \"createdAt\": \"2020-06-17T17:57:59.207Z\",\r\n \"updatedAt\": \"2020-06-17T18:22:37.757Z\",\r\n \"serviceBusEndpoint\": \"https://tesgeotus.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\": 7\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/shubhatestrg/providers/Microsoft.EventHub/namespaces/testgeotusec\",\r\n \"name\": \"testgeotusec\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:testgeotusec\",\r\n \"createdAt\": \"2020-06-17T18:19:55.487Z\",\r\n \"updatedAt\": \"2020-06-17T18:22:38.017Z\",\r\n \"serviceBusEndpoint\": \"https://testgeotusec.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-6828/providers/Microsoft.EventHub/namespaces/sdk-NS-2916\",\r\n \"name\": \"sdk-NS-2916\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": true,\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-2916\",\r\n \"createdAt\": \"2020-06-17T19:28:29.223Z\",\r\n \"updatedAt\": \"2020-06-17T19:29:19.167Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-2916.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/rg-schema-registry/providers/Microsoft.EventHub/namespaces/sr-playground\",\r\n \"name\": \"sr-playground\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"clusterArmId\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/sjrg/providers/Microsoft.EventHub/clusters/SchemaRegistryPreviewCluster\",\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:sr-playground\",\r\n \"createdAt\": \"2020-06-19T05:01:58.623Z\",\r\n \"updatedAt\": \"2020-06-19T05:05:36.437Z\",\r\n \"serviceBusEndpoint\": \"https://sr-playground.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/sjschemaregistry1\",\r\n \"name\": \"sjschemaregistry1\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"clusterArmId\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/sjrg/providers/Microsoft.EventHub/clusters/SchemaRegistryPreviewCluster\",\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:sjschemaregistry1\",\r\n \"createdAt\": \"2020-06-30T01:25:15.193Z\",\r\n \"updatedAt\": \"2020-06-30T01:26:03.24Z\",\r\n \"serviceBusEndpoint\": \"https://sjschemaregistry1.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/sjcueuap\",\r\n \"name\": \"sjcueuap\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"Central US EUAP\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:sjcueuap\",\r\n \"createdAt\": \"2020-07-07T01:19:52.39Z\",\r\n \"updatedAt\": \"2020-07-07T01:20:41.063Z\",\r\n \"serviceBusEndpoint\": \"https://sjcueuap.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/sjcentralindia\",\r\n \"name\": \"sjcentralindia\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"Central India\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:sjcentralindia\",\r\n \"createdAt\": \"2020-07-09T04:47:59.847Z\",\r\n \"updatedAt\": \"2020-07-09T04:48:59.697Z\",\r\n \"serviceBusEndpoint\": \"https://sjcentralindia.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/sjsouthindia\",\r\n \"name\": \"sjsouthindia\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"South India\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:sjsouthindia\",\r\n \"createdAt\": \"2020-07-25T17:37:49.96Z\",\r\n \"updatedAt\": \"2020-07-25T17:38:37.753Z\",\r\n \"serviceBusEndpoint\": \"https://sjsouthindia.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/rg-sr-bugbash/providers/Microsoft.EventHub/namespaces/sr-bugbash\",\r\n \"name\": \"sr-bugbash\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"clusterArmId\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/sjrg/providers/Microsoft.EventHub/clusters/SchemaRegistryPreviewCluster\",\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:sr-bugbash\",\r\n \"createdAt\": \"2020-08-17T00:01:00.033Z\",\r\n \"updatedAt\": \"2020-09-16T07:37:17.6Z\",\r\n \"serviceBusEndpoint\": \"https://sr-bugbash.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/zztestsecondary\",\r\n \"name\": \"zztestsecondary\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:zztestsecondary\",\r\n \"createdAt\": \"2020-08-26T20:46:48.983Z\",\r\n \"updatedAt\": \"2020-08-26T20:53:01.247Z\",\r\n \"serviceBusEndpoint\": \"https://zztestsecondary.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/zztestprimary\",\r\n \"name\": \"zztestprimary\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"East US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:zztestprimary\",\r\n \"createdAt\": \"2020-08-26T20:50:24.767Z\",\r\n \"updatedAt\": \"2020-08-26T20:53:01.247Z\",\r\n \"serviceBusEndpoint\": \"https://zztestprimary.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\": 8\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-WestEurope/providers/Microsoft.EventHub/namespaces/ns-localstore-scenario-10\",\r\n \"name\": \"ns-localstore-scenario-10\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West Europe\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:ns-localstore-scenario-10\",\r\n \"createdAt\": \"2020-09-06T17:24:27.343Z\",\r\n \"updatedAt\": \"2020-10-22T11:14:36.25Z\",\r\n \"serviceBusEndpoint\": \"https://ns-localstore-scenario-10.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/RGName5406/providers/Microsoft.EventHub/namespaces/Eh-NamespaceKafka-1503\",\r\n \"name\": \"Eh-NamespaceKafka-1503\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:eh-namespacekafka-1503\",\r\n \"createdAt\": \"2020-09-10T23:25:28.93Z\",\r\n \"updatedAt\": \"2020-09-10T23:26:19.88Z\",\r\n \"serviceBusEndpoint\": \"https://Eh-NamespaceKafka-1503.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/RGName2039/providers/Microsoft.EventHub/namespaces/Eh-NamespaceKafka-1200\",\r\n \"name\": \"Eh-NamespaceKafka-1200\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:eh-namespacekafka-1200\",\r\n \"createdAt\": \"2020-09-10T23:33:15.513Z\",\r\n \"updatedAt\": \"2020-09-10T23:33:58.96Z\",\r\n \"serviceBusEndpoint\": \"https://Eh-NamespaceKafka-1200.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/RGName3234/providers/Microsoft.EventHub/namespaces/Eh-NamespaceKafka-7506\",\r\n \"name\": \"Eh-NamespaceKafka-7506\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:eh-namespacekafka-7506\",\r\n \"createdAt\": \"2020-09-11T00:11:11.73Z\",\r\n \"updatedAt\": \"2020-09-11T00:11:58.973Z\",\r\n \"serviceBusEndpoint\": \"https://Eh-NamespaceKafka-7506.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/RGName4706/providers/Microsoft.EventHub/namespaces/Eh-NamespaceKafka-3743\",\r\n \"name\": \"Eh-NamespaceKafka-3743\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:eh-namespacekafka-3743\",\r\n \"createdAt\": \"2020-09-11T00:17:52.727Z\",\r\n \"updatedAt\": \"2020-09-11T00:18:36.617Z\",\r\n \"serviceBusEndpoint\": \"https://Eh-NamespaceKafka-3743.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/EventHubsVNETTestingRG/providers/Microsoft.EventHub/namespaces/sj-westcentralus\",\r\n \"name\": \"sj-westcentralus\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"clusterArmId\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/EventHubsVNETTestingRG/providers/Microsoft.EventHub/clusters/EventHubsVNetTesting\",\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:sj-westcentralus\",\r\n \"createdAt\": \"2020-09-23T00:07:29.707Z\",\r\n \"updatedAt\": \"2020-09-23T00:08:20.437Z\",\r\n \"serviceBusEndpoint\": \"https://sj-westcentralus.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-CentralUSEUAP/providers/Microsoft.EventHub/namespaces/hmlam-cdm03-001\",\r\n \"name\": \"hmlam-cdm03-001\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"Central US EUAP\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Updating\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:hmlam-cdm03-001\",\r\n \"createdAt\": \"2020-09-23T01:16:28.043Z\",\r\n \"updatedAt\": \"2021-09-02T17:34:29.203Z\",\r\n \"serviceBusEndpoint\": \"https://hmlam-cdm03-001.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/sjrg/providers/Microsoft.EventHub/namespaces/sjschemaregistry\",\r\n \"name\": \"sjschemaregistry\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:sjschemaregistry\",\r\n \"createdAt\": \"2020-09-29T19:00:19.527Z\",\r\n \"updatedAt\": \"2020-09-29T19:01:09.967Z\",\r\n \"serviceBusEndpoint\": \"https://sjschemaregistry.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/jfgRsrcGrp16/providers/Microsoft.EventHub/namespaces/jfgEvtHbNmspc1\",\r\n \"name\": \"jfgEvtHbNmspc1\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:jfgevthbnmspc1\",\r\n \"createdAt\": \"2020-10-19T02:50:21.05Z\",\r\n \"updatedAt\": \"2020-10-19T02:51:09.65Z\",\r\n \"serviceBusEndpoint\": \"https://jfgEvtHbNmspc1.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/zztestrg/providers/Microsoft.EventHub/namespaces/zztest03\",\r\n \"name\": \"zztest03\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:zztest03\",\r\n \"createdAt\": \"2020-10-20T21:48:16.673Z\",\r\n \"updatedAt\": \"2020-10-20T21:55:37.617Z\",\r\n \"serviceBusEndpoint\": \"https://zztest03.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/zztestrg/providers/Microsoft.EventHub/namespaces/zztest04\",\r\n \"name\": \"zztest04\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:zztest04\",\r\n \"createdAt\": \"2020-10-20T21:48:58.127Z\",\r\n \"updatedAt\": \"2020-10-20T21:57:59.613Z\",\r\n \"serviceBusEndpoint\": \"https://zztest04.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/sakoppes_test/providers/Microsoft.EventHub/namespaces/SamKoppesTestEHNamespace1\",\r\n \"name\": \"SamKoppesTestEHNamespace1\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"East US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:samkoppestestehnamespace1\",\r\n \"createdAt\": \"2020-10-23T17:59:47.117Z\",\r\n \"updatedAt\": \"2020-10-23T18:00:38.657Z\",\r\n \"serviceBusEndpoint\": \"https://SamKoppesTestEHNamespace1.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/hmlam-bn3-556\",\r\n \"name\": \"hmlam-bn3-556\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"clusterArmId\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/sjrg/providers/Microsoft.EventHub/clusters/SchemaRegistryPreviewCluster\",\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:hmlam-bn3-556\",\r\n \"createdAt\": \"2020-10-31T05:46:03.81Z\",\r\n \"updatedAt\": \"2020-10-31T05:46:54.773Z\",\r\n \"serviceBusEndpoint\": \"https://hmlam-bn3-556.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/jfgRsrcGrp18/providers/Microsoft.EventHub/namespaces/ADX-EG-jfgdataexplorer1\",\r\n \"name\": \"ADX-EG-jfgdataexplorer1\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"East US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:adx-eg-jfgdataexplorer1\",\r\n \"createdAt\": \"2020-11-09T16:50:22.813Z\",\r\n \"updatedAt\": \"2020-11-09T16:51:22.947Z\",\r\n \"serviceBusEndpoint\": \"https://ADX-EG-jfgdataexplorer1.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/manojprasad-rampup/providers/Microsoft.EventHub/namespaces/eventhub-nmp\",\r\n \"name\": \"eventhub-nmp\",\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 \"disableLocalAuth\": false,\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:eventhub-nmp\",\r\n \"createdAt\": \"2020-12-28T18:50:46.36Z\",\r\n \"updatedAt\": \"2021-04-21T23:21:24.477Z\",\r\n \"serviceBusEndpoint\": \"https://eventhub-nmp.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/PPGTestPG/providers/Microsoft.EventHub/namespaces/TestEHSys0121\",\r\n \"name\": \"TestEHSys0121\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"EAST US 2 EUAP\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:testehsys0121\",\r\n \"createdAt\": \"2021-01-22T23:59:08.403Z\",\r\n \"updatedAt\": \"2021-01-22T23:59:53.9Z\",\r\n \"serviceBusEndpoint\": \"https://TestEHSys0121.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/PPGTestPG/providers/Microsoft.EventHub/namespaces/TestEH0125\",\r\n \"name\": \"TestEH0125\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"EAST US 2 EUAP\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:testeh0125\",\r\n \"createdAt\": \"2021-01-26T21:05:50.063Z\",\r\n \"updatedAt\": \"2021-01-26T21:06:39.467Z\",\r\n \"serviceBusEndpoint\": \"https://TestEH0125.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-WestUS2/providers/Microsoft.EventHub/namespaces/hmlam-2-mwh01-510\",\r\n \"name\": \"hmlam-2-mwh01-510\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Updating\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:hmlam-2-mwh01-510\",\r\n \"createdAt\": \"2021-01-27T21:26:17.357Z\",\r\n \"updatedAt\": \"2021-09-02T17:15:54.36Z\",\r\n \"serviceBusEndpoint\": \"https://hmlam-2-mwh01-510.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/EventHubsVNETTestingRG/providers/Microsoft.EventHub/namespaces/testencypt0128\",\r\n \"name\": \"testencypt0128\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West Central US\",\r\n \"tags\": {},\r\n \"identity\": {\r\n \"principalId\": \"e9d041e2-62a8-41c8-9b88-71031dbf2695\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"encryption\": {\r\n \"keySource\": \"Microsoft.KeyVault\",\r\n \"keyVaultProperties\": [\r\n {\r\n \"keyName\": \"testkey\",\r\n \"keyVaultUri\": \"https://testrbac0113.vault.azure.net\",\r\n \"keyVersion\": \"\"\r\n }\r\n ],\r\n \"requireInfrastructureEncryption\": false\r\n },\r\n \"clusterArmId\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/EventHubsVNETTestingRG/providers/Microsoft.EventHub/clusters/EventHubsVNetTesting\",\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:testencypt0128\",\r\n \"createdAt\": \"2021-01-29T03:11:24.39Z\",\r\n \"updatedAt\": \"2021-09-16T03:08:07.8Z\",\r\n \"serviceBusEndpoint\": \"https://testencypt0128.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/xcrg/providers/Microsoft.EventHub/namespaces/byok-offset-test\",\r\n \"name\": \"byok-offset-test\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"Central US EUAP\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:byok-offset-test\",\r\n \"createdAt\": \"2021-02-09T17:53:55.587Z\",\r\n \"updatedAt\": \"2021-02-09T18:00:15.627Z\",\r\n \"serviceBusEndpoint\": \"https://byok-offset-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/xcrg/providers/Microsoft.EventHub/namespaces/byok-ot-test\",\r\n \"name\": \"byok-ot-test\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"EAST US 2 EUAP\",\r\n \"tags\": {},\r\n \"identity\": {\r\n \"principalId\": \"a2a77dd1-1a20-4640-a408-2a254a9e0b69\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"encryption\": {\r\n \"keySource\": \"Microsoft.KeyVault\",\r\n \"keyVaultProperties\": [\r\n {\r\n \"keyName\": \"offset-journal-byok\",\r\n \"keyVaultUri\": \"https://xc-test.vault.azure.net\",\r\n \"keyVersion\": \"\"\r\n }\r\n ],\r\n \"requireInfrastructureEncryption\": false\r\n },\r\n \"clusterArmId\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/prod-cbn04-503-533-rg/providers/Microsoft.EventHub/clusters/CBN04-503\",\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:byok-ot-test\",\r\n \"createdAt\": \"2021-02-09T19:17:55.363Z\",\r\n \"updatedAt\": \"2021-08-12T21:36:08.783Z\",\r\n \"serviceBusEndpoint\": \"https://byok-ot-test.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/jfgWalmart1/providers/Microsoft.EventHub/namespaces/jfgEH-Wmt-1\",\r\n \"name\": \"jfgEH-Wmt-1\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"East US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:jfgeh-wmt-1\",\r\n \"createdAt\": \"2021-02-14T23:49:41.33Z\",\r\n \"updatedAt\": \"2021-02-14T23:50:33.71Z\",\r\n \"serviceBusEndpoint\": \"https://jfgEH-Wmt-1.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/jfgWalmart1/providers/Microsoft.EventHub/namespaces/jfgEH-Wmt-2\",\r\n \"name\": \"jfgEH-Wmt-2\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"East US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:jfgeh-wmt-2\",\r\n \"createdAt\": \"2021-02-15T02:12:43.573Z\",\r\n \"updatedAt\": \"2021-02-15T02:13:30.477Z\",\r\n \"serviceBusEndpoint\": \"https://jfgEH-Wmt-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/sjrg/providers/Microsoft.EventHub/namespaces/sjwestus2\",\r\n \"name\": \"sjwestus2\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:sjwestus2\",\r\n \"createdAt\": \"2021-02-18T06:26:28.413Z\",\r\n \"updatedAt\": \"2021-02-18T06:27:16.157Z\",\r\n \"serviceBusEndpoint\": \"https://sjwestus2.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/ehspringboot\",\r\n \"name\": \"ehspringboot\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:ehspringboot\",\r\n \"createdAt\": \"2021-02-26T01:37:31.123Z\",\r\n \"updatedAt\": \"2021-02-26T01:38:18.35Z\",\r\n \"serviceBusEndpoint\": \"https://ehspringboot.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-JapanEast/providers/Microsoft.EventHub/namespaces/hmlam-kw1-001\",\r\n \"name\": \"hmlam-kw1-001\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"Japan East\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:hmlam-kw1-001\",\r\n \"createdAt\": \"2021-03-05T03:15:50.103Z\",\r\n \"updatedAt\": \"2021-09-02T17:17:21.117Z\",\r\n \"serviceBusEndpoint\": \"https://hmlam-kw1-001.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/useridentities/providers/Microsoft.EventHub/namespaces/icmtest-1\",\r\n \"name\": \"icmtest-1\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"East US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:icmtest-1\",\r\n \"createdAt\": \"2021-03-05T19:07:00.873Z\",\r\n \"updatedAt\": \"2021-03-05T19:07:51.14Z\",\r\n \"serviceBusEndpoint\": \"https://icmtest-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/useridentities/providers/Microsoft.EventHub/namespaces/icm-testing\",\r\n \"name\": \"icm-testing\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"East US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:icm-testing\",\r\n \"createdAt\": \"2021-03-05T19:36:02.113Z\",\r\n \"updatedAt\": \"2021-03-05T19:36:54.433Z\",\r\n \"serviceBusEndpoint\": \"https://icm-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/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-EASTUS2EUAP/providers/Microsoft.EventHub/namespaces/sarama-gw-fix-verify\",\r\n \"name\": \"sarama-gw-fix-verify\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"EAST US 2 EUAP\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:sarama-gw-fix-verify\",\r\n \"createdAt\": \"2021-03-09T02:35:20.1Z\",\r\n \"updatedAt\": \"2021-03-09T02:36:08.687Z\",\r\n \"serviceBusEndpoint\": \"https://sarama-gw-fix-verify.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-cbn04-503-533-rg/providers/Microsoft.EventHub/namespaces/clemen-test-eh-sa\",\r\n \"name\": \"clemen-test-eh-sa\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"EAST US 2 EUAP\",\r\n \"tags\": {},\r\n \"identity\": {\r\n \"principalId\": \"b4b473dd-8d23-45ab-9f29-deee83baf0b1\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:clemen-test-eh-sa\",\r\n \"createdAt\": \"2021-03-31T20:02:42.077Z\",\r\n \"updatedAt\": \"2021-08-16T19:57:09.183Z\",\r\n \"serviceBusEndpoint\": \"https://clemen-test-eh-sa.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/DisablePublicAccesTesting/providers/Microsoft.EventHub/namespaces/DisablePublicAccessTesting-EHStandard\",\r\n \"name\": \"DisablePublicAccessTesting-EHStandard\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"EAST US 2 EUAP\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:disablepublicaccesstesting-ehstandard\",\r\n \"createdAt\": \"2021-04-06T15:53:47.477Z\",\r\n \"updatedAt\": \"2021-04-06T15:54:32.47Z\",\r\n \"serviceBusEndpoint\": \"https://DisablePublicAccessTesting-EHStandard.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/arthur/providers/Microsoft.EventHub/namespaces/arerlend-sr-test\",\r\n \"name\": \"arerlend-sr-test\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:arerlend-sr-test\",\r\n \"createdAt\": \"2021-04-16T05:43:31.857Z\",\r\n \"updatedAt\": \"2021-04-16T05:44:16.807Z\",\r\n \"serviceBusEndpoint\": \"https://arerlend-sr-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\": 2\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/EHResourceGr1/providers/Microsoft.EventHub/namespaces/kasuneventhubs\",\r\n \"name\": \"kasuneventhubs\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"East US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:kasuneventhubs\",\r\n \"createdAt\": \"2021-04-16T22:17:03.377Z\",\r\n \"updatedAt\": \"2021-08-02T20:44:07.137Z\",\r\n \"serviceBusEndpoint\": \"https://kasuneventhubs.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-cbn04-503-533-rg/providers/Microsoft.EventHub/namespaces/assures-cgissue-test\",\r\n \"name\": \"assures-cgissue-test\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"EAST US 2 EUAP\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"clusterArmId\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/prod-cbn04-503-533-rg/providers/Microsoft.EventHub/clusters/CBN04-503\",\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:assures-cgissue-test\",\r\n \"createdAt\": \"2021-05-01T01:32:54.81Z\",\r\n \"updatedAt\": \"2021-05-01T01:33:47.6Z\",\r\n \"serviceBusEndpoint\": \"https://assures-cgissue-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\": 2\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/kindrasiri_eh_benchmark/providers/Microsoft.EventHub/namespaces/ehbenchmark\",\r\n \"name\": \"ehbenchmark\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"East US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:ehbenchmark\",\r\n \"createdAt\": \"2021-05-03T16:12:09.03Z\",\r\n \"updatedAt\": \"2021-05-03T16:12:56.44Z\",\r\n \"serviceBusEndpoint\": \"https://ehbenchmark.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-cbn04-503-533-rg/providers/Microsoft.EventHub/namespaces/assures-cgissue-test-2\",\r\n \"name\": \"assures-cgissue-test-2\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"EAST US 2 EUAP\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"clusterArmId\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/prod-cbn04-503-533-rg/providers/Microsoft.EventHub/clusters/CBN04-503\",\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:assures-cgissue-test-2\",\r\n \"createdAt\": \"2021-05-06T19:38:04.303Z\",\r\n \"updatedAt\": \"2021-05-06T19:38:59.563Z\",\r\n \"serviceBusEndpoint\": \"https://assures-cgissue-test-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/v-ajnavtest/providers/Microsoft.EventHub/namespaces/testcluster-test2-eastus-eh-d-ns\",\r\n \"name\": \"testcluster-test2-eastus-eh-d-ns\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"East US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"clusterArmId\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/v-ajnavtest/providers/Microsoft.EventHub/clusters/testingclusterarmtemplate\",\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:testcluster-test2-eastus-eh-d-ns\",\r\n \"createdAt\": \"2021-05-06T23:23:01.673Z\",\r\n \"updatedAt\": \"2021-05-06T23:24:07.72Z\",\r\n \"serviceBusEndpoint\": \"https://testcluster-test2-eastus-eh-d-ns.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\": 10\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ardsouza-test-5-19/providers/Microsoft.EventHub/namespaces/ardsouza-5-19-2020-deleteme-basic\",\r\n \"name\": \"ardsouza-5-19-2020-deleteme-basic\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"Canada Central\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": true,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:ardsouza-5-19-2020-deleteme-basic\",\r\n \"createdAt\": \"2021-05-20T01:26:36.323Z\",\r\n \"updatedAt\": \"2021-05-20T01:28:35.287Z\",\r\n \"serviceBusEndpoint\": \"https://ardsouza-5-19-2020-deleteme-basic.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/EventHubsVNETTestingRG/providers/Microsoft.EventHub/namespaces/TestMSiNew0520\",\r\n \"name\": \"TestMSiNew0520\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West Central US\",\r\n \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/ppgtest/providers/microsoft.managedidentity/userassignedidentities/testuai0412new\": {\r\n \"clientId\": \"ec83a3e2-bd7b-4e77-bde9-76ec42eb1d6a\",\r\n \"principalId\": \"2496443e-0c52-4245-84fb-6ee677269b16\"\r\n },\r\n \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/ppgtest/providers/microsoft.managedidentity/userassignedidentities/testuai0506\": {\r\n \"clientId\": \"40578752-05e9-4b8b-bdc4-f07e960571e0\",\r\n \"principalId\": \"406cc555-ce08-485a-a5a6-ef1ccc5e7bec\"\r\n }\r\n }\r\n },\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"encryption\": {\r\n \"keySource\": \"Microsoft.KeyVault\",\r\n \"keyVaultProperties\": [\r\n {\r\n \"keyName\": \"TestKey0506\",\r\n \"keyVaultUri\": \"https://testkv0506.vault.azure.net\",\r\n \"keyVersion\": \"\",\r\n \"identity\": {\r\n \"userAssignedIdentity\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/ppgtest/providers/microsoft.managedidentity/userassignedidentities/testuai0506\"\r\n }\r\n }\r\n ],\r\n \"requireInfrastructureEncryption\": false\r\n },\r\n \"clusterArmId\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/EventHubsVNETTestingRG/providers/Microsoft.EventHub/clusters/EventHubsVNetTesting\",\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:testmsinew0520\",\r\n \"createdAt\": \"2021-05-20T22:42:14.17Z\",\r\n \"updatedAt\": \"2021-08-06T19:47:08.883Z\",\r\n \"serviceBusEndpoint\": \"https://TestMSiNew0520.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\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/sjrg/providers/Microsoft.EventHub/namespaces/sjpremiumwe\",\r\n \"name\": \"sjpremiumwe\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West Europe\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": true,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:sjpremiumwe\",\r\n \"createdAt\": \"2021-05-21T18:16:42.207Z\",\r\n \"updatedAt\": \"2021-05-25T05:53:39.053Z\",\r\n \"serviceBusEndpoint\": \"https://sjpremiumwe.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\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/manojprasad-rampup/providers/Microsoft.EventHub/namespaces/manojprasad-eventhubs-premium\",\r\n \"name\": \"manojprasad-eventhubs-premium\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"Australia East\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": true,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:manojprasad-eventhubs-premium\",\r\n \"createdAt\": \"2021-05-24T19:31:02.89Z\",\r\n \"updatedAt\": \"2021-05-24T19:32:55.72Z\",\r\n \"serviceBusEndpoint\": \"https://manojprasad-eventhubs-premium.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\": 2\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ardsouza-test-5-19/providers/Microsoft.EventHub/namespaces/ardsouza-premium-aztest-5-24-deleteme\",\r\n \"name\": \"ardsouza-premium-aztest-5-24-deleteme\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West Europe\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": true,\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-premium-aztest-5-24-deleteme\",\r\n \"createdAt\": \"2021-05-24T23:11:51.05Z\",\r\n \"updatedAt\": \"2021-05-24T23:15:24.323Z\",\r\n \"serviceBusEndpoint\": \"https://ardsouza-premium-aztest-5-24-deleteme.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\": 2\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ardsouza-test-5-19/providers/Microsoft.EventHub/namespaces/ardsouza-westus-2-ehprem\",\r\n \"name\": \"ardsouza-westus-2-ehprem\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": true,\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-westus-2-ehprem\",\r\n \"createdAt\": \"2021-05-25T14:10:07.963Z\",\r\n \"updatedAt\": \"2021-05-25T14:14:10.663Z\",\r\n \"serviceBusEndpoint\": \"https://ardsouza-westus-2-ehprem.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\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/kindrasiri_eh_premium_benchmarking/providers/Microsoft.EventHub/namespaces/ehpremium\",\r\n \"name\": \"ehpremium\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"East US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": true,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:ehpremium\",\r\n \"createdAt\": \"2021-05-25T22:33:28.69Z\",\r\n \"updatedAt\": \"2021-06-22T18:10:52.55Z\",\r\n \"serviceBusEndpoint\": \"https://ehpremium.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/bailiu-servicebus-test-resources/providers/Microsoft.EventHub/namespaces/bailiu-eventhubs-test-centralus\",\r\n \"name\": \"bailiu-eventhubs-test-centralus\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"Central US EUAP\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:bailiu-eventhubs-test-centralus\",\r\n \"createdAt\": \"2021-06-07T17:52:17.123Z\",\r\n \"updatedAt\": \"2021-06-07T17:53:05.263Z\",\r\n \"serviceBusEndpoint\": \"https://bailiu-eventhubs-test-centralus.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/bailiu-servicebus-test-resources/providers/Microsoft.EventHub/namespaces/bailiu-eventhubs-test-westus2\",\r\n \"name\": \"bailiu-eventhubs-test-westus2\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": true,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:bailiu-eventhubs-test-westus2\",\r\n \"createdAt\": \"2021-06-07T19:23:45.427Z\",\r\n \"updatedAt\": \"2021-06-07T19:24:33.517Z\",\r\n \"serviceBusEndpoint\": \"https://bailiu-eventhubs-test-westus2.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/assures-geodr-prod/providers/Microsoft.EventHub/namespaces/geodr-primary\",\r\n \"name\": \"geodr-primary\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": true,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:geodr-primary\",\r\n \"createdAt\": \"2021-06-10T17:40:59.263Z\",\r\n \"updatedAt\": \"2021-06-18T03:14:01.397Z\",\r\n \"serviceBusEndpoint\": \"https://geodr-primary.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/assures-geodr-prod/providers/Microsoft.EventHub/namespaces/geodr-secondary-1\",\r\n \"name\": \"geodr-secondary-1\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": true,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:geodr-secondary-1\",\r\n \"createdAt\": \"2021-06-10T17:45:12.537Z\",\r\n \"updatedAt\": \"2021-06-18T03:14:01.017Z\",\r\n \"serviceBusEndpoint\": \"https://geodr-secondary-1.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\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/shsama-rg/providers/Microsoft.EventHub/namespaces/ehwhitelisttest\",\r\n \"name\": \"ehwhitelisttest\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"East US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": true,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:ehwhitelisttest\",\r\n \"createdAt\": \"2021-06-14T22:09:08.543Z\",\r\n \"updatedAt\": \"2021-06-14T22:10:26.767Z\",\r\n \"serviceBusEndpoint\": \"https://ehwhitelisttest.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/EventHubsVNETTestingRG/providers/Microsoft.EventHub/namespaces/ali-bypass-test\",\r\n \"name\": \"ali-bypass-test\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West Central US\",\r\n \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/dbedb4e0-40e6-4145-81f3-f1314c150774/resourceGroups/alitest/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ali-id-1\": {\r\n \"clientId\": \"16bc3fc1-8bc8-46a4-bd4d-583104db7d9a\",\r\n \"principalId\": \"6b03c867-9188-427a-a440-2d0e624c95cb\"\r\n }\r\n }\r\n },\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"encryption\": {\r\n \"keySource\": \"Microsoft.KeyVault\",\r\n \"keyVaultProperties\": [\r\n {\r\n \"keyName\": \"al-key\",\r\n \"keyVaultUri\": \"https://ali-kv.vault.azure.net\",\r\n \"keyVersion\": \"\",\r\n \"identity\": {\r\n \"userAssignedIdentity\": \"/subscriptions/dbedb4e0-40e6-4145-81f3-f1314c150774/resourceGroups/alitest/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ali-id-1\"\r\n }\r\n }\r\n ],\r\n \"requireInfrastructureEncryption\": false\r\n },\r\n \"clusterArmId\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/EventHubsVNETTestingRG/providers/Microsoft.EventHub/clusters/EventHubsVNetTesting\",\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:ali-bypass-test\",\r\n \"createdAt\": \"2021-06-14T22:19:01.01Z\",\r\n \"updatedAt\": \"2021-09-18T21:56:13.387Z\",\r\n \"serviceBusEndpoint\": \"https://ali-bypass-test.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\": 4\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/sjrg/providers/Microsoft.EventHub/namespaces/sjmwhpremium\",\r\n \"name\": \"sjmwhpremium\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": true,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:sjmwhpremium\",\r\n \"createdAt\": \"2021-06-15T04:32:43.893Z\",\r\n \"updatedAt\": \"2021-09-15T16:49:44.363Z\",\r\n \"serviceBusEndpoint\": \"https://sjmwhpremium.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/kindrasiri-synapse-test-rg/providers/Microsoft.EventHub/namespaces/azuremsgtest\",\r\n \"name\": \"azuremsgtest\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:azuremsgtest\",\r\n \"createdAt\": \"2021-07-01T01:43:16.197Z\",\r\n \"updatedAt\": \"2021-07-01T01:44:09.693Z\",\r\n \"serviceBusEndpoint\": \"https://azuremsgtest.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/dorothytest/providers/Microsoft.EventHub/namespaces/vnetehtest\",\r\n \"name\": \"vnetehtest\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:vnetehtest\",\r\n \"createdAt\": \"2021-07-01T22:51:08.083Z\",\r\n \"updatedAt\": \"2021-07-01T22:52:00.777Z\",\r\n \"serviceBusEndpoint\": \"https://vnetehtest.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\": 2\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/sjrgcbn/providers/Microsoft.EventHub/namespaces/sjpremiumcbnns\",\r\n \"name\": \"sjpremiumcbnns\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"EAST US 2 EUAP\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:sjpremiumcbnns\",\r\n \"createdAt\": \"2021-07-02T20:52:00.477Z\",\r\n \"updatedAt\": \"2021-07-02T22:13:32.103Z\",\r\n \"serviceBusEndpoint\": \"https://sjpremiumcbnns.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/sjrgcbn/providers/Microsoft.EventHub/namespaces/sjcbnstandard\",\r\n \"name\": \"sjcbnstandard\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"EAST US 2 EUAP\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": true,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:sjcbnstandard\",\r\n \"createdAt\": \"2021-07-03T06:59:07.623Z\",\r\n \"updatedAt\": \"2021-07-03T06:59:56.193Z\",\r\n \"serviceBusEndpoint\": \"https://sjcbnstandard.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/assures-kafka/providers/Microsoft.EventHub/namespaces/kafka-perf-decrease\",\r\n \"name\": \"kafka-perf-decrease\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:kafka-perf-decrease\",\r\n \"createdAt\": \"2021-07-06T18:21:46.48Z\",\r\n \"updatedAt\": \"2021-07-06T18:22:48.857Z\",\r\n \"serviceBusEndpoint\": \"https://kafka-perf-decrease.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-CentralUSEUAP/providers/Microsoft.EventHub/namespaces/hmlam-cdm03-502\",\r\n \"name\": \"hmlam-cdm03-502\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"Central US EUAP\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:hmlam-cdm03-502\",\r\n \"createdAt\": \"2021-07-07T01:31:09.74Z\",\r\n \"updatedAt\": \"2021-07-14T00:06:10.6Z\",\r\n \"serviceBusEndpoint\": \"https://hmlam-cdm03-502.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/PPGTest/providers/Microsoft.EventHub/namespaces/TestEHSys0705\",\r\n \"name\": \"TestEHSys0705\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"Central US EUAP\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:testehsys0705\",\r\n \"createdAt\": \"2021-07-07T20:50:02.06Z\",\r\n \"updatedAt\": \"2021-07-07T20:50:49.037Z\",\r\n \"serviceBusEndpoint\": \"https://TestEHSys0705.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/disablelocalauth/providers/Microsoft.EventHub/namespaces/ardsouza-disablelocalauth-canary-test1\",\r\n \"name\": \"ardsouza-disablelocalauth-canary-test1\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"EAST US 2 EUAP\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": true,\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-disablelocalauth-canary-test1\",\r\n \"createdAt\": \"2021-07-13T22:20:11.607Z\",\r\n \"updatedAt\": \"2021-07-13T22:21:11.107Z\",\r\n \"serviceBusEndpoint\": \"https://ardsouza-disablelocalauth-canary-test1.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/disablelocalauth/providers/Microsoft.EventHub/namespaces/ardsouza-disablelocalauth-canary-test2\",\r\n \"name\": \"ardsouza-disablelocalauth-canary-test2\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"EAST US 2 EUAP\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": true,\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-disablelocalauth-canary-test2\",\r\n \"createdAt\": \"2021-07-13T22:57:04.87Z\",\r\n \"updatedAt\": \"2021-07-13T23:54:08.33Z\",\r\n \"serviceBusEndpoint\": \"https://ardsouza-disablelocalauth-canary-test2.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/PPGTest/providers/Microsoft.EventHub/namespaces/TestSysTopicCan0716\",\r\n \"name\": \"TestSysTopicCan0716\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"EAST US 2 EUAP\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": true,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:testsystopiccan0716\",\r\n \"createdAt\": \"2021-07-16T21:48:26.007Z\",\r\n \"updatedAt\": \"2021-07-16T21:49:17.663Z\",\r\n \"serviceBusEndpoint\": \"https://TestSysTopicCan0716.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-westeurope-test/providers/Microsoft.EventHub/namespaces/ardsouza-07-2021-capture-adls2test\",\r\n \"name\": \"ardsouza-07-2021-capture-adls2test\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"Southeast Asia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": true,\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-07-2021-capture-adls2test\",\r\n \"createdAt\": \"2021-07-27T17:35:55.01Z\",\r\n \"updatedAt\": \"2021-07-27T17:36:46.08Z\",\r\n \"serviceBusEndpoint\": \"https://ardsouza-07-2021-capture-adls2test.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\": 2\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/sjrg/providers/Microsoft.EventHub/namespaces/sjpremiumyt\",\r\n \"name\": \"sjpremiumyt\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"Canada Central\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": true,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:sjpremiumyt\",\r\n \"createdAt\": \"2021-07-30T16:58:37.797Z\",\r\n \"updatedAt\": \"2021-09-08T18:47:53.797Z\",\r\n \"serviceBusEndpoint\": \"https://sjpremiumyt.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\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/sjrg/providers/Microsoft.EventHub/namespaces/sjpremiumsy1\",\r\n \"name\": \"sjpremiumsy1\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"Australia East\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": true,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:sjpremiumsy1\",\r\n \"createdAt\": \"2021-07-30T17:57:47.803Z\",\r\n \"updatedAt\": \"2021-07-30T17:59:25.597Z\",\r\n \"serviceBusEndpoint\": \"https://sjpremiumsy1.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-CentralUSEUAP/providers/Microsoft.EventHub/namespaces/drdrillPrimary08022021\",\r\n \"name\": \"drdrillPrimary08022021\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"Central US EUAP\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:drdrillprimary08022021\",\r\n \"createdAt\": \"2021-07-31T01:33:40.18Z\",\r\n \"updatedAt\": \"2021-08-30T23:20:31.35Z\",\r\n \"serviceBusEndpoint\": \"https://drdrillPrimary08022021.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/zztestrg/providers/Microsoft.EventHub/namespaces/zzns01-pltest\",\r\n \"name\": \"zzns01-pltest\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": true,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:zzns01-pltest\",\r\n \"createdAt\": \"2021-08-23T23:02:28.61Z\",\r\n \"updatedAt\": \"2021-08-23T23:03:15.843Z\",\r\n \"serviceBusEndpoint\": \"https://zzns01-pltest.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/schiller-aa/providers/Microsoft.EventHub/namespaces/aa-test-namespace\",\r\n \"name\": \"aa-test-namespace\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:aa-test-namespace\",\r\n \"createdAt\": \"2021-08-25T14:08:23.25Z\",\r\n \"updatedAt\": \"2021-08-25T14:09:11.517Z\",\r\n \"serviceBusEndpoint\": \"https://aa-test-namespace.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/EventHubsVNETTestingRG/providers/Microsoft.EventHub/namespaces/schiller-aa-namespace\",\r\n \"name\": \"schiller-aa-namespace\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"clusterArmId\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/EventHubsVNETTestingRG/providers/Microsoft.EventHub/clusters/EventHubsVNetTesting\",\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:schiller-aa-namespace\",\r\n \"createdAt\": \"2021-08-25T19:00:29.82Z\",\r\n \"updatedAt\": \"2021-08-25T19:01:16.553Z\",\r\n \"serviceBusEndpoint\": \"https://schiller-aa-namespace.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/EventHubsVNETTestingRG/providers/Microsoft.EventHub/namespaces/testMSI01060825\",\r\n \"name\": \"testMSI01060825\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West Central US\",\r\n \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/1196a38f-8e8a-4916-9056-787c19a53125/resourcegroups/ppgtest/providers/microsoft.managedidentity/userassignedidentities/testuai0618\": {\r\n \"clientId\": \"12e5b965-1d50-4d1b-b1df-a805dce0f0ec\",\r\n \"principalId\": \"aeb481c1-762b-474e-b6c6-86c67433a9ea\"\r\n }\r\n }\r\n },\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"encryption\": {\r\n \"keySource\": \"Microsoft.KeyVault\",\r\n \"keyVaultProperties\": [\r\n {\r\n \"keyName\": \"testkey0618\",\r\n \"keyVaultUri\": \"https://testkv0618.vault.azure.net\",\r\n \"keyVersion\": \"\",\r\n \"identity\": {\r\n \"userAssignedIdentity\": \"/subscriptions/1196a38f-8e8a-4916-9056-787c19a53125/resourcegroups/ppgtest/providers/microsoft.managedidentity/userassignedidentities/testuai0618\"\r\n }\r\n }\r\n ],\r\n \"requireInfrastructureEncryption\": false\r\n },\r\n \"clusterArmId\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/EventHubsVNETTestingRG/providers/Microsoft.EventHub/clusters/EventHubsVNetTesting\",\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:testmsi01060825\",\r\n \"createdAt\": \"2021-08-25T21:21:21.967Z\",\r\n \"updatedAt\": \"2021-08-25T21:26:16.927Z\",\r\n \"serviceBusEndpoint\": \"https://testMSI01060825.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.EventHub/namespaces?api-version=2021-06-01-preview&$skipToken=2021-08-25T21:21:21.967Z\"\r\n}", + "ResponseBody": "{\r\n \"value\": [\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 \"disableLocalAuth\": false,\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\": 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 \"disableLocalAuth\": false,\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/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 \"disableLocalAuth\": false,\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-06-15T14:20:00.153Z\",\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/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 \"disableLocalAuth\": false,\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/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 \"disableLocalAuth\": false,\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/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 \"disableLocalAuth\": false,\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/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 \"disableLocalAuth\": false,\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\": 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 \"disableLocalAuth\": false,\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/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 \"disableLocalAuth\": false,\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\": 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 \"disableLocalAuth\": false,\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/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 \"disableLocalAuth\": false,\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\": \"Premium\",\r\n \"tier\": \"Premium\",\r\n \"capacity\": 1\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 \"disableLocalAuth\": false,\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"clusterArmId\": \"/subscriptions/f7d26b87-63a8-4d84-93b3-e22dcf545c83/resourceGroups/rg-spark-na903/providers/Microsoft.EventHub/clusters/spark-na903-src-eh-cl1\",\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\": \"2021-04-13T22:12:05.26Z\",\r\n \"serviceBusEndpoint\": \"https://FirewallTestEHNS.servicebus.windows.net:443/\",\r\n \"status\": \"Removing\"\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 \"disableLocalAuth\": false,\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\": 2\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 \"disableLocalAuth\": false,\r\n \"zoneRedundant\": true,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\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-15T21:59:51.447Z\",\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\": \"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 \"disableLocalAuth\": false,\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/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 \"disableLocalAuth\": false,\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/shubhatestrg/providers/Microsoft.EventHub/namespaces/uxdemoforsr\",\r\n \"name\": \"uxdemoforsr\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:uxdemoforsr\",\r\n \"createdAt\": \"2020-05-21T19:41:03.867Z\",\r\n \"updatedAt\": \"2020-05-21T19:41:50.97Z\",\r\n \"serviceBusEndpoint\": \"https://uxdemoforsr.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/v-ajnavtest/providers/Microsoft.EventHub/namespaces/testingnew2018\",\r\n \"name\": \"testingnew2018\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:testingnew2018\",\r\n \"createdAt\": \"2020-06-14T21:02:16.57Z\",\r\n \"updatedAt\": \"2020-06-14T21:03:04.417Z\",\r\n \"serviceBusEndpoint\": \"https://testingnew2018.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/v-ajnavtest/providers/Microsoft.EventHub/namespaces/testingnew20181\",\r\n \"name\": \"testingnew20181\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"East US\",\r\n \"tags\": {},\r\n \"identity\": {\r\n \"principalId\": \"941b9c7d-e77d-485b-bed7-bcf43fa5a61d\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": true,\r\n \"isAutoInflateEnabled\": true,\r\n \"maximumThroughputUnits\": 12,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:testingnew20181\",\r\n \"createdAt\": \"2020-06-14T23:00:04.573Z\",\r\n \"updatedAt\": \"2021-11-02T22:55:11.343Z\",\r\n \"serviceBusEndpoint\": \"https://testingnew20181.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/clemensv8\",\r\n \"name\": \"clemensv8\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"North Europe\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:clemensv8\",\r\n \"createdAt\": \"2020-06-15T14:23:25.007Z\",\r\n \"updatedAt\": \"2020-06-15T14:52:08.377Z\",\r\n \"serviceBusEndpoint\": \"https://clemensv8.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\": 7\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/shubhatestrg/providers/Microsoft.EventHub/namespaces/tesgeotus\",\r\n \"name\": \"tesgeotus\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"East US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:tesgeotus\",\r\n \"createdAt\": \"2020-06-17T17:57:59.207Z\",\r\n \"updatedAt\": \"2020-06-17T18:22:37.757Z\",\r\n \"serviceBusEndpoint\": \"https://tesgeotus.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\": 7\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/shubhatestrg/providers/Microsoft.EventHub/namespaces/testgeotusec\",\r\n \"name\": \"testgeotusec\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:testgeotusec\",\r\n \"createdAt\": \"2020-06-17T18:19:55.487Z\",\r\n \"updatedAt\": \"2020-06-17T18:22:38.017Z\",\r\n \"serviceBusEndpoint\": \"https://testgeotusec.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-6828/providers/Microsoft.EventHub/namespaces/sdk-NS-2916\",\r\n \"name\": \"sdk-NS-2916\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": true,\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-2916\",\r\n \"createdAt\": \"2020-06-17T19:28:29.223Z\",\r\n \"updatedAt\": \"2020-06-17T19:29:19.167Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-2916.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/rg-schema-registry/providers/Microsoft.EventHub/namespaces/sr-playground\",\r\n \"name\": \"sr-playground\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"clusterArmId\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/sjrg/providers/Microsoft.EventHub/clusters/SchemaRegistryPreviewCluster\",\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:sr-playground\",\r\n \"createdAt\": \"2020-06-19T05:01:58.623Z\",\r\n \"updatedAt\": \"2020-06-19T05:05:36.437Z\",\r\n \"serviceBusEndpoint\": \"https://sr-playground.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/sjschemaregistry1\",\r\n \"name\": \"sjschemaregistry1\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"clusterArmId\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/sjrg/providers/Microsoft.EventHub/clusters/SchemaRegistryPreviewCluster\",\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:sjschemaregistry1\",\r\n \"createdAt\": \"2020-06-30T01:25:15.193Z\",\r\n \"updatedAt\": \"2020-06-30T01:26:03.24Z\",\r\n \"serviceBusEndpoint\": \"https://sjschemaregistry1.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/sjcueuap\",\r\n \"name\": \"sjcueuap\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"Central US EUAP\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:sjcueuap\",\r\n \"createdAt\": \"2020-07-07T01:19:52.39Z\",\r\n \"updatedAt\": \"2020-07-07T01:20:41.063Z\",\r\n \"serviceBusEndpoint\": \"https://sjcueuap.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/sjcentralindia\",\r\n \"name\": \"sjcentralindia\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"Central India\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:sjcentralindia\",\r\n \"createdAt\": \"2020-07-09T04:47:59.847Z\",\r\n \"updatedAt\": \"2020-07-09T04:48:59.697Z\",\r\n \"serviceBusEndpoint\": \"https://sjcentralindia.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/sjsouthindia\",\r\n \"name\": \"sjsouthindia\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"South India\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:sjsouthindia\",\r\n \"createdAt\": \"2020-07-25T17:37:49.96Z\",\r\n \"updatedAt\": \"2020-07-25T17:38:37.753Z\",\r\n \"serviceBusEndpoint\": \"https://sjsouthindia.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/rg-sr-bugbash/providers/Microsoft.EventHub/namespaces/sr-bugbash\",\r\n \"name\": \"sr-bugbash\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"clusterArmId\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/sjrg/providers/Microsoft.EventHub/clusters/SchemaRegistryPreviewCluster\",\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:sr-bugbash\",\r\n \"createdAt\": \"2020-08-17T00:01:00.033Z\",\r\n \"updatedAt\": \"2020-09-16T07:37:17.6Z\",\r\n \"serviceBusEndpoint\": \"https://sr-bugbash.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/zztestsecondary\",\r\n \"name\": \"zztestsecondary\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:zztestsecondary\",\r\n \"createdAt\": \"2020-08-26T20:46:48.983Z\",\r\n \"updatedAt\": \"2020-08-26T20:53:01.247Z\",\r\n \"serviceBusEndpoint\": \"https://zztestsecondary.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/zztestprimary\",\r\n \"name\": \"zztestprimary\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"East US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:zztestprimary\",\r\n \"createdAt\": \"2020-08-26T20:50:24.767Z\",\r\n \"updatedAt\": \"2020-08-26T20:53:01.247Z\",\r\n \"serviceBusEndpoint\": \"https://zztestprimary.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\": 8\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-WestEurope/providers/Microsoft.EventHub/namespaces/ns-localstore-scenario-10\",\r\n \"name\": \"ns-localstore-scenario-10\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West Europe\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:ns-localstore-scenario-10\",\r\n \"createdAt\": \"2020-09-06T17:24:27.343Z\",\r\n \"updatedAt\": \"2020-10-22T11:14:36.25Z\",\r\n \"serviceBusEndpoint\": \"https://ns-localstore-scenario-10.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/EventHubsVNETTestingRG/providers/Microsoft.EventHub/namespaces/sj-westcentralus\",\r\n \"name\": \"sj-westcentralus\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"clusterArmId\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/EventHubsVNETTestingRG/providers/Microsoft.EventHub/clusters/EventHubsVNetTesting\",\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:sj-westcentralus\",\r\n \"createdAt\": \"2020-09-23T00:07:29.707Z\",\r\n \"updatedAt\": \"2020-09-23T00:08:20.437Z\",\r\n \"serviceBusEndpoint\": \"https://sj-westcentralus.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/sjschemaregistry\",\r\n \"name\": \"sjschemaregistry\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:sjschemaregistry\",\r\n \"createdAt\": \"2020-09-29T19:00:19.527Z\",\r\n \"updatedAt\": \"2020-09-29T19:01:09.967Z\",\r\n \"serviceBusEndpoint\": \"https://sjschemaregistry.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/jfgRsrcGrp16/providers/Microsoft.EventHub/namespaces/jfgEvtHbNmspc1\",\r\n \"name\": \"jfgEvtHbNmspc1\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:jfgevthbnmspc1\",\r\n \"createdAt\": \"2020-10-19T02:50:21.05Z\",\r\n \"updatedAt\": \"2020-10-19T02:51:09.65Z\",\r\n \"serviceBusEndpoint\": \"https://jfgEvtHbNmspc1.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/zztestrg/providers/Microsoft.EventHub/namespaces/zztest03\",\r\n \"name\": \"zztest03\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:zztest03\",\r\n \"createdAt\": \"2020-10-20T21:48:16.673Z\",\r\n \"updatedAt\": \"2020-10-20T21:55:37.617Z\",\r\n \"serviceBusEndpoint\": \"https://zztest03.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/zztestrg/providers/Microsoft.EventHub/namespaces/zztest04\",\r\n \"name\": \"zztest04\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:zztest04\",\r\n \"createdAt\": \"2020-10-20T21:48:58.127Z\",\r\n \"updatedAt\": \"2020-10-20T21:57:59.613Z\",\r\n \"serviceBusEndpoint\": \"https://zztest04.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/sakoppes_test/providers/Microsoft.EventHub/namespaces/SamKoppesTestEHNamespace1\",\r\n \"name\": \"SamKoppesTestEHNamespace1\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"East US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:samkoppestestehnamespace1\",\r\n \"createdAt\": \"2020-10-23T17:59:47.117Z\",\r\n \"updatedAt\": \"2020-10-23T18:00:38.657Z\",\r\n \"serviceBusEndpoint\": \"https://SamKoppesTestEHNamespace1.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/hmlam-bn3-556\",\r\n \"name\": \"hmlam-bn3-556\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"clusterArmId\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/sjrg/providers/Microsoft.EventHub/clusters/SchemaRegistryPreviewCluster\",\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:hmlam-bn3-556\",\r\n \"createdAt\": \"2020-10-31T05:46:03.81Z\",\r\n \"updatedAt\": \"2020-10-31T05:46:54.773Z\",\r\n \"serviceBusEndpoint\": \"https://hmlam-bn3-556.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/jfgRsrcGrp18/providers/Microsoft.EventHub/namespaces/ADX-EG-jfgdataexplorer1\",\r\n \"name\": \"ADX-EG-jfgdataexplorer1\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"East US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:adx-eg-jfgdataexplorer1\",\r\n \"createdAt\": \"2020-11-09T16:50:22.813Z\",\r\n \"updatedAt\": \"2020-11-09T16:51:22.947Z\",\r\n \"serviceBusEndpoint\": \"https://ADX-EG-jfgdataexplorer1.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/manojprasad-rampup/providers/Microsoft.EventHub/namespaces/eventhub-nmp\",\r\n \"name\": \"eventhub-nmp\",\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 \"disableLocalAuth\": false,\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:eventhub-nmp\",\r\n \"createdAt\": \"2020-12-28T18:50:46.36Z\",\r\n \"updatedAt\": \"2021-04-21T23:21:24.477Z\",\r\n \"serviceBusEndpoint\": \"https://eventhub-nmp.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/PPGTestPG/providers/Microsoft.EventHub/namespaces/TestEHSys0121\",\r\n \"name\": \"TestEHSys0121\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"EAST US 2 EUAP\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:testehsys0121\",\r\n \"createdAt\": \"2021-01-22T23:59:08.403Z\",\r\n \"updatedAt\": \"2021-01-22T23:59:53.9Z\",\r\n \"serviceBusEndpoint\": \"https://TestEHSys0121.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/PPGTestPG/providers/Microsoft.EventHub/namespaces/TestEH0125\",\r\n \"name\": \"TestEH0125\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"EAST US 2 EUAP\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:testeh0125\",\r\n \"createdAt\": \"2021-01-26T21:05:50.063Z\",\r\n \"updatedAt\": \"2021-01-26T21:06:39.467Z\",\r\n \"serviceBusEndpoint\": \"https://TestEH0125.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-WestUS2/providers/Microsoft.EventHub/namespaces/hmlam-2-mwh01-510\",\r\n \"name\": \"hmlam-2-mwh01-510\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:hmlam-2-mwh01-510\",\r\n \"createdAt\": \"2021-01-27T21:26:17.357Z\",\r\n \"updatedAt\": \"2021-10-11T17:52:07.59Z\",\r\n \"serviceBusEndpoint\": \"https://hmlam-2-mwh01-510.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/EventHubsVNETTestingRG/providers/Microsoft.EventHub/namespaces/testencypt0128\",\r\n \"name\": \"testencypt0128\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West Central US\",\r\n \"tags\": {},\r\n \"identity\": {\r\n \"principalId\": \"e9d041e2-62a8-41c8-9b88-71031dbf2695\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"encryption\": {\r\n \"keySource\": \"Microsoft.KeyVault\",\r\n \"keyVaultProperties\": [\r\n {\r\n \"keyName\": \"testkey\",\r\n \"keyVaultUri\": \"https://testrbac0113.vault.azure.net\",\r\n \"keyVersion\": \"\"\r\n }\r\n ],\r\n \"requireInfrastructureEncryption\": false\r\n },\r\n \"clusterArmId\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/EventHubsVNETTestingRG/providers/Microsoft.EventHub/clusters/EventHubsVNetTesting\",\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:testencypt0128\",\r\n \"createdAt\": \"2021-01-29T03:11:24.39Z\",\r\n \"updatedAt\": \"2021-11-01T03:08:07.49Z\",\r\n \"serviceBusEndpoint\": \"https://testencypt0128.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/xcrg/providers/Microsoft.EventHub/namespaces/byok-offset-test\",\r\n \"name\": \"byok-offset-test\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"Central US EUAP\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:byok-offset-test\",\r\n \"createdAt\": \"2021-02-09T17:53:55.587Z\",\r\n \"updatedAt\": \"2021-02-09T18:00:15.627Z\",\r\n \"serviceBusEndpoint\": \"https://byok-offset-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/xcrg/providers/Microsoft.EventHub/namespaces/byok-ot-test\",\r\n \"name\": \"byok-ot-test\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"EAST US 2 EUAP\",\r\n \"tags\": {},\r\n \"identity\": {\r\n \"principalId\": \"a2a77dd1-1a20-4640-a408-2a254a9e0b69\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"encryption\": {\r\n \"keySource\": \"Microsoft.KeyVault\",\r\n \"keyVaultProperties\": [\r\n {\r\n \"keyName\": \"offset-journal-byok\",\r\n \"keyVaultUri\": \"https://xc-test.vault.azure.net\",\r\n \"keyVersion\": \"\"\r\n }\r\n ],\r\n \"requireInfrastructureEncryption\": false\r\n },\r\n \"clusterArmId\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/prod-cbn04-503-533-rg/providers/Microsoft.EventHub/clusters/CBN04-503\",\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:byok-ot-test\",\r\n \"createdAt\": \"2021-02-09T19:17:55.363Z\",\r\n \"updatedAt\": \"2021-11-12T21:36:13.557Z\",\r\n \"serviceBusEndpoint\": \"https://byok-ot-test.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/jfgWalmart1/providers/Microsoft.EventHub/namespaces/jfgEH-Wmt-1\",\r\n \"name\": \"jfgEH-Wmt-1\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"East US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:jfgeh-wmt-1\",\r\n \"createdAt\": \"2021-02-14T23:49:41.33Z\",\r\n \"updatedAt\": \"2021-02-14T23:50:33.71Z\",\r\n \"serviceBusEndpoint\": \"https://jfgEH-Wmt-1.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/jfgWalmart1/providers/Microsoft.EventHub/namespaces/jfgEH-Wmt-2\",\r\n \"name\": \"jfgEH-Wmt-2\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"East US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:jfgeh-wmt-2\",\r\n \"createdAt\": \"2021-02-15T02:12:43.573Z\",\r\n \"updatedAt\": \"2021-02-15T02:13:30.477Z\",\r\n \"serviceBusEndpoint\": \"https://jfgEH-Wmt-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/sjrg/providers/Microsoft.EventHub/namespaces/sjwestus2\",\r\n \"name\": \"sjwestus2\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:sjwestus2\",\r\n \"createdAt\": \"2021-02-18T06:26:28.413Z\",\r\n \"updatedAt\": \"2021-02-18T06:27:16.157Z\",\r\n \"serviceBusEndpoint\": \"https://sjwestus2.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/ehspringboot\",\r\n \"name\": \"ehspringboot\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:ehspringboot\",\r\n \"createdAt\": \"2021-02-26T01:37:31.123Z\",\r\n \"updatedAt\": \"2021-02-26T01:38:18.35Z\",\r\n \"serviceBusEndpoint\": \"https://ehspringboot.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/useridentities/providers/Microsoft.EventHub/namespaces/icmtest-1\",\r\n \"name\": \"icmtest-1\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"East US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:icmtest-1\",\r\n \"createdAt\": \"2021-03-05T19:07:00.873Z\",\r\n \"updatedAt\": \"2021-03-05T19:07:51.14Z\",\r\n \"serviceBusEndpoint\": \"https://icmtest-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/useridentities/providers/Microsoft.EventHub/namespaces/icm-testing\",\r\n \"name\": \"icm-testing\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"East US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:icm-testing\",\r\n \"createdAt\": \"2021-03-05T19:36:02.113Z\",\r\n \"updatedAt\": \"2021-03-05T19:36:54.433Z\",\r\n \"serviceBusEndpoint\": \"https://icm-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/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-EASTUS2EUAP/providers/Microsoft.EventHub/namespaces/sarama-gw-fix-verify\",\r\n \"name\": \"sarama-gw-fix-verify\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"EAST US 2 EUAP\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:sarama-gw-fix-verify\",\r\n \"createdAt\": \"2021-03-09T02:35:20.1Z\",\r\n \"updatedAt\": \"2021-03-09T02:36:08.687Z\",\r\n \"serviceBusEndpoint\": \"https://sarama-gw-fix-verify.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-cbn04-503-533-rg/providers/Microsoft.EventHub/namespaces/clemen-test-eh-sa\",\r\n \"name\": \"clemen-test-eh-sa\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"EAST US 2 EUAP\",\r\n \"tags\": {},\r\n \"identity\": {\r\n \"principalId\": \"b4b473dd-8d23-45ab-9f29-deee83baf0b1\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:clemen-test-eh-sa\",\r\n \"createdAt\": \"2021-03-31T20:02:42.077Z\",\r\n \"updatedAt\": \"2021-10-01T19:57:09.467Z\",\r\n \"serviceBusEndpoint\": \"https://clemen-test-eh-sa.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/DisablePublicAccesTesting/providers/Microsoft.EventHub/namespaces/DisablePublicAccessTesting-EHStandard\",\r\n \"name\": \"DisablePublicAccessTesting-EHStandard\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"EAST US 2 EUAP\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:disablepublicaccesstesting-ehstandard\",\r\n \"createdAt\": \"2021-04-06T15:53:47.477Z\",\r\n \"updatedAt\": \"2021-04-06T15:54:32.47Z\",\r\n \"serviceBusEndpoint\": \"https://DisablePublicAccessTesting-EHStandard.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/arthur/providers/Microsoft.EventHub/namespaces/arerlend-sr-test\",\r\n \"name\": \"arerlend-sr-test\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:arerlend-sr-test\",\r\n \"createdAt\": \"2021-04-16T05:43:31.857Z\",\r\n \"updatedAt\": \"2021-04-16T05:44:16.807Z\",\r\n \"serviceBusEndpoint\": \"https://arerlend-sr-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/EHResourceGr1/providers/Microsoft.EventHub/namespaces/kasuneventhubs\",\r\n \"name\": \"kasuneventhubs\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"East US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:kasuneventhubs\",\r\n \"createdAt\": \"2021-04-16T22:17:03.377Z\",\r\n \"updatedAt\": \"2021-10-13T20:55:24.767Z\",\r\n \"serviceBusEndpoint\": \"https://kasuneventhubs.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-cbn04-503-533-rg/providers/Microsoft.EventHub/namespaces/assures-cgissue-test\",\r\n \"name\": \"assures-cgissue-test\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"EAST US 2 EUAP\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"clusterArmId\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/prod-cbn04-503-533-rg/providers/Microsoft.EventHub/clusters/CBN04-503\",\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:assures-cgissue-test\",\r\n \"createdAt\": \"2021-05-01T01:32:54.81Z\",\r\n \"updatedAt\": \"2021-05-01T01:33:47.6Z\",\r\n \"serviceBusEndpoint\": \"https://assures-cgissue-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\": 2\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/kindrasiri_eh_benchmark/providers/Microsoft.EventHub/namespaces/ehbenchmark\",\r\n \"name\": \"ehbenchmark\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"East US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:ehbenchmark\",\r\n \"createdAt\": \"2021-05-03T16:12:09.03Z\",\r\n \"updatedAt\": \"2021-05-03T16:12:56.44Z\",\r\n \"serviceBusEndpoint\": \"https://ehbenchmark.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-cbn04-503-533-rg/providers/Microsoft.EventHub/namespaces/assures-cgissue-test-2\",\r\n \"name\": \"assures-cgissue-test-2\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"EAST US 2 EUAP\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"clusterArmId\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/prod-cbn04-503-533-rg/providers/Microsoft.EventHub/clusters/CBN04-503\",\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:assures-cgissue-test-2\",\r\n \"createdAt\": \"2021-05-06T19:38:04.303Z\",\r\n \"updatedAt\": \"2021-05-06T19:38:59.563Z\",\r\n \"serviceBusEndpoint\": \"https://assures-cgissue-test-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/v-ajnavtest/providers/Microsoft.EventHub/namespaces/testcluster-test2-eastus-eh-d-ns\",\r\n \"name\": \"testcluster-test2-eastus-eh-d-ns\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"East US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"clusterArmId\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/v-ajnavtest/providers/Microsoft.EventHub/clusters/testingclusterarmtemplate\",\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:testcluster-test2-eastus-eh-d-ns\",\r\n \"createdAt\": \"2021-05-06T23:23:01.673Z\",\r\n \"updatedAt\": \"2021-05-06T23:24:07.72Z\",\r\n \"serviceBusEndpoint\": \"https://testcluster-test2-eastus-eh-d-ns.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\": 10\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ardsouza-test-5-19/providers/Microsoft.EventHub/namespaces/ardsouza-5-19-2020-deleteme-basic\",\r\n \"name\": \"ardsouza-5-19-2020-deleteme-basic\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"Canada Central\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": true,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:ardsouza-5-19-2020-deleteme-basic\",\r\n \"createdAt\": \"2021-05-20T01:26:36.323Z\",\r\n \"updatedAt\": \"2021-05-20T01:28:35.287Z\",\r\n \"serviceBusEndpoint\": \"https://ardsouza-5-19-2020-deleteme-basic.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/EventHubsVNETTestingRG/providers/Microsoft.EventHub/namespaces/TestMSiNew0520\",\r\n \"name\": \"TestMSiNew0520\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West Central US\",\r\n \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/ppgtest/providers/microsoft.managedidentity/userassignedidentities/testuai0412new\": {\r\n \"clientId\": \"ec83a3e2-bd7b-4e77-bde9-76ec42eb1d6a\",\r\n \"principalId\": \"2496443e-0c52-4245-84fb-6ee677269b16\"\r\n },\r\n \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/ppgtest/providers/microsoft.managedidentity/userassignedidentities/testuai0506\": {\r\n \"clientId\": \"40578752-05e9-4b8b-bdc4-f07e960571e0\",\r\n \"principalId\": \"406cc555-ce08-485a-a5a6-ef1ccc5e7bec\"\r\n }\r\n }\r\n },\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"encryption\": {\r\n \"keySource\": \"Microsoft.KeyVault\",\r\n \"keyVaultProperties\": [\r\n {\r\n \"keyName\": \"TestKey0506\",\r\n \"keyVaultUri\": \"https://testkv0506.vault.azure.net\",\r\n \"keyVersion\": \"\",\r\n \"identity\": {\r\n \"userAssignedIdentity\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/ppgtest/providers/microsoft.managedidentity/userassignedidentities/testuai0506\"\r\n }\r\n }\r\n ],\r\n \"requireInfrastructureEncryption\": false\r\n },\r\n \"clusterArmId\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/EventHubsVNETTestingRG/providers/Microsoft.EventHub/clusters/EventHubsVNetTesting\",\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:testmsinew0520\",\r\n \"createdAt\": \"2021-05-20T22:42:14.17Z\",\r\n \"updatedAt\": \"2021-08-06T19:47:08.883Z\",\r\n \"serviceBusEndpoint\": \"https://TestMSiNew0520.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\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/sjrg/providers/Microsoft.EventHub/namespaces/sjpremiumwe\",\r\n \"name\": \"sjpremiumwe\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West Europe\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": true,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:sjpremiumwe\",\r\n \"createdAt\": \"2021-05-21T18:16:42.207Z\",\r\n \"updatedAt\": \"2021-05-25T05:53:39.053Z\",\r\n \"serviceBusEndpoint\": \"https://sjpremiumwe.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\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/manojprasad-rampup/providers/Microsoft.EventHub/namespaces/manojprasad-eventhubs-premium\",\r\n \"name\": \"manojprasad-eventhubs-premium\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"Australia East\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": true,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:manojprasad-eventhubs-premium\",\r\n \"createdAt\": \"2021-05-24T19:31:02.89Z\",\r\n \"updatedAt\": \"2021-05-24T19:32:55.72Z\",\r\n \"serviceBusEndpoint\": \"https://manojprasad-eventhubs-premium.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\": 2\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ardsouza-test-5-19/providers/Microsoft.EventHub/namespaces/ardsouza-premium-aztest-5-24-deleteme\",\r\n \"name\": \"ardsouza-premium-aztest-5-24-deleteme\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West Europe\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": true,\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-premium-aztest-5-24-deleteme\",\r\n \"createdAt\": \"2021-05-24T23:11:51.05Z\",\r\n \"updatedAt\": \"2021-05-24T23:15:24.323Z\",\r\n \"serviceBusEndpoint\": \"https://ardsouza-premium-aztest-5-24-deleteme.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\": 2\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ardsouza-test-5-19/providers/Microsoft.EventHub/namespaces/ardsouza-westus-2-ehprem\",\r\n \"name\": \"ardsouza-westus-2-ehprem\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": true,\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-westus-2-ehprem\",\r\n \"createdAt\": \"2021-05-25T14:10:07.963Z\",\r\n \"updatedAt\": \"2021-05-25T14:14:10.663Z\",\r\n \"serviceBusEndpoint\": \"https://ardsouza-westus-2-ehprem.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\": 4\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/kindrasiri_eh_premium_benchmarking/providers/Microsoft.EventHub/namespaces/ehpremium\",\r\n \"name\": \"ehpremium\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"East US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": true,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:ehpremium\",\r\n \"createdAt\": \"2021-05-25T22:33:28.69Z\",\r\n \"updatedAt\": \"2021-09-24T22:03:55.787Z\",\r\n \"serviceBusEndpoint\": \"https://ehpremium.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/bailiu-servicebus-test-resources/providers/Microsoft.EventHub/namespaces/bailiu-eventhubs-test-centralus\",\r\n \"name\": \"bailiu-eventhubs-test-centralus\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"Central US EUAP\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:bailiu-eventhubs-test-centralus\",\r\n \"createdAt\": \"2021-06-07T17:52:17.123Z\",\r\n \"updatedAt\": \"2021-06-07T17:53:05.263Z\",\r\n \"serviceBusEndpoint\": \"https://bailiu-eventhubs-test-centralus.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/bailiu-servicebus-test-resources/providers/Microsoft.EventHub/namespaces/bailiu-eventhubs-test-westus2\",\r\n \"name\": \"bailiu-eventhubs-test-westus2\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": true,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:bailiu-eventhubs-test-westus2\",\r\n \"createdAt\": \"2021-06-07T19:23:45.427Z\",\r\n \"updatedAt\": \"2021-06-07T19:24:33.517Z\",\r\n \"serviceBusEndpoint\": \"https://bailiu-eventhubs-test-westus2.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/assures-geodr-prod/providers/Microsoft.EventHub/namespaces/geodr-primary\",\r\n \"name\": \"geodr-primary\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": true,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:geodr-primary\",\r\n \"createdAt\": \"2021-06-10T17:40:59.263Z\",\r\n \"updatedAt\": \"2021-06-18T03:14:01.397Z\",\r\n \"serviceBusEndpoint\": \"https://geodr-primary.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/assures-geodr-prod/providers/Microsoft.EventHub/namespaces/geodr-secondary-1\",\r\n \"name\": \"geodr-secondary-1\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": true,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:geodr-secondary-1\",\r\n \"createdAt\": \"2021-06-10T17:45:12.537Z\",\r\n \"updatedAt\": \"2021-06-18T03:14:01.017Z\",\r\n \"serviceBusEndpoint\": \"https://geodr-secondary-1.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\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/shsama-rg/providers/Microsoft.EventHub/namespaces/ehwhitelisttest\",\r\n \"name\": \"ehwhitelisttest\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"East US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": true,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:ehwhitelisttest\",\r\n \"createdAt\": \"2021-06-14T22:09:08.543Z\",\r\n \"updatedAt\": \"2021-06-14T22:10:26.767Z\",\r\n \"serviceBusEndpoint\": \"https://ehwhitelisttest.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/EventHubsVNETTestingRG/providers/Microsoft.EventHub/namespaces/ali-bypass-test\",\r\n \"name\": \"ali-bypass-test\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West Central US\",\r\n \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/dbedb4e0-40e6-4145-81f3-f1314c150774/resourceGroups/alitest/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ali-id-1\": {\r\n \"clientId\": \"16bc3fc1-8bc8-46a4-bd4d-583104db7d9a\",\r\n \"principalId\": \"6b03c867-9188-427a-a440-2d0e624c95cb\"\r\n }\r\n }\r\n },\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"encryption\": {\r\n \"keySource\": \"Microsoft.KeyVault\",\r\n \"keyVaultProperties\": [\r\n {\r\n \"keyName\": \"al-key\",\r\n \"keyVaultUri\": \"https://ali-kv.vault.azure.net\",\r\n \"keyVersion\": \"\",\r\n \"identity\": {\r\n \"userAssignedIdentity\": \"/subscriptions/dbedb4e0-40e6-4145-81f3-f1314c150774/resourceGroups/alitest/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ali-id-1\"\r\n }\r\n }\r\n ],\r\n \"requireInfrastructureEncryption\": false\r\n },\r\n \"clusterArmId\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/EventHubsVNETTestingRG/providers/Microsoft.EventHub/clusters/EventHubsVNetTesting\",\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:ali-bypass-test\",\r\n \"createdAt\": \"2021-06-14T22:19:01.01Z\",\r\n \"updatedAt\": \"2021-11-03T21:56:20.253Z\",\r\n \"serviceBusEndpoint\": \"https://ali-bypass-test.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\": 4\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/sjrg/providers/Microsoft.EventHub/namespaces/sjmwhpremium\",\r\n \"name\": \"sjmwhpremium\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": true,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:sjmwhpremium\",\r\n \"createdAt\": \"2021-06-15T04:32:43.893Z\",\r\n \"updatedAt\": \"2021-09-15T16:49:44.363Z\",\r\n \"serviceBusEndpoint\": \"https://sjmwhpremium.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/kindrasiri-synapse-test-rg/providers/Microsoft.EventHub/namespaces/azuremsgtest\",\r\n \"name\": \"azuremsgtest\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:azuremsgtest\",\r\n \"createdAt\": \"2021-07-01T01:43:16.197Z\",\r\n \"updatedAt\": \"2021-07-01T01:44:09.693Z\",\r\n \"serviceBusEndpoint\": \"https://azuremsgtest.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/dorothytest/providers/Microsoft.EventHub/namespaces/vnetehtest\",\r\n \"name\": \"vnetehtest\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:vnetehtest\",\r\n \"createdAt\": \"2021-07-01T22:51:08.083Z\",\r\n \"updatedAt\": \"2021-07-01T22:52:00.777Z\",\r\n \"serviceBusEndpoint\": \"https://vnetehtest.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\": 2\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/sjrgcbn/providers/Microsoft.EventHub/namespaces/sjpremiumcbnns\",\r\n \"name\": \"sjpremiumcbnns\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"EAST US 2 EUAP\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:sjpremiumcbnns\",\r\n \"createdAt\": \"2021-07-02T20:52:00.477Z\",\r\n \"updatedAt\": \"2021-07-02T22:13:32.103Z\",\r\n \"serviceBusEndpoint\": \"https://sjpremiumcbnns.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/sjrgcbn/providers/Microsoft.EventHub/namespaces/sjcbnstandard\",\r\n \"name\": \"sjcbnstandard\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"EAST US 2 EUAP\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": true,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:sjcbnstandard\",\r\n \"createdAt\": \"2021-07-03T06:59:07.623Z\",\r\n \"updatedAt\": \"2021-07-03T06:59:56.193Z\",\r\n \"serviceBusEndpoint\": \"https://sjcbnstandard.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/assures-kafka/providers/Microsoft.EventHub/namespaces/kafka-perf-decrease\",\r\n \"name\": \"kafka-perf-decrease\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:kafka-perf-decrease\",\r\n \"createdAt\": \"2021-07-06T18:21:46.48Z\",\r\n \"updatedAt\": \"2021-07-06T18:22:48.857Z\",\r\n \"serviceBusEndpoint\": \"https://kafka-perf-decrease.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-CentralUSEUAP/providers/Microsoft.EventHub/namespaces/hmlam-cdm03-502\",\r\n \"name\": \"hmlam-cdm03-502\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"Central US EUAP\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:hmlam-cdm03-502\",\r\n \"createdAt\": \"2021-07-07T01:31:09.74Z\",\r\n \"updatedAt\": \"2021-10-28T21:42:48.483Z\",\r\n \"serviceBusEndpoint\": \"https://hmlam-cdm03-502.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/PPGTest/providers/Microsoft.EventHub/namespaces/TestEHSys0705\",\r\n \"name\": \"TestEHSys0705\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"Central US EUAP\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:testehsys0705\",\r\n \"createdAt\": \"2021-07-07T20:50:02.06Z\",\r\n \"updatedAt\": \"2021-10-18T20:29:46.29Z\",\r\n \"serviceBusEndpoint\": \"https://TestEHSys0705.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/disablelocalauth/providers/Microsoft.EventHub/namespaces/ardsouza-disablelocalauth-canary-test1\",\r\n \"name\": \"ardsouza-disablelocalauth-canary-test1\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"EAST US 2 EUAP\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": true,\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-disablelocalauth-canary-test1\",\r\n \"createdAt\": \"2021-07-13T22:20:11.607Z\",\r\n \"updatedAt\": \"2021-07-13T22:21:11.107Z\",\r\n \"serviceBusEndpoint\": \"https://ardsouza-disablelocalauth-canary-test1.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/disablelocalauth/providers/Microsoft.EventHub/namespaces/ardsouza-disablelocalauth-canary-test2\",\r\n \"name\": \"ardsouza-disablelocalauth-canary-test2\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"EAST US 2 EUAP\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": true,\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-disablelocalauth-canary-test2\",\r\n \"createdAt\": \"2021-07-13T22:57:04.87Z\",\r\n \"updatedAt\": \"2021-07-13T23:54:08.33Z\",\r\n \"serviceBusEndpoint\": \"https://ardsouza-disablelocalauth-canary-test2.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/PPGTest/providers/Microsoft.EventHub/namespaces/TestSysTopicCan0716\",\r\n \"name\": \"TestSysTopicCan0716\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"EAST US 2 EUAP\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": true,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:testsystopiccan0716\",\r\n \"createdAt\": \"2021-07-16T21:48:26.007Z\",\r\n \"updatedAt\": \"2021-07-16T21:49:17.663Z\",\r\n \"serviceBusEndpoint\": \"https://TestSysTopicCan0716.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-westeurope-test/providers/Microsoft.EventHub/namespaces/ardsouza-07-2021-capture-adls2test\",\r\n \"name\": \"ardsouza-07-2021-capture-adls2test\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"Southeast Asia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": true,\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-07-2021-capture-adls2test\",\r\n \"createdAt\": \"2021-07-27T17:35:55.01Z\",\r\n \"updatedAt\": \"2021-07-27T17:36:46.08Z\",\r\n \"serviceBusEndpoint\": \"https://ardsouza-07-2021-capture-adls2test.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\": 2\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/sjrg/providers/Microsoft.EventHub/namespaces/sjpremiumyt\",\r\n \"name\": \"sjpremiumyt\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"Canada Central\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": true,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:sjpremiumyt\",\r\n \"createdAt\": \"2021-07-30T16:58:37.797Z\",\r\n \"updatedAt\": \"2021-09-08T18:47:53.797Z\",\r\n \"serviceBusEndpoint\": \"https://sjpremiumyt.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\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/sjrg/providers/Microsoft.EventHub/namespaces/sjpremiumsy1\",\r\n \"name\": \"sjpremiumsy1\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"Australia East\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": true,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:sjpremiumsy1\",\r\n \"createdAt\": \"2021-07-30T17:57:47.803Z\",\r\n \"updatedAt\": \"2021-07-30T17:59:25.597Z\",\r\n \"serviceBusEndpoint\": \"https://sjpremiumsy1.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-CentralUSEUAP/providers/Microsoft.EventHub/namespaces/drdrillPrimary08022021\",\r\n \"name\": \"drdrillPrimary08022021\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"Central US EUAP\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:drdrillprimary08022021\",\r\n \"createdAt\": \"2021-07-31T01:33:40.18Z\",\r\n \"updatedAt\": \"2021-08-30T23:20:31.35Z\",\r\n \"serviceBusEndpoint\": \"https://drdrillPrimary08022021.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/zztestrg/providers/Microsoft.EventHub/namespaces/zzns01-pltest\",\r\n \"name\": \"zzns01-pltest\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": true,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:zzns01-pltest\",\r\n \"createdAt\": \"2021-08-23T23:02:28.61Z\",\r\n \"updatedAt\": \"2021-08-23T23:03:15.843Z\",\r\n \"serviceBusEndpoint\": \"https://zzns01-pltest.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/EventHubsVNETTestingRG/providers/Microsoft.EventHub/namespaces/testMSI01060825\",\r\n \"name\": \"testMSI01060825\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West Central US\",\r\n \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/1196a38f-8e8a-4916-9056-787c19a53125/resourcegroups/ppgtest/providers/microsoft.managedidentity/userassignedidentities/testuai0618\": {\r\n \"clientId\": \"12e5b965-1d50-4d1b-b1df-a805dce0f0ec\",\r\n \"principalId\": \"aeb481c1-762b-474e-b6c6-86c67433a9ea\"\r\n }\r\n }\r\n },\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"encryption\": {\r\n \"keySource\": \"Microsoft.KeyVault\",\r\n \"keyVaultProperties\": [\r\n {\r\n \"keyName\": \"testkey0618\",\r\n \"keyVaultUri\": \"https://testkv0618.vault.azure.net\",\r\n \"keyVersion\": \"\",\r\n \"identity\": {\r\n \"userAssignedIdentity\": \"/subscriptions/1196a38f-8e8a-4916-9056-787c19a53125/resourcegroups/ppgtest/providers/microsoft.managedidentity/userassignedidentities/testuai0618\"\r\n }\r\n }\r\n ],\r\n \"requireInfrastructureEncryption\": false\r\n },\r\n \"clusterArmId\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/EventHubsVNETTestingRG/providers/Microsoft.EventHub/clusters/EventHubsVNetTesting\",\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:testmsi01060825\",\r\n \"createdAt\": \"2021-08-25T21:21:21.967Z\",\r\n \"updatedAt\": \"2021-08-25T21:26:16.927Z\",\r\n \"serviceBusEndpoint\": \"https://testMSI01060825.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-EASTUS2EUAP/providers/Microsoft.EventHub/namespaces/drdrillSecondary08022021\",\r\n \"name\": \"drdrillSecondary08022021\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"EAST US 2 EUAP\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": true,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:drdrillsecondary08022021\",\r\n \"createdAt\": \"2021-08-30T23:14:33.313Z\",\r\n \"updatedAt\": \"2021-08-30T23:17:43.6Z\",\r\n \"serviceBusEndpoint\": \"https://drdrillSecondary08022021.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/manojprasad-rampup/providers/Microsoft.EventHub/namespaces/manojprasad-eh-namespace\",\r\n \"name\": \"manojprasad-eh-namespace\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"clusterArmId\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/manojprasad-rampup/providers/Microsoft.EventHub/clusters/manojprasad-eh-cluster\",\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:manojprasad-eh-namespace\",\r\n \"createdAt\": \"2021-08-31T19:32:58.667Z\",\r\n \"updatedAt\": \"2021-08-31T19:33:47.073Z\",\r\n \"serviceBusEndpoint\": \"https://manojprasad-eh-namespace.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-WestUS2/providers/Microsoft.EventHub/namespaces/hmlam-canada-east-01\",\r\n \"name\": \"hmlam-canada-east-01\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"Canada East\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:hmlam-canada-east-01\",\r\n \"createdAt\": \"2021-09-02T17:13:09.64Z\",\r\n \"updatedAt\": \"2021-09-02T17:15:57.537Z\",\r\n \"serviceBusEndpoint\": \"https://hmlam-canada-east-01.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-cbn04-503-533-rg/providers/Microsoft.EventHub/namespaces/TestNSforVMSSMigration\",\r\n \"name\": \"TestNSforVMSSMigration\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"EAST US 2 EUAP\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"clusterArmId\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/prod-cbn04-503-533-rg/providers/Microsoft.EventHub/clusters/CBN04-503\",\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:testnsforvmssmigration\",\r\n \"createdAt\": \"2021-09-14T01:57:25.823Z\",\r\n \"updatedAt\": \"2021-09-14T17:43:00.203Z\",\r\n \"serviceBusEndpoint\": \"https://TestNSforVMSSMigration.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-EASTUS2EUAP/providers/Microsoft.EventHub/namespaces/taab-testns\",\r\n \"name\": \"taab-testns\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"EAST US 2 EUAP\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:taab-testns\",\r\n \"createdAt\": \"2021-09-16T20:21:03.61Z\",\r\n \"updatedAt\": \"2021-09-16T20:21:56.373Z\",\r\n \"serviceBusEndpoint\": \"https://taab-testns.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-EASTUS2EUAP/providers/Microsoft.EventHub/namespaces/yamlin-testNS-VMSS\",\r\n \"name\": \"yamlin-testNS-VMSS\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"EAST US 2 EUAP\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\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:yamlin-testns-vmss\",\r\n \"createdAt\": \"2021-09-17T17:18:09.21Z\",\r\n \"updatedAt\": \"2021-09-17T17:18:56.28Z\",\r\n \"serviceBusEndpoint\": \"https://yamlin-testNS-VMSS.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/EventHubsVNETTestingRG/providers/Microsoft.EventHub/namespaces/TestEHDedMSI0922\",\r\n \"name\": \"TestEHDedMSI0922\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West Central US\",\r\n \"tags\": {},\r\n \"identity\": {\r\n \"principalId\": \"f8a107e9-9278-45b0-ac39-9c88fe17ea5a\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"encryption\": {\r\n \"keySource\": \"Microsoft.KeyVault\",\r\n \"keyVaultProperties\": [\r\n {\r\n \"keyName\": \"TestKEyNew0409\",\r\n \"keyVaultUri\": \"https://testkv0409.vault.azure.net\",\r\n \"keyVersion\": \"\"\r\n }\r\n ],\r\n \"requireInfrastructureEncryption\": false\r\n },\r\n \"clusterArmId\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/EventHubsVNETTestingRG/providers/Microsoft.EventHub/clusters/EventHubsVNetTesting\",\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:testehdedmsi0922\",\r\n \"createdAt\": \"2021-09-22T23:35:52.497Z\",\r\n \"updatedAt\": \"2021-11-07T23:39:15.24Z\",\r\n \"serviceBusEndpoint\": \"https://TestEHDedMSI0922.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/v-ajnavtest/providers/Microsoft.EventHub/namespaces/sdk-NS-7728\",\r\n \"name\": \"sdk-NS-7728\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"identity\": {\r\n \"principalId\": \"96967467-e23f-442e-a4a0-dccea7044fd7\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"clusterArmId\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/v-ajnavtest/providers/Microsoft.EventHub/clusters/PMTestCluster1\",\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:sdk-ns-7728\",\r\n \"createdAt\": \"2021-09-27T00:21:53.463Z\",\r\n \"updatedAt\": \"2021-11-12T00:16:10.567Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-7728.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.EventHub/namespaces?api-version=2021-11-01&$skipToken=2021-09-27T00:21:53.463Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-1053/providers/Microsoft.EventHub/namespaces/sdk-NS-9986?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMTA1My9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTk5ODY/YXBpLXZlcnNpb249MjAyMS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-6270/providers/Microsoft.EventHub/namespaces/sdk-NS-1070?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNjI3MC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTEwNzA/YXBpLXZlcnNpb249MjAyMS0xMS0wMQ==", "RequestMethod": "PATCH", "RequestBody": "{\r\n \"tags\": {\r\n \"tag3\": \"value3\",\r\n \"tag4\": \"value4\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "90d82b4f-7e9d-40d8-b8ad-f63c8862508e" + "e1b26d41-8790-400e-8a81-70df8af34e8f" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -768,27 +768,30 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:17:06 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "72f0c8a2-1ed9-40a3-89cd-a98c746c4e2c_M11CH3_M11CH3" + "5026a002-38de-4c53-8701-441d91aacc88_M6SN1_M6SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" - ], - "Server": [ - "Service-Bus-Resource-Provider/CH3", - "Microsoft-HTTPAPI/2.0" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "48" ], "x-ms-correlation-request-id": [ - "39d0192b-ad62-4744-a276-d83506460c48" + "251cd348-c828-4dda-93ea-fcad0afd2c2f" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210924T040837Z:39d0192b-ad62-4744-a276-d83506460c48" + "SOUTHINDIA:20211115T021707Z:251cd348-c828-4dda-93ea-fcad0afd2c2f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -796,11 +799,8 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:08:36 GMT" - ], "Content-Length": [ - "729" + "726" ], "Content-Type": [ "application/json; charset=utf-8" @@ -809,56 +809,59 @@ "-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-1053/providers/Microsoft.EventHub/namespaces/sdk-NS-9986\",\r\n \"name\": \"sdk-NS-9986\",\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 \"disableLocalAuth\": false,\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-9986\",\r\n \"createdAt\": \"2021-09-24T04:07:28.347Z\",\r\n \"updatedAt\": \"2021-09-24T04:08:36.32Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-9986.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-6270/providers/Microsoft.EventHub/namespaces/sdk-NS-1070\",\r\n \"name\": \"sdk-NS-1070\",\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 \"disableLocalAuth\": false,\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-1070\",\r\n \"createdAt\": \"2021-11-15T02:15:52.097Z\",\r\n \"updatedAt\": \"2021-11-15T02:17:05Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-1070.servicebus.windows.net:443/\",\r\n \"status\": \"Activating\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-1053/providers/Microsoft.EventHub/namespaces/sdk-NS-9986?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMTA1My9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTk5ODY/YXBpLXZlcnNpb249MjAyMS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-6270/providers/Microsoft.EventHub/namespaces/sdk-NS-1070?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNjI3MC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTEwNzA/YXBpLXZlcnNpb249MjAyMS0xMS0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9e2ad012-8a18-4894-816e-a4f79e0a9342" + "6fd3e7dd-7186-4757-abed-1a8d39e93ef0" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:17:19 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-1053/providers/Microsoft.EventHub/namespaces/sdk-NS-9986/operationresults/sdk-NS-9986?api-version=2021-06-01-preview" + "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-6270/providers/Microsoft.EventHub/namespaces/sdk-NS-1070/operationresults/sdk-NS-1070?api-version=2021-11-01" + ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "6dc66bab-e0d1-4870-86f8-46b43c994951_M10CH3_M10CH3" + "2e104fc5-e51b-4d37-b05b-ad8b8ab63347_M6SN1_M6SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" - ], - "Server": [ - "Service-Bus-Resource-Provider/CH3", - "Microsoft-HTTPAPI/2.0" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14999" ], "x-ms-correlation-request-id": [ - "d1f73dbd-fbd8-42a3-9cf4-f134f2360f1a" + "88420a0c-0c18-4700-8d99-1c89b2be286d" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210924T040849Z:d1f73dbd-fbd8-42a3-9cf4-f134f2360f1a" + "SOUTHINDIA:20211115T021719Z:88420a0c-0c18-4700-8d99-1c89b2be286d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -866,57 +869,57 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:08:48 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-1053/providers/Microsoft.EventHub/namespaces/sdk-NS-9986/operationresults/sdk-NS-9986?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMTA1My9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTk5ODYvb3BlcmF0aW9ucmVzdWx0cy9zZGstTlMtOTk4Nj9hcGktdmVyc2lvbj0yMDIxLTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-6270/providers/Microsoft.EventHub/namespaces/sdk-NS-1070/operationresults/sdk-NS-1070?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNjI3MC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTEwNzAvb3BlcmF0aW9ucmVzdWx0cy9zZGstTlMtMTA3MD9hcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:17:50 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "b2cf5d3f-cd3b-4e87-87d3-8c15626e6cf4_M8CH3_M8CH3" + "c1492bb5-b983-4e79-9874-1e8c4e554d15_M6SN1_M6SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" - ], - "Server": [ - "Service-Bus-Resource-Provider/CH3", - "Microsoft-HTTPAPI/2.0" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11992" ], "x-ms-correlation-request-id": [ - "746620ed-fb4c-444c-8880-4b470797d6b3" + "c6daee99-8ae3-4944-b7e8-0cbe76b28e16" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210924T040919Z:746620ed-fb4c-444c-8880-4b470797d6b3" + "SOUTHINDIA:20211115T021750Z:c6daee99-8ae3-4944-b7e8-0cbe76b28e16" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -924,57 +927,57 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:09:18 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-1053/providers/Microsoft.EventHub/namespaces/sdk-NS-9986/operationresults/sdk-NS-9986?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMTA1My9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTk5ODYvb3BlcmF0aW9ucmVzdWx0cy9zZGstTlMtOTk4Nj9hcGktdmVyc2lvbj0yMDIxLTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-6270/providers/Microsoft.EventHub/namespaces/sdk-NS-1070/operationresults/sdk-NS-1070?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNjI3MC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTEwNzAvb3BlcmF0aW9ucmVzdWx0cy9zZGstTlMtMTA3MD9hcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:17:50 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "89f28c48-5dba-4536-89df-82f5a77bda55_M0CH3_M0CH3" + "f3b38a4d-8602-4fda-a905-3c668a296ea7_M6SN1_M6SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" - ], - "Server": [ - "Service-Bus-Resource-Provider/CH3", - "Microsoft-HTTPAPI/2.0" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11991" ], "x-ms-correlation-request-id": [ - "dc2753a2-67cb-4bde-ab62-a3952ad515ce" + "04659b80-226f-4e18-9ec6-6d4233d86ee9" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210924T040919Z:dc2753a2-67cb-4bde-ab62-a3952ad515ce" + "SOUTHINDIA:20211115T021750Z:04659b80-226f-4e18-9ec6-6d4233d86ee9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -982,35 +985,32 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:09:18 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/Default-EventHub-1053?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlZ3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMTA1Mz9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/Default-EventHub-6270?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlZ3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNjI3MD9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "51b5c744-3574-45d1-9617-15bf6e13dc7f" + "475f715b-b615-40c2-886f-842d67ce41e7" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", + "OSVersion/Microsoft.Windows.10.0.22000.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -1018,11 +1018,14 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:17:56 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1ERUZBVUxUOjJERVZFTlRIVUI6MkQxMDUzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2015-11-01" + "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1ERUZBVUxUOjJERVZFTlRIVUI6MkQ2MjcwLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2015-11-01" ], "Retry-After": [ "15" @@ -1031,13 +1034,13 @@ "14999" ], "x-ms-request-id": [ - "1c326e66-10ee-4fdd-a4f2-6689994679df" + "ff7d7b30-4226-4072-a7c1-0c3d54658956" ], "x-ms-correlation-request-id": [ - "1c326e66-10ee-4fdd-a4f2-6689994679df" + "ff7d7b30-4226-4072-a7c1-0c3d54658956" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210924T040921Z:1c326e66-10ee-4fdd-a4f2-6689994679df" + "SOUTHINDIA:20211115T021756Z:ff7d7b30-4226-4072-a7c1-0c3d54658956" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1045,14 +1048,11 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:09:20 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", @@ -1061,8 +1061,8 @@ ], "Names": { "NamespaceKafkaCreateGetUpdateDelete": [ - "Default-EventHub-1053", - "sdk-NS-9986" + "Default-EventHub-6270", + "sdk-NS-1070" ] }, "Variables": { diff --git a/sdk/eventhub/Microsoft.Azure.Management.EventHub/tests/SessionRecords/ScenarioTests/NamespacePremiumGetUpdateDelete.json b/sdk/eventhub/Microsoft.Azure.Management.EventHub/tests/SessionRecords/ScenarioTests/NamespacePremiumGetUpdateDelete.json index 5a25cf75fe3b..7f0f3f8167e3 100644 --- a/sdk/eventhub/Microsoft.Azure.Management.EventHub/tests/SessionRecords/ScenarioTests/NamespacePremiumGetUpdateDelete.json +++ b/sdk/eventhub/Microsoft.Azure.Management.EventHub/tests/SessionRecords/ScenarioTests/NamespacePremiumGetUpdateDelete.json @@ -1,21 +1,84 @@ { "Entries": [ { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/Default-EventHub-3335?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlZ3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMzMzNT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/Default-EventHub-2742?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlZ3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMjc0Mj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "29313a25-4792-4801-b4c8-efc19fbf0432" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 15 Nov 2021 02:40:18 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1ERUZBVUxUOjJERVZFTlRIVUI6MkQyNzQyLUFVU1RSQUxJQUVBU1QiLCJqb2JMb2NhdGlvbiI6ImF1c3RyYWxpYWVhc3QifQ?api-version=2015-11-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-request-id": [ + "5e19c395-b44c-4f02-b525-b0455425a451" + ], + "x-ms-correlation-request-id": [ + "5e19c395-b44c-4f02-b525-b0455425a451" + ], + "x-ms-routing-request-id": [ + "SOUTHINDIA:20211115T024018Z:5e19c395-b44c-4f02-b525-b0455425a451" + ], + "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-602?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlZ3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNjAyP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US 2\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "08ddcce2-f769-43e0-8c8c-3144975487ec" + "197f3bcd-3067-4b2d-94f3-17f7cdde210b" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", + "OSVersion/Microsoft.Windows.10.0.22000.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ], "Content-Type": [ @@ -29,6 +92,9 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:40:22 GMT" + ], "Pragma": [ "no-cache" ], @@ -36,13 +102,13 @@ "1199" ], "x-ms-request-id": [ - "a36b36ef-6bb4-4576-b1ff-d3b5e416274f" + "79c9ce0b-9869-46da-8a10-2b44073d56a7" ], "x-ms-correlation-request-id": [ - "a36b36ef-6bb4-4576-b1ff-d3b5e416274f" + "79c9ce0b-9869-46da-8a10-2b44073d56a7" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210924T042633Z:a36b36ef-6bb4-4576-b1ff-d3b5e416274f" + "SOUTHINDIA:20211115T024022Z:79c9ce0b-9869-46da-8a10-2b44073d56a7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -50,11 +116,8 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:26:33 GMT" - ], "Content-Length": [ - "196" + "194" ], "Content-Type": [ "application/json; charset=utf-8" @@ -63,53 +126,56 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3335\",\r\n \"name\": \"Default-EventHub-3335\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-602\",\r\n \"name\": \"Default-EventHub-602\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/providers/Microsoft.EventHub/operations?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIxLTA2LTAxLXByZXZpZXc=", + "RequestUri": "/providers/Microsoft.EventHub/operations?api-version=2021-11-01", + "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "56a716b3-a93e-4037-b4d4-545efe5ae2c6" + "a00db9b1-908f-4615-b0e5-ae64629deafc" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:40:22 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "e9fdda87-fdf5-4a13-8f13-fd923340e686_M6SN1_M6SN1" + "f4dfa029-d7ae-4b86-8cff-7a4e54fee3eb_M6SN1_M6SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-tenant-reads": [ - "11998" + "11999" ], "x-ms-correlation-request-id": [ - "9c638b73-dcb2-4eff-908e-a426d596148b" + "878d0f8c-0655-482f-b5f5-a9dd4e2d0fe8" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210924T042634Z:9c638b73-dcb2-4eff-908e-a426d596148b" + "SOUTHINDIA:20211115T024022Z:878d0f8c-0655-482f-b5f5-a9dd4e2d0fe8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -117,11 +183,8 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:26:33 GMT" - ], "Content-Length": [ - "48635" + "48935" ], "Content-Type": [ "application/json; charset=utf-8" @@ -130,26 +193,26 @@ "-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 \"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/schemagroups/write\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"SchemaGroup\",\r\n \"operation\": \"Create or Update SchemaGroup\",\r\n \"description\": \"Create or Update SchemaGroup properties.\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/schemagroups/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"SchemaGroup\",\r\n \"operation\": \"Get SchemaGroup\",\r\n \"description\": \"Get list of SchemaGroup Resource Descriptions\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/schemagroups/delete\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"SchemaGroup\",\r\n \"operation\": \"Delete SchemaGroup\",\r\n \"description\": \"Operation to delete SchemaGroup Resource\"\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 \"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 \"fillGapWithZero\": false\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 \"Minimum\",\r\n \"Maximum\"\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 \"name\": \"NamespaceCpuUsage\",\r\n \"displayName\": \"CPU\",\r\n \"displayDescription\": \"CPU usage metric for Premium SKU namespaces.\",\r\n \"unit\": \"Percent\",\r\n \"aggregationType\": \"Maximum\",\r\n \"internalMetricName\": \"NamespaceCpuUsage\",\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\": \"Replica\",\r\n \"isHidden\": true,\r\n \"defaultDimensionValues\": [\r\n {\r\n \"value\": \"Primary\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"supportedAggregationTypes\": [\r\n \"Maximum\",\r\n \"Minimum\",\r\n \"Average\"\r\n ],\r\n \"metricFilterPattern\": \"(?i)^premium$\",\r\n \"fillGapWithZero\": false\r\n },\r\n {\r\n \"name\": \"NamespaceMemoryUsage\",\r\n \"displayName\": \"Memory Usage\",\r\n \"displayDescription\": \"Memory usage metric for Premium SKU namespaces.\",\r\n \"unit\": \"Percent\",\r\n \"aggregationType\": \"Maximum\",\r\n \"internalMetricName\": \"NamespaceWorkingSet64\",\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\": \"Replica\",\r\n \"isHidden\": true,\r\n \"defaultDimensionValues\": [\r\n {\r\n \"value\": \"Primary\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"supportedAggregationTypes\": [\r\n \"Maximum\",\r\n \"Minimum\",\r\n \"Average\"\r\n ],\r\n \"metricFilterPattern\": \"(?i)^premium$\",\r\n \"fillGapWithZero\": false\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 \"lockAggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"fillGapWithZero\": false\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\",\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 \"Minimum\",\r\n \"Maximum\"\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/schemas/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"Schemas\",\r\n \"operation\": \"Retrieve schemas\",\r\n \"description\": \"Retrieve schemas\"\r\n },\r\n \"isDataAction\": true\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/schemas/write\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"Schemas\",\r\n \"operation\": \"Write schemas\",\r\n \"description\": \"Write schemas\"\r\n },\r\n \"isDataAction\": true\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/schemas/delete\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"Schemas\",\r\n \"operation\": \"Delete schemas\",\r\n \"description\": \"Delete schemas\"\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 \"name\": \"Microsoft.EventHub/namespaces/privateEndpointConnectionProxies/operationstatus/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"Non Resource Operation\",\r\n \"operation\": \"Private endpoint operation status\",\r\n \"description\": \"Get the status of an asynchronous private endpoint operation\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/privateEndpointConnections/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"Private Endpoint Connection\",\r\n \"operation\": \"Get Private Endpoint Connection\",\r\n \"description\": \"Get Private Endpoint Connection\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/privateEndpointConnections/write\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"Private Endpoint Connection\",\r\n \"operation\": \"Create or Update Private Endpoint Connection\",\r\n \"description\": \"Create or Update Private Endpoint Connection\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/privateEndpointConnections/delete\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"Private Endpoint Connection\",\r\n \"operation\": \"Removes Private Endpoint Connection\",\r\n \"description\": \"Removes Private Endpoint Connection\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/privateLinkResources/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"PrivateLinks\",\r\n \"operation\": \"Gets the resource types that support private endpoint connections\",\r\n \"description\": \"Gets the resource types that support private endpoint connections\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/privateEndpointConnections/operationstatus/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"Non Resource Operation\",\r\n \"operation\": \"Private endpoint operation status\",\r\n \"description\": \"Get the status of an asynchronous private endpoint operation\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/privateEndpointConnectionsApproval/action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"Private Endpoint Connection\",\r\n \"operation\": \"Approve Private Endpoint Connection\",\r\n \"description\": \"Approve Private Endpoint Connection\"\r\n },\r\n \"isDataAction\": false\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/schemagroups/write\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"SchemaGroup\",\r\n \"operation\": \"Create or Update SchemaGroup\",\r\n \"description\": \"Create or Update SchemaGroup properties.\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/schemagroups/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"SchemaGroup\",\r\n \"operation\": \"Get SchemaGroup\",\r\n \"description\": \"Get list of SchemaGroup Resource Descriptions\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/schemagroups/delete\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"SchemaGroup\",\r\n \"operation\": \"Delete SchemaGroup\",\r\n \"description\": \"Operation to delete SchemaGroup Resource\"\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\": \"Maximum\",\r\n \"internalMetricName\": \"NamespaceActiveConnections\",\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 \"supportedAggregationTypes\": [\r\n \"Maximum\",\r\n \"Minimum\",\r\n \"Average\"\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\": \"Maximum\",\r\n \"internalMetricName\": \"ConnectionOpen\",\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 \"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\": \"Maximum\",\r\n \"internalMetricName\": \"ConnectionClose\",\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 \"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 \"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 \"fillGapWithZero\": false\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 \"Minimum\",\r\n \"Maximum\"\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 \"name\": \"NamespaceCpuUsage\",\r\n \"displayName\": \"CPU\",\r\n \"displayDescription\": \"CPU usage metric for Premium SKU namespaces.\",\r\n \"unit\": \"Percent\",\r\n \"aggregationType\": \"Maximum\",\r\n \"internalMetricName\": \"NamespaceCpuUsage\",\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\": \"Replica\",\r\n \"isHidden\": true,\r\n \"defaultDimensionValues\": [\r\n {\r\n \"value\": \"Primary\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"supportedAggregationTypes\": [\r\n \"Maximum\",\r\n \"Minimum\",\r\n \"Average\"\r\n ],\r\n \"metricFilterPattern\": \"(?i)^premium$\",\r\n \"fillGapWithZero\": false\r\n },\r\n {\r\n \"name\": \"NamespaceMemoryUsage\",\r\n \"displayName\": \"Memory Usage\",\r\n \"displayDescription\": \"Memory usage metric for Premium SKU namespaces.\",\r\n \"unit\": \"Percent\",\r\n \"aggregationType\": \"Maximum\",\r\n \"internalMetricName\": \"NamespaceWorkingSet64\",\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\": \"Replica\",\r\n \"isHidden\": true,\r\n \"defaultDimensionValues\": [\r\n {\r\n \"value\": \"Primary\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"supportedAggregationTypes\": [\r\n \"Maximum\",\r\n \"Minimum\",\r\n \"Average\"\r\n ],\r\n \"metricFilterPattern\": \"(?i)^premium$\",\r\n \"fillGapWithZero\": false\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\": \"Maximum\",\r\n \"internalMetricName\": \"NamespaceActiveConnections\",\r\n \"isDimensionRequired\": false,\r\n \"resourceIdDimensionNameOverride\": \"ScaleUnit\",\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 \"supportedAggregationTypes\": [\r\n \"Maximum\",\r\n \"Minimum\",\r\n \"Average\"\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\": \"Maximum\",\r\n \"internalMetricName\": \"ConnectionOpen\",\r\n \"isDimensionRequired\": false,\r\n \"resourceIdDimensionNameOverride\": \"ScaleUnit\",\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 \"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\": \"Maximum\",\r\n \"internalMetricName\": \"ConnectionClose\",\r\n \"isDimensionRequired\": false,\r\n \"resourceIdDimensionNameOverride\": \"ScaleUnit\",\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 \"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 \"lockAggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"fillGapWithZero\": false\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\",\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 \"Minimum\",\r\n \"Maximum\"\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/schemas/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"Schemas\",\r\n \"operation\": \"Retrieve schemas\",\r\n \"description\": \"Retrieve schemas\"\r\n },\r\n \"isDataAction\": true\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/schemas/write\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"Schemas\",\r\n \"operation\": \"Write schemas\",\r\n \"description\": \"Write schemas\"\r\n },\r\n \"isDataAction\": true\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/schemas/delete\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"Schemas\",\r\n \"operation\": \"Delete schemas\",\r\n \"description\": \"Delete schemas\"\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 \"name\": \"Microsoft.EventHub/namespaces/privateEndpointConnectionProxies/operationstatus/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"Non Resource Operation\",\r\n \"operation\": \"Private endpoint operation status\",\r\n \"description\": \"Get the status of an asynchronous private endpoint operation\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/privateEndpointConnections/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"Private Endpoint Connection\",\r\n \"operation\": \"Get Private Endpoint Connection\",\r\n \"description\": \"Get Private Endpoint Connection\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/privateEndpointConnections/write\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"Private Endpoint Connection\",\r\n \"operation\": \"Create or Update Private Endpoint Connection\",\r\n \"description\": \"Create or Update Private Endpoint Connection\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/privateEndpointConnections/delete\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"Private Endpoint Connection\",\r\n \"operation\": \"Removes Private Endpoint Connection\",\r\n \"description\": \"Removes Private Endpoint Connection\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/privateLinkResources/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"PrivateLinks\",\r\n \"operation\": \"Gets the resource types that support private endpoint connections\",\r\n \"description\": \"Gets the resource types that support private endpoint connections\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/privateEndpointConnections/operationstatus/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"Non Resource Operation\",\r\n \"operation\": \"Private endpoint operation status\",\r\n \"description\": \"Get the status of an asynchronous private endpoint operation\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/privateEndpointConnectionsApproval/action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"Private Endpoint Connection\",\r\n \"operation\": \"Approve Private Endpoint Connection\",\r\n \"description\": \"Approve Private Endpoint Connection\"\r\n },\r\n \"isDataAction\": false\r\n }\r\n ],\r\n \"nextLink\": \"\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.EventHub/checkNameAvailability?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvY2hlY2tOYW1lQXZhaWxhYmlsaXR5P2FwaS12ZXJzaW9uPTIwMjEtMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.EventHub/checkNameAvailability?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvY2hlY2tOYW1lQXZhaWxhYmlsaXR5P2FwaS12ZXJzaW9uPTIwMjEtMTEtMDE=", "RequestMethod": "POST", - "RequestBody": "{\r\n \"name\": \"sdk-NS-6015\"\r\n}", + "RequestBody": "{\r\n \"name\": \"sdk-NS-9028\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "fe8d6fb8-5e37-4d4a-94b7-1661b6895f9d" + "4b13c9ef-ac3f-4103-a895-fc643bd2c2c3" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -162,27 +225,30 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:40:22 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "891baa84-5572-4579-b287-a7c7bf8ed698_M3SN1_M3SN1" + "53204a3f-ee6b-4b9e-b14d-0504262a1a3d_M6SN1_M6SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1199" ], "x-ms-correlation-request-id": [ - "26de83cf-ee1e-4ea4-a74d-4045b718d84e" + "7fe38142-0aef-4598-aa03-1ecab45899a4" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210924T042634Z:26de83cf-ee1e-4ea4-a74d-4045b718d84e" + "SOUTHINDIA:20211115T024023Z:7fe38142-0aef-4598-aa03-1ecab45899a4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -190,9 +256,6 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:26:33 GMT" - ], "Content-Length": [ "53" ], @@ -207,22 +270,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3335/providers/Microsoft.EventHub/namespaces/sdk-NS-6015?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMzMzNS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTYwMTU/YXBpLXZlcnNpb249MjAyMS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-602/providers/Microsoft.EventHub/namespaces/sdk-NS-9028?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNjAyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTlMtOTAyOD9hcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"tier\": \"Premium\"\r\n },\r\n \"location\": \"West US 2\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "8a4472db-2128-4893-ac32-dfa2606ab18d" + "3129b4cb-b12a-4ac9-907f-f062eb200728" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -235,27 +298,30 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:40:31 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "eaefe98c-4dda-427c-b334-d0eb9d9fce72_M8SN1_M8SN1" + "1c84780c-38bc-4116-8034-74c863695cc5_M6SN1_M6SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "49" ], "x-ms-correlation-request-id": [ - "c572b2f8-4a32-41be-b47f-833dc2b7a2fd" + "9328d8ed-e982-43b8-9579-0b2adb92501f" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210924T042636Z:c572b2f8-4a32-41be-b47f-833dc2b7a2fd" + "SOUTHINDIA:20211115T024031Z:9328d8ed-e982-43b8-9579-0b2adb92501f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -263,11 +329,8 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:26:36 GMT" - ], "Content-Length": [ - "726" + "725" ], "Content-Type": [ "application/json; charset=utf-8" @@ -276,47 +339,50 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"tier\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3335/providers/Microsoft.EventHub/namespaces/sdk-NS-6015\",\r\n \"name\": \"sdk-NS-6015\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": true,\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-6015\",\r\n \"createdAt\": \"2021-09-24T04:26:35.97Z\",\r\n \"updatedAt\": \"2021-09-24T04:26:35.97Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-6015.servicebus.windows.net:443/\",\r\n \"status\": \"Activating\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"tier\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-602/providers/Microsoft.EventHub/namespaces/sdk-NS-9028\",\r\n \"name\": \"sdk-NS-9028\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": true,\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-9028\",\r\n \"createdAt\": \"2021-11-15T02:40:29.66Z\",\r\n \"updatedAt\": \"2021-11-15T02:40:29.66Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-9028.servicebus.windows.net:443/\",\r\n \"status\": \"Activating\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3335/providers/Microsoft.EventHub/namespaces/sdk-NS-6015?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMzMzNS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTYwMTU/YXBpLXZlcnNpb249MjAyMS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-602/providers/Microsoft.EventHub/namespaces/sdk-NS-9028?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNjAyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTlMtOTAyOD9hcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:41:01 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "9b5a5493-7fd8-42da-8093-b1cfc7bb58af_M4SN1_M4SN1" + "4a3ae971-e6af-45d4-91ff-f5bde6e05d40_M6SN1_M6SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11999" ], "x-ms-correlation-request-id": [ - "a06d463c-56b5-4a1d-b14c-b0cf2d12ba09" + "7819e0d2-8166-47c9-a316-edde67268870" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210924T042707Z:a06d463c-56b5-4a1d-b14c-b0cf2d12ba09" + "SOUTHINDIA:20211115T024102Z:7819e0d2-8166-47c9-a316-edde67268870" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -324,11 +390,8 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:27:06 GMT" - ], "Content-Length": [ - "726" + "725" ], "Content-Type": [ "application/json; charset=utf-8" @@ -337,47 +400,50 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"tier\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3335/providers/Microsoft.EventHub/namespaces/sdk-NS-6015\",\r\n \"name\": \"sdk-NS-6015\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": true,\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-6015\",\r\n \"createdAt\": \"2021-09-24T04:26:35.97Z\",\r\n \"updatedAt\": \"2021-09-24T04:26:35.97Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-6015.servicebus.windows.net:443/\",\r\n \"status\": \"Activating\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"tier\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-602/providers/Microsoft.EventHub/namespaces/sdk-NS-9028\",\r\n \"name\": \"sdk-NS-9028\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": true,\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-9028\",\r\n \"createdAt\": \"2021-11-15T02:40:29.66Z\",\r\n \"updatedAt\": \"2021-11-15T02:40:29.66Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-9028.servicebus.windows.net:443/\",\r\n \"status\": \"Activating\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3335/providers/Microsoft.EventHub/namespaces/sdk-NS-6015?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMzMzNS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTYwMTU/YXBpLXZlcnNpb249MjAyMS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-602/providers/Microsoft.EventHub/namespaces/sdk-NS-9028?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNjAyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTlMtOTAyOD9hcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:41:32 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "1534808f-7a4e-4dd2-b64a-76d9c50b7872_M8SN1_M8SN1" + "454e7d94-71f5-4168-b4a9-a052975f54e2_M6SN1_M6SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11998" ], "x-ms-correlation-request-id": [ - "c99f7d16-30a5-4491-b604-cd898baf921a" + "c4429934-8047-4abc-83d1-5fb548406f0e" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210924T042737Z:c99f7d16-30a5-4491-b604-cd898baf921a" + "SOUTHINDIA:20211115T024132Z:c4429934-8047-4abc-83d1-5fb548406f0e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -385,11 +451,8 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:27:37 GMT" - ], "Content-Length": [ - "726" + "725" ], "Content-Type": [ "application/json; charset=utf-8" @@ -398,47 +461,50 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"tier\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3335/providers/Microsoft.EventHub/namespaces/sdk-NS-6015\",\r\n \"name\": \"sdk-NS-6015\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": true,\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-6015\",\r\n \"createdAt\": \"2021-09-24T04:26:35.97Z\",\r\n \"updatedAt\": \"2021-09-24T04:26:35.97Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-6015.servicebus.windows.net:443/\",\r\n \"status\": \"Activating\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"tier\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-602/providers/Microsoft.EventHub/namespaces/sdk-NS-9028\",\r\n \"name\": \"sdk-NS-9028\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": true,\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-9028\",\r\n \"createdAt\": \"2021-11-15T02:40:29.66Z\",\r\n \"updatedAt\": \"2021-11-15T02:40:29.66Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-9028.servicebus.windows.net:443/\",\r\n \"status\": \"Activating\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3335/providers/Microsoft.EventHub/namespaces/sdk-NS-6015?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMzMzNS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTYwMTU/YXBpLXZlcnNpb249MjAyMS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-602/providers/Microsoft.EventHub/namespaces/sdk-NS-9028?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNjAyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTlMtOTAyOD9hcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:42:02 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "eb339c65-65af-4b70-a88b-3ef3c6e837db_M11SN1_M11SN1" + "7ed24949-ed04-4c23-a702-3e5ed4882ff0_M6SN1_M6SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11997" ], "x-ms-correlation-request-id": [ - "632a6938-d7f9-4d1c-9dd6-ae2f0802092d" + "c2289e71-857a-4b74-a11c-88c1249f8d44" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210924T042807Z:632a6938-d7f9-4d1c-9dd6-ae2f0802092d" + "SOUTHINDIA:20211115T024202Z:c2289e71-857a-4b74-a11c-88c1249f8d44" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -446,11 +512,8 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:28:07 GMT" - ], "Content-Length": [ - "726" + "725" ], "Content-Type": [ "application/json; charset=utf-8" @@ -459,47 +522,50 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"tier\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3335/providers/Microsoft.EventHub/namespaces/sdk-NS-6015\",\r\n \"name\": \"sdk-NS-6015\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": true,\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-6015\",\r\n \"createdAt\": \"2021-09-24T04:26:35.97Z\",\r\n \"updatedAt\": \"2021-09-24T04:26:35.97Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-6015.servicebus.windows.net:443/\",\r\n \"status\": \"Activating\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"tier\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-602/providers/Microsoft.EventHub/namespaces/sdk-NS-9028\",\r\n \"name\": \"sdk-NS-9028\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": true,\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-9028\",\r\n \"createdAt\": \"2021-11-15T02:40:29.66Z\",\r\n \"updatedAt\": \"2021-11-15T02:40:29.66Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-9028.servicebus.windows.net:443/\",\r\n \"status\": \"Activating\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3335/providers/Microsoft.EventHub/namespaces/sdk-NS-6015?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMzMzNS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTYwMTU/YXBpLXZlcnNpb249MjAyMS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-602/providers/Microsoft.EventHub/namespaces/sdk-NS-9028?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNjAyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTlMtOTAyOD9hcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:42:32 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "b5eb772b-2889-4a2e-bfff-4b3c5af2b8e3_M7SN1_M7SN1" + "a4b190e6-b1b3-4783-b143-1807ade512f2_M3CH3_M3CH3" ], "Server-SB": [ - "Service-Bus-Resource-Provider/SN1" - ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" + "Service-Bus-Resource-Provider/CH3" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11996" ], "x-ms-correlation-request-id": [ - "76ff761d-4c00-451e-ac94-b2c662dadaa6" + "0f930e1c-106a-4de4-aab2-3f2fb9620977" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210924T042837Z:76ff761d-4c00-451e-ac94-b2c662dadaa6" + "SOUTHINDIA:20211115T024233Z:0f930e1c-106a-4de4-aab2-3f2fb9620977" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -507,11 +573,8 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:28:37 GMT" - ], "Content-Length": [ - "726" + "723" ], "Content-Type": [ "application/json; charset=utf-8" @@ -520,47 +583,62 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"tier\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3335/providers/Microsoft.EventHub/namespaces/sdk-NS-6015\",\r\n \"name\": \"sdk-NS-6015\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": true,\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-6015\",\r\n \"createdAt\": \"2021-09-24T04:26:35.97Z\",\r\n \"updatedAt\": \"2021-09-24T04:26:35.97Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-6015.servicebus.windows.net:443/\",\r\n \"status\": \"Activating\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"tier\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-602/providers/Microsoft.EventHub/namespaces/sdk-NS-9028\",\r\n \"name\": \"sdk-NS-9028\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": true,\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-9028\",\r\n \"createdAt\": \"2021-11-15T02:40:29.66Z\",\r\n \"updatedAt\": \"2021-11-15T02:42:18.21Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-9028.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3335/providers/Microsoft.EventHub/namespaces/sdk-NS-6015?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMzMzNS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTYwMTU/YXBpLXZlcnNpb249MjAyMS0wNi0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-602/providers/Microsoft.EventHub/namespaces/sdk-NS-2000?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNjAyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTlMtMjAwMD9hcGktdmVyc2lvbj0yMDIxLTExLTAx", + "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\": 40\r\n },\r\n \"location\": \"West US 2\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n }\r\n}", "RequestHeaders": { + "x-ms-client-request-id": [ + "a967caae-e81e-412c-8096-c14535e7d5c4" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "256" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:42:48 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "fb463497-4a8c-4cc9-b60f-f177903cba43_M6SN1_M6SN1" + "6062b9e5-4209-46ab-a7da-13f53d000d34_M3CH3_M3CH3" ], "Server-SB": [ - "Service-Bus-Resource-Provider/SN1" - ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" + "Service-Bus-Resource-Provider/CH3" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "48" ], "x-ms-correlation-request-id": [ - "c3d32249-96c7-4c27-8aba-f0faf920fb73" + "01f46873-e821-46c7-850f-30773456eb9f" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210924T042908Z:c3d32249-96c7-4c27-8aba-f0faf920fb73" + "SOUTHINDIA:20211115T024248Z:01f46873-e821-46c7-850f-30773456eb9f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -568,11 +646,8 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:29:07 GMT" - ], "Content-Length": [ - "726" + "730" ], "Content-Type": [ "application/json; charset=utf-8" @@ -581,47 +656,50 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"tier\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3335/providers/Microsoft.EventHub/namespaces/sdk-NS-6015\",\r\n \"name\": \"sdk-NS-6015\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": true,\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-6015\",\r\n \"createdAt\": \"2021-09-24T04:26:35.97Z\",\r\n \"updatedAt\": \"2021-09-24T04:26:35.97Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-6015.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-602/providers/Microsoft.EventHub/namespaces/sdk-NS-2000\",\r\n \"name\": \"sdk-NS-2000\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": true,\r\n \"maximumThroughputUnits\": 40,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Created\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:sdk-ns-2000\",\r\n \"createdAt\": \"2021-11-15T02:42:46.887Z\",\r\n \"updatedAt\": \"2021-11-15T02:42:46.887Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-2000.servicebus.windows.net:443/\",\r\n \"status\": \"Activating\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3335/providers/Microsoft.EventHub/namespaces/sdk-NS-6015?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMzMzNS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTYwMTU/YXBpLXZlcnNpb249MjAyMS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-602/providers/Microsoft.EventHub/namespaces/sdk-NS-2000?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNjAyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTlMtMjAwMD9hcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:43:18 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "4a264071-4d53-4afa-a86f-eecd254005ca_M4SN1_M4SN1" + "903a2ae1-f9c5-4138-93fe-fdf68ff7ac4f_M3CH3_M3CH3" ], "Server-SB": [ - "Service-Bus-Resource-Provider/SN1" - ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" + "Service-Bus-Resource-Provider/CH3" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" + "11995" ], "x-ms-correlation-request-id": [ - "9f9cc757-6824-41b7-ab06-faf0cea1308d" + "7b4599da-a7c2-4bb2-8535-c945bbc60e82" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210924T042938Z:9f9cc757-6824-41b7-ab06-faf0cea1308d" + "SOUTHINDIA:20211115T024319Z:7b4599da-a7c2-4bb2-8535-c945bbc60e82" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -629,11 +707,8 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:29:38 GMT" - ], "Content-Length": [ - "726" + "730" ], "Content-Type": [ "application/json; charset=utf-8" @@ -642,47 +717,50 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"tier\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3335/providers/Microsoft.EventHub/namespaces/sdk-NS-6015\",\r\n \"name\": \"sdk-NS-6015\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": true,\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-6015\",\r\n \"createdAt\": \"2021-09-24T04:26:35.97Z\",\r\n \"updatedAt\": \"2021-09-24T04:26:35.97Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-6015.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-602/providers/Microsoft.EventHub/namespaces/sdk-NS-2000\",\r\n \"name\": \"sdk-NS-2000\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": true,\r\n \"maximumThroughputUnits\": 40,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Created\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:sdk-ns-2000\",\r\n \"createdAt\": \"2021-11-15T02:42:46.887Z\",\r\n \"updatedAt\": \"2021-11-15T02:42:46.887Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-2000.servicebus.windows.net:443/\",\r\n \"status\": \"Activating\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3335/providers/Microsoft.EventHub/namespaces/sdk-NS-6015?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMzMzNS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTYwMTU/YXBpLXZlcnNpb249MjAyMS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-602/providers/Microsoft.EventHub/namespaces/sdk-NS-2000?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNjAyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTlMtMjAwMD9hcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:43:48 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "e8574cfd-87f1-439e-beff-822dba616883_M9CH3_M9CH3" + "881dbfba-b56f-41a9-a570-05ce68ab5297_M3CH3_M3CH3" ], "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], - "Server": [ - "Service-Bus-Resource-Provider/CH3", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" + "11994" ], "x-ms-correlation-request-id": [ - "445a59f6-0cd4-4c81-b401-2d920d086e6d" + "78b6e8c2-244e-46ad-8443-9c4a3ea724dc" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210924T043008Z:445a59f6-0cd4-4c81-b401-2d920d086e6d" + "SOUTHINDIA:20211115T024349Z:78b6e8c2-244e-46ad-8443-9c4a3ea724dc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -690,11 +768,8 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:30:08 GMT" - ], "Content-Length": [ - "726" + "728" ], "Content-Type": [ "application/json; charset=utf-8" @@ -703,47 +778,62 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"tier\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3335/providers/Microsoft.EventHub/namespaces/sdk-NS-6015\",\r\n \"name\": \"sdk-NS-6015\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": true,\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-6015\",\r\n \"createdAt\": \"2021-09-24T04:26:35.97Z\",\r\n \"updatedAt\": \"2021-09-24T04:26:35.97Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-6015.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-602/providers/Microsoft.EventHub/namespaces/sdk-NS-2000\",\r\n \"name\": \"sdk-NS-2000\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": true,\r\n \"maximumThroughputUnits\": 40,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:sdk-ns-2000\",\r\n \"createdAt\": \"2021-11-15T02:42:46.887Z\",\r\n \"updatedAt\": \"2021-11-15T02:43:37.487Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-2000.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3335/providers/Microsoft.EventHub/namespaces/sdk-NS-6015?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMzMzNS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTYwMTU/YXBpLXZlcnNpb249MjAyMS0wNi0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-602/providers/Microsoft.EventHub/namespaces/sdk-NS-7180?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNjAyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTlMtNzE4MD9hcGktdmVyc2lvbj0yMDIxLTExLTAx", + "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\": 40,\r\n \"zoneRedundant\": true\r\n },\r\n \"location\": \"West US 2\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n }\r\n}", "RequestHeaders": { + "x-ms-client-request-id": [ + "43527b94-98a3-4ac8-9c0d-0f3ac6bbf9c2" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "284" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:43:53 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "0c867b0b-d354-4344-b0fa-f09f0425fa31_M0CH3_M0CH3" + "599d91aa-f4cf-41ea-81a5-22b5ada41505_M3CH3_M3CH3" ], "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], - "Server": [ - "Service-Bus-Resource-Provider/CH3", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "47" ], "x-ms-correlation-request-id": [ - "4ad164f4-7c6a-432e-8d17-ad4598b6b6db" + "1fd8daa0-805b-4ef6-bc18-d14f4b32ee65" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210924T043039Z:4ad164f4-7c6a-432e-8d17-ad4598b6b6db" + "SOUTHINDIA:20211115T024354Z:1fd8daa0-805b-4ef6-bc18-d14f4b32ee65" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -751,11 +841,8 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:30:39 GMT" - ], "Content-Length": [ - "724" + "729" ], "Content-Type": [ "application/json; charset=utf-8" @@ -764,59 +851,50 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"tier\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3335/providers/Microsoft.EventHub/namespaces/sdk-NS-6015\",\r\n \"name\": \"sdk-NS-6015\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": true,\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-6015\",\r\n \"createdAt\": \"2021-09-24T04:26:35.97Z\",\r\n \"updatedAt\": \"2021-09-24T04:30:32.49Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-6015.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-602/providers/Microsoft.EventHub/namespaces/sdk-NS-7180\",\r\n \"name\": \"sdk-NS-7180\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": true,\r\n \"isAutoInflateEnabled\": true,\r\n \"maximumThroughputUnits\": 40,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Created\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:sdk-ns-7180\",\r\n \"createdAt\": \"2021-11-15T02:43:52.257Z\",\r\n \"updatedAt\": \"2021-11-15T02:43:52.257Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-7180.servicebus.windows.net:443/\",\r\n \"status\": \"Activating\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3335/providers/Microsoft.EventHub/namespaces/sdk-NS-2038?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMzMzNS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTIwMzg/YXBpLXZlcnNpb249MjAyMS0wNi0wMS1wcmV2aWV3", - "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\": 40\r\n },\r\n \"location\": \"West US 2\",\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-602/providers/Microsoft.EventHub/namespaces/sdk-NS-7180?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNjAyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTlMtNzE4MD9hcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "bbd07bd3-9322-45bb-80ab-0cc1f374731e" - ], - "Accept-Language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "256" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:44:24 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "6b4ba44b-5d77-41c9-bef2-7d86dbbfaa20_M2CH3_M2CH3" + "779af52d-fc0e-4825-a941-8afcc5ec8350_M3CH3_M3CH3" ], "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], - "Server": [ - "Service-Bus-Resource-Provider/CH3", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "48" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" ], "x-ms-correlation-request-id": [ - "386f7109-bca5-4ad6-86fe-9209a44cb7fb" + "f42c5330-91e1-4aac-bc80-2428fdac5bf7" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210924T043050Z:386f7109-bca5-4ad6-86fe-9209a44cb7fb" + "SOUTHINDIA:20211115T024424Z:f42c5330-91e1-4aac-bc80-2428fdac5bf7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -824,11 +902,8 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:30:50 GMT" - ], "Content-Length": [ - "731" + "729" ], "Content-Type": [ "application/json; charset=utf-8" @@ -837,47 +912,50 @@ "-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-3335/providers/Microsoft.EventHub/namespaces/sdk-NS-2038\",\r\n \"name\": \"sdk-NS-2038\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": true,\r\n \"maximumThroughputUnits\": 40,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Created\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:sdk-ns-2038\",\r\n \"createdAt\": \"2021-09-24T04:30:50.167Z\",\r\n \"updatedAt\": \"2021-09-24T04:30:50.167Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-2038.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-602/providers/Microsoft.EventHub/namespaces/sdk-NS-7180\",\r\n \"name\": \"sdk-NS-7180\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": true,\r\n \"isAutoInflateEnabled\": true,\r\n \"maximumThroughputUnits\": 40,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Created\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:sdk-ns-7180\",\r\n \"createdAt\": \"2021-11-15T02:43:52.257Z\",\r\n \"updatedAt\": \"2021-11-15T02:43:52.257Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-7180.servicebus.windows.net:443/\",\r\n \"status\": \"Activating\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3335/providers/Microsoft.EventHub/namespaces/sdk-NS-2038?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMzMzNS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTIwMzg/YXBpLXZlcnNpb249MjAyMS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-602/providers/Microsoft.EventHub/namespaces/sdk-NS-7180?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNjAyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTlMtNzE4MD9hcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:44:53 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "f33f433d-b707-4fc5-8060-38159f9fc338_M6CH3_M6CH3" + "fd5aab12-2539-4fe1-82b3-058ec2664d53_M3CH3_M3CH3" ], "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], - "Server": [ - "Service-Bus-Resource-Provider/CH3", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11982" + "11992" ], "x-ms-correlation-request-id": [ - "c37dacf9-472a-425f-a771-c78ff69f1411" + "2316c94b-4cc9-46fe-8b89-17dd6705df43" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210924T043121Z:c37dacf9-472a-425f-a771-c78ff69f1411" + "SOUTHINDIA:20211115T024454Z:2316c94b-4cc9-46fe-8b89-17dd6705df43" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -885,11 +963,8 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:31:20 GMT" - ], "Content-Length": [ - "731" + "726" ], "Content-Type": [ "application/json; charset=utf-8" @@ -898,47 +973,59 @@ "-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-3335/providers/Microsoft.EventHub/namespaces/sdk-NS-2038\",\r\n \"name\": \"sdk-NS-2038\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": true,\r\n \"maximumThroughputUnits\": 40,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Created\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:sdk-ns-2038\",\r\n \"createdAt\": \"2021-09-24T04:30:50.167Z\",\r\n \"updatedAt\": \"2021-09-24T04:30:50.167Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-2038.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-602/providers/Microsoft.EventHub/namespaces/sdk-NS-7180\",\r\n \"name\": \"sdk-NS-7180\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": true,\r\n \"isAutoInflateEnabled\": true,\r\n \"maximumThroughputUnits\": 40,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:sdk-ns-7180\",\r\n \"createdAt\": \"2021-11-15T02:43:52.257Z\",\r\n \"updatedAt\": \"2021-11-15T02:44:39.94Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-7180.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3335/providers/Microsoft.EventHub/namespaces/sdk-NS-2038?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMzMzNS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTIwMzg/YXBpLXZlcnNpb249MjAyMS0wNi0wMS1wcmV2aWV3", - "RequestMethod": "GET", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-602/providers/Microsoft.EventHub/namespaces/sdk-NS-9028?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNjAyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTlMtOTAyOD9hcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "ffbf1e7e-433c-44c3-b178-4206a8539f7c" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:44:56 GMT" + ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ - "dd82047f-adec-4f35-8284-d437af98c339_M6SN1_M6SN1" - ], - "Server-SB": [ - "Service-Bus-Resource-Provider/SN1" + "Location": [ + "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-602/providers/Microsoft.EventHub/namespaces/sdk-NS-9028/operationresults/sdk-NS-9028?api-version=2021-11-01" ], "Server": [ - "Service-Bus-Resource-Provider/SN1", + "Service-Bus-Resource-Provider/CH3", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11981" + "x-ms-request-id": [ + "b9a3d45d-34f2-467e-bd56-7df0bfe35337_M3CH3_M3CH3" + ], + "Server-SB": [ + "Service-Bus-Resource-Provider/CH3" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" ], "x-ms-correlation-request-id": [ - "9536263d-2d68-46cd-9721-68ad025d22e5" + "3f1069ee-2161-4eff-a48a-13f05f2d38f7" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210924T043151Z:9536263d-2d68-46cd-9721-68ad025d22e5" + "SOUTHINDIA:20211115T024457Z:3f1069ee-2161-4eff-a48a-13f05f2d38f7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -946,72 +1033,66 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:31:50 GMT" - ], "Content-Length": [ - "727" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "0" ], "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-3335/providers/Microsoft.EventHub/namespaces/sdk-NS-2038\",\r\n \"name\": \"sdk-NS-2038\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": true,\r\n \"maximumThroughputUnits\": 40,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:sdk-ns-2038\",\r\n \"createdAt\": \"2021-09-24T04:30:50.167Z\",\r\n \"updatedAt\": \"2021-09-24T04:31:38.5Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-2038.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n}", - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3335/providers/Microsoft.EventHub/namespaces/sdk-NS-4625?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMzMzNS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTQ2MjU/YXBpLXZlcnNpb249MjAyMS0wNi0wMS1wcmV2aWV3", - "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\": 40,\r\n \"zoneRedundant\": true\r\n },\r\n \"location\": \"West US 2\",\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-602/providers/Microsoft.EventHub/namespaces/sdk-NS-7180?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNjAyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTlMtNzE4MD9hcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestMethod": "DELETE", + "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e4fda5f4-420c-4384-933c-8c3a49bdb590" + "23c47d68-7cae-4d24-9167-6420cefb08a4" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "284" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:44:56 GMT" + ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ - "10edcfb6-6fe6-414f-b0fb-a3a430067435_M9SN1_M9SN1" - ], - "Server-SB": [ - "Service-Bus-Resource-Provider/SN1" + "Location": [ + "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-602/providers/Microsoft.EventHub/namespaces/sdk-NS-7180/operationresults/sdk-NS-7180?api-version=2021-11-01" ], "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "47" + "x-ms-request-id": [ + "5023eb81-4d00-4be3-9508-363fdb0ab661_M8SN1_M8SN1" + ], + "Server-SB": [ + "Service-Bus-Resource-Provider/SN1" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14998" ], "x-ms-correlation-request-id": [ - "39c5be99-a5eb-404c-9129-121e8c566f46" + "e278e544-3a46-41a8-81c0-63259850b26d" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210924T043153Z:39c5be99-a5eb-404c-9129-121e8c566f46" + "SOUTHINDIA:20211115T024457Z:e278e544-3a46-41a8-81c0-63259850b26d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1019,60 +1100,66 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:31:52 GMT" - ], "Content-Length": [ - "728" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "0" ], "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-3335/providers/Microsoft.EventHub/namespaces/sdk-NS-4625\",\r\n \"name\": \"sdk-NS-4625\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": true,\r\n \"isAutoInflateEnabled\": true,\r\n \"maximumThroughputUnits\": 40,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Created\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:sdk-ns-4625\",\r\n \"createdAt\": \"2021-09-24T04:31:52.63Z\",\r\n \"updatedAt\": \"2021-09-24T04:31:52.63Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-4625.servicebus.windows.net:443/\",\r\n \"status\": \"Activating\"\r\n }\r\n}", - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3335/providers/Microsoft.EventHub/namespaces/sdk-NS-4625?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMzMzNS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTQ2MjU/YXBpLXZlcnNpb249MjAyMS0wNi0wMS1wcmV2aWV3", - "RequestMethod": "GET", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-602/providers/Microsoft.EventHub/namespaces/sdk-NS-2000?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNjAyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTlMtMjAwMD9hcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "e0041d95-00d5-4e58-94d8-20a3c6e583e9" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:44:59 GMT" + ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ - "4f4b07e6-9ec0-4b3b-bb3a-bfd2e0e600b5_M7SN1_M7SN1" - ], - "Server-SB": [ - "Service-Bus-Resource-Provider/SN1" + "Location": [ + "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-602/providers/Microsoft.EventHub/namespaces/sdk-NS-2000/operationresults/sdk-NS-2000?api-version=2021-11-01" ], "Server": [ - "Service-Bus-Resource-Provider/SN1", + "Service-Bus-Resource-Provider/CH3", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11980" + "x-ms-request-id": [ + "573d173e-3bad-4cd5-b0fb-214406071bf7_M10CH3_M10CH3" + ], + "Server-SB": [ + "Service-Bus-Resource-Provider/CH3" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" ], "x-ms-correlation-request-id": [ - "f1481d16-c2ad-40d7-8e72-47527384ae87" + "39aa8ada-aeb7-4639-926c-8133931218b9" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210924T043223Z:f1481d16-c2ad-40d7-8e72-47527384ae87" + "SOUTHINDIA:20211115T024459Z:39aa8ada-aeb7-4639-926c-8133931218b9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1080,60 +1167,62 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:32:22 GMT" - ], "Content-Length": [ - "728" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "0" ], "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-3335/providers/Microsoft.EventHub/namespaces/sdk-NS-4625\",\r\n \"name\": \"sdk-NS-4625\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": true,\r\n \"isAutoInflateEnabled\": true,\r\n \"maximumThroughputUnits\": 40,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Created\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:sdk-ns-4625\",\r\n \"createdAt\": \"2021-09-24T04:31:52.63Z\",\r\n \"updatedAt\": \"2021-09-24T04:31:52.63Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-4625.servicebus.windows.net:443/\",\r\n \"status\": \"Activating\"\r\n }\r\n}", - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3335/providers/Microsoft.EventHub/namespaces/sdk-NS-4625?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMzMzNS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTQ2MjU/YXBpLXZlcnNpb249MjAyMS0wNi0wMS1wcmV2aWV3", - "RequestMethod": "GET", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/Default-EventHub-602?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlZ3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNjAyP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "f829e96d-a339-453a-88e6-5d7d1e5475a5" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:44:59 GMT" + ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ - "22ea31ee-6be8-4e2c-a61f-9f0a64ed0290_M7SN1_M7SN1" + "Location": [ + "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1ERUZBVUxUOjJERVZFTlRIVUI6MkQ2MDItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2015-11-01" ], - "Server-SB": [ - "Service-Bus-Resource-Provider/SN1" + "Retry-After": [ + "15" ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11979" + "x-ms-request-id": [ + "2dc5fa3b-9fac-4f76-ac39-a333936dc361" ], "x-ms-correlation-request-id": [ - "96c3b839-6ce7-435d-9730-232d29fc920e" + "2dc5fa3b-9fac-4f76-ac39-a333936dc361" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210924T043253Z:96c3b839-6ce7-435d-9730-232d29fc920e" + "SOUTHINDIA:20211115T024459Z:2dc5fa3b-9fac-4f76-ac39-a333936dc361" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1141,29 +1230,23 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:32:53 GMT" - ], "Content-Length": [ - "727" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "0" ], "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-3335/providers/Microsoft.EventHub/namespaces/sdk-NS-4625\",\r\n \"name\": \"sdk-NS-4625\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": true,\r\n \"isAutoInflateEnabled\": true,\r\n \"maximumThroughputUnits\": 40,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:sdk-ns-4625\",\r\n \"createdAt\": \"2021-09-24T04:31:52.63Z\",\r\n \"updatedAt\": \"2021-09-24T04:32:39.937Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-4625.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n}", - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 202 } ], "Names": { "NamespacePremiumGetUpdateDelete": [ - "Default-EventHub-3335", - "sdk-NS-6015", - "sdk-NS-2038", - "sdk-NS-4625" + "Default-EventHub-602", + "sdk-NS-9028", + "sdk-NS-2000", + "sdk-NS-7180" ] }, "Variables": { 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 030cf1f6afb3..40bd29450a56 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 @@ -7,15 +7,15 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f85df999-e62f-40df-a278-e015b8f3ab51" + "18a85819-3899-4a5e-af9a-7cfb60ece2f7" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", + "OSVersion/Microsoft.Windows.10.0.22000.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -23,6 +23,9 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:19:44 GMT" + ], "Pragma": [ "no-cache" ], @@ -30,13 +33,13 @@ "11999" ], "x-ms-request-id": [ - "250578f7-5f58-4411-9901-243b5e86c48b" + "5154c79e-e649-42a2-9b4c-7e49ee386899" ], "x-ms-correlation-request-id": [ - "250578f7-5f58-4411-9901-243b5e86c48b" + "5154c79e-e649-42a2-9b4c-7e49ee386899" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210924T040922Z:250578f7-5f58-4411-9901-243b5e86c48b" + "SOUTHINDIA:20211115T021945Z:5154c79e-e649-42a2-9b4c-7e49ee386899" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -44,38 +47,35 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:09:22 GMT" + "Content-Length": [ + "4451" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" - ], - "Content-Length": [ - "4274" ] }, - "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 \"Jio India West\",\r\n \"West US 3\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"UAE Central\",\r\n \"Norway West\",\r\n \"Sweden Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01-preview\",\r\n \"2021-01-01-preview\",\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 \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"UAE Central\",\r\n \"Norway West\",\r\n \"Sweden 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 \"2021-06-01-preview\",\r\n \"2021-01-01-preview\",\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 },\r\n {\r\n \"resourceType\": \"namespaces/networkrulesets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-06-01-preview\",\r\n \"2021-01-01-preview\",\r\n \"2018-01-01-preview\",\r\n \"2017-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/privateEndpointConnections\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-06-01-preview\",\r\n \"2021-01-01-preview\",\r\n \"2018-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/eventhubs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-06-01-preview\",\r\n \"2021-01-01-preview\",\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 },\r\n {\r\n \"resourceType\": \"namespaces/eventhubs/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-06-01-preview\",\r\n \"2021-01-01-preview\",\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 },\r\n {\r\n \"resourceType\": \"namespaces/eventhubs/consumergroups\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-06-01-preview\",\r\n \"2021-01-01-preview\",\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 },\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 \"2021-06-01-preview\",\r\n \"2021-01-01-preview\",\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 },\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 \"2021-06-01-preview\",\r\n \"2021-01-01-preview\",\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 },\r\n {\r\n \"resourceType\": \"namespaces/disasterrecoveryconfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-06-01-preview\",\r\n \"2021-01-01-preview\",\r\n \"2018-01-01-preview\",\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 \"2021-06-01-preview\",\r\n \"2021-01-01-preview\",\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 },\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}", + "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 \"Jio India West\",\r\n \"West US 3\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"UAE Central\",\r\n \"Norway West\",\r\n \"Sweden Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-11-01\",\r\n \"2021-06-01-preview\",\r\n \"2021-01-01-preview\",\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 \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"UAE Central\",\r\n \"Norway West\",\r\n \"Sweden Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-11-01\",\r\n \"2021-06-01-preview\",\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 \"2021-11-01\",\r\n \"2021-06-01-preview\",\r\n \"2021-01-01-preview\",\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 },\r\n {\r\n \"resourceType\": \"namespaces/networkrulesets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-11-01\",\r\n \"2021-06-01-preview\",\r\n \"2021-01-01-preview\",\r\n \"2018-01-01-preview\",\r\n \"2017-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/privateEndpointConnections\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-11-01\",\r\n \"2021-06-01-preview\",\r\n \"2021-01-01-preview\",\r\n \"2018-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/eventhubs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-11-01\",\r\n \"2021-06-01-preview\",\r\n \"2021-01-01-preview\",\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 },\r\n {\r\n \"resourceType\": \"namespaces/eventhubs/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-11-01\",\r\n \"2021-06-01-preview\",\r\n \"2021-01-01-preview\",\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 },\r\n {\r\n \"resourceType\": \"namespaces/eventhubs/consumergroups\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-11-01\",\r\n \"2021-06-01-preview\",\r\n \"2021-01-01-preview\",\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 },\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 \"2021-11-01\",\r\n \"2021-06-01-preview\",\r\n \"2021-01-01-preview\",\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 },\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 \"2021-11-01\",\r\n \"2021-06-01-preview\",\r\n \"2021-01-01-preview\",\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 },\r\n {\r\n \"resourceType\": \"namespaces/disasterrecoveryconfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-11-01\",\r\n \"2021-06-01-preview\",\r\n \"2021-01-01-preview\",\r\n \"2018-01-01-preview\",\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 \"2021-11-01\",\r\n \"2021-06-01-preview\",\r\n \"2021-01-01-preview\",\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 },\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/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/Default-EventHub-1460?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlZ3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMTQ2MD9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/Default-EventHub-4612?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlZ3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNDYxMj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"Australia East\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "b223b699-a11a-4f7c-8cbc-840336e7b4c8" + "86ca6bde-b52f-4526-a011-adb1717004b4" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", + "OSVersion/Microsoft.Windows.10.0.22000.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ], "Content-Type": [ @@ -89,6 +89,9 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:19:47 GMT" + ], "Pragma": [ "no-cache" ], @@ -96,13 +99,13 @@ "1199" ], "x-ms-request-id": [ - "498e28fb-7cb2-4269-8a23-6f3ec50cc96c" + "97654bb7-736e-4aba-8682-337dac9aed6b" ], "x-ms-correlation-request-id": [ - "498e28fb-7cb2-4269-8a23-6f3ec50cc96c" + "97654bb7-736e-4aba-8682-337dac9aed6b" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210924T040924Z:498e28fb-7cb2-4269-8a23-6f3ec50cc96c" + "SOUTHINDIA:20211115T021948Z:97654bb7-736e-4aba-8682-337dac9aed6b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -110,9 +113,6 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:09:24 GMT" - ], "Content-Length": [ "202" ], @@ -123,26 +123,93 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-1460\",\r\n \"name\": \"Default-EventHub-1460\",\r\n \"location\": \"australiaeast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-4612\",\r\n \"name\": \"Default-EventHub-4612\",\r\n \"location\": \"australiaeast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-1460/providers/Microsoft.EventHub/namespaces/sdk-NS-7432?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMTQ2MC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTc0MzI/YXBpLXZlcnNpb249MjAyMS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/v-ajnavtest/providers/Microsoft.EventHub/namespaces/sdk-NS-8670?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL3YtYWpuYXZ0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTlMtODY3MD9hcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e5ffcc12-5680-41e6-90ab-36db4f89763e" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 15 Nov 2021 02:19:48 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/v-ajnavtest/providers/Microsoft.EventHub/namespaces/sdk-NS-8670/operationresults/sdk-NS-8670?api-version=2021-11-01" + ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "329b6403-5241-498b-bf10-288ae7317d4d_M9CH3_M9CH3" + ], + "Server-SB": [ + "Service-Bus-Resource-Provider/CH3" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-correlation-request-id": [ + "fd8d895c-f955-4f23-b1a4-7e9c0d0efb5b" + ], + "x-ms-routing-request-id": [ + "SOUTHINDIA:20211115T021949Z:fd8d895c-f955-4f23-b1a4-7e9c0d0efb5b" + ], + "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-4612/providers/Microsoft.EventHub/namespaces/sdk-NS-9121?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNDYxMi9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTkxMjE/YXBpLXZlcnNpb249MjAyMS0xMS0wMQ==", "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": [ - "a091d76e-241a-4e69-b22d-b9f22aa14b7f" + "0dd6708c-ec83-4739-84b9-eb0aefdbf16c" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -155,27 +222,30 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:19:56 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "eb67f7e7-d6f1-459f-b602-52ca424f61b0_M11CH3_M11CH3" + "001d670e-0bb8-483d-9f9f-f891d5555f3c_M2SN1_M2SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" - ], - "Server": [ - "Service-Bus-Resource-Provider/CH3", - "Microsoft-HTTPAPI/2.0" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "49" ], "x-ms-correlation-request-id": [ - "c4751538-860b-4ce9-b9d3-9f2c5f2cd3b3" + "6b4d52a1-f984-411b-babe-51366a50d7f4" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210924T040933Z:c4751538-860b-4ce9-b9d3-9f2c5f2cd3b3" + "SOUTHINDIA:20211115T021956Z:6b4d52a1-f984-411b-babe-51366a50d7f4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -183,11 +253,8 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:09:33 GMT" - ], "Content-Length": [ - "736" + "734" ], "Content-Type": [ "application/json; charset=utf-8" @@ -196,47 +263,50 @@ "-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-1460/providers/Microsoft.EventHub/namespaces/sdk-NS-7432\",\r\n \"name\": \"sdk-NS-7432\",\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 \"disableLocalAuth\": false,\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-7432\",\r\n \"createdAt\": \"2021-09-24T04:09:31.877Z\",\r\n \"updatedAt\": \"2021-09-24T04:09:31.877Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-7432.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-4612/providers/Microsoft.EventHub/namespaces/sdk-NS-9121\",\r\n \"name\": \"sdk-NS-9121\",\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 \"disableLocalAuth\": false,\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-9121\",\r\n \"createdAt\": \"2021-11-15T02:19:55.29Z\",\r\n \"updatedAt\": \"2021-11-15T02:19:55.29Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-9121.servicebus.windows.net:443/\",\r\n \"status\": \"Activating\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-1460/providers/Microsoft.EventHub/namespaces/sdk-NS-7432?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMTQ2MC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTc0MzI/YXBpLXZlcnNpb249MjAyMS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-4612/providers/Microsoft.EventHub/namespaces/sdk-NS-9121?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNDYxMi9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTkxMjE/YXBpLXZlcnNpb249MjAyMS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:20:27 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "46d08ff4-7101-4889-98da-c8df594b129c_M3DM2_M3DM2" + "e5e29e61-30ab-4a83-956b-58e9ccb775f2_M2SN1_M2SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/DM2" - ], - "Server": [ - "Service-Bus-Resource-Provider/DM2", - "Microsoft-HTTPAPI/2.0" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11999" ], "x-ms-correlation-request-id": [ - "75ef1bd2-9029-48a8-ad90-b3f8c97079cf" + "ed860642-1650-4c74-911f-6791b0ed0c5a" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210924T041003Z:75ef1bd2-9029-48a8-ad90-b3f8c97079cf" + "SOUTHINDIA:20211115T022027Z:ed860642-1650-4c74-911f-6791b0ed0c5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -244,11 +314,8 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:10:03 GMT" - ], "Content-Length": [ - "736" + "734" ], "Content-Type": [ "application/json; charset=utf-8" @@ -257,47 +324,50 @@ "-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-1460/providers/Microsoft.EventHub/namespaces/sdk-NS-7432\",\r\n \"name\": \"sdk-NS-7432\",\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 \"disableLocalAuth\": false,\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-7432\",\r\n \"createdAt\": \"2021-09-24T04:09:31.877Z\",\r\n \"updatedAt\": \"2021-09-24T04:09:31.877Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-7432.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-4612/providers/Microsoft.EventHub/namespaces/sdk-NS-9121\",\r\n \"name\": \"sdk-NS-9121\",\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 \"disableLocalAuth\": false,\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-9121\",\r\n \"createdAt\": \"2021-11-15T02:19:55.29Z\",\r\n \"updatedAt\": \"2021-11-15T02:19:55.29Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-9121.servicebus.windows.net:443/\",\r\n \"status\": \"Activating\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-1460/providers/Microsoft.EventHub/namespaces/sdk-NS-7432?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMTQ2MC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTc0MzI/YXBpLXZlcnNpb249MjAyMS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-4612/providers/Microsoft.EventHub/namespaces/sdk-NS-9121?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNDYxMi9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTkxMjE/YXBpLXZlcnNpb249MjAyMS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:20:56 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "5a1643d0-60d6-4177-bcb6-42a77b4bbd9c_M1DM2_M1DM2" + "aec04b3c-9df2-4527-b275-f2c2ecfa9fdf_M2SN1_M2SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/DM2" - ], - "Server": [ - "Service-Bus-Resource-Provider/DM2", - "Microsoft-HTTPAPI/2.0" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11998" ], "x-ms-correlation-request-id": [ - "365dcf22-5944-4cb7-86bf-ae18323e11f7" + "e22f01fd-78a9-458b-a7dd-80aa5afb25df" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210924T041034Z:365dcf22-5944-4cb7-86bf-ae18323e11f7" + "SOUTHINDIA:20211115T022057Z:e22f01fd-78a9-458b-a7dd-80aa5afb25df" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -305,11 +375,8 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:10:34 GMT" - ], "Content-Length": [ - "734" + "732" ], "Content-Type": [ "application/json; charset=utf-8" @@ -318,53 +385,56 @@ "-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-1460/providers/Microsoft.EventHub/namespaces/sdk-NS-7432\",\r\n \"name\": \"sdk-NS-7432\",\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 \"disableLocalAuth\": false,\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-7432\",\r\n \"createdAt\": \"2021-09-24T04:09:31.877Z\",\r\n \"updatedAt\": \"2021-09-24T04:10:24.043Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-7432.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-4612/providers/Microsoft.EventHub/namespaces/sdk-NS-9121\",\r\n \"name\": \"sdk-NS-9121\",\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 \"disableLocalAuth\": false,\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-9121\",\r\n \"createdAt\": \"2021-11-15T02:19:55.29Z\",\r\n \"updatedAt\": \"2021-11-15T02:20:47.17Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-9121.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-1460/providers/Microsoft.EventHub/namespaces/sdk-NS-7432?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMTQ2MC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTc0MzI/YXBpLXZlcnNpb249MjAyMS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-4612/providers/Microsoft.EventHub/namespaces/sdk-NS-9121?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNDYxMi9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTkxMjE/YXBpLXZlcnNpb249MjAyMS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fc0f6474-94e7-4010-8cd9-5313bc7f7c4b" + "3ad08576-ef3c-4dc7-9b3d-e630a1616537" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:21:02 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "76ddf1c4-8358-4fa6-a190-ed883b34acb8_M2DM2_M2DM2" + "f6248802-2c27-4b3d-80df-6be292ccc5da_M0CH3_M0CH3" ], "Server-SB": [ - "Service-Bus-Resource-Provider/DM2" - ], - "Server": [ - "Service-Bus-Resource-Provider/DM2", - "Microsoft-HTTPAPI/2.0" + "Service-Bus-Resource-Provider/CH3" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11997" ], "x-ms-correlation-request-id": [ - "6a4fe392-bde4-4553-87c2-5bfc61617318" + "5f1d98e7-0001-412d-adb9-11683d827132" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210924T041039Z:6a4fe392-bde4-4553-87c2-5bfc61617318" + "SOUTHINDIA:20211115T022102Z:5f1d98e7-0001-412d-adb9-11683d827132" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -372,11 +442,8 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:10:39 GMT" - ], "Content-Length": [ - "734" + "732" ], "Content-Type": [ "application/json; charset=utf-8" @@ -385,53 +452,56 @@ "-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-1460/providers/Microsoft.EventHub/namespaces/sdk-NS-7432\",\r\n \"name\": \"sdk-NS-7432\",\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 \"disableLocalAuth\": false,\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-7432\",\r\n \"createdAt\": \"2021-09-24T04:09:31.877Z\",\r\n \"updatedAt\": \"2021-09-24T04:10:24.043Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-7432.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-4612/providers/Microsoft.EventHub/namespaces/sdk-NS-9121\",\r\n \"name\": \"sdk-NS-9121\",\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 \"disableLocalAuth\": false,\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-9121\",\r\n \"createdAt\": \"2021-11-15T02:19:55.29Z\",\r\n \"updatedAt\": \"2021-11-15T02:20:47.17Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-9121.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-1460/providers/Microsoft.EventHub/namespaces/sdk-NS-7432?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMTQ2MC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTc0MzI/YXBpLXZlcnNpb249MjAyMS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-4612/providers/Microsoft.EventHub/namespaces/sdk-NS-9121?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNDYxMi9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTkxMjE/YXBpLXZlcnNpb249MjAyMS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "eaf2cf30-9c13-4256-8445-a8a1df0b5b99" + "18b71e52-aee1-4df8-a4de-8362a4b8fcaa" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:21:02 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "1dfa1a8b-8e91-4b3e-882e-a13d1a815198_M3DM2_M3DM2" + "f5e0e5a4-0a9a-465d-8578-d8a6ab13f57e_M2SN1_M2SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/DM2" - ], - "Server": [ - "Service-Bus-Resource-Provider/DM2", - "Microsoft-HTTPAPI/2.0" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11996" ], "x-ms-correlation-request-id": [ - "ce4d6ef2-3c43-4606-b50b-2b3d1143eede" + "fb4b4ede-4988-47d8-9daa-5a1d0e63f9d7" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210924T041039Z:ce4d6ef2-3c43-4606-b50b-2b3d1143eede" + "SOUTHINDIA:20211115T022103Z:fb4b4ede-4988-47d8-9daa-5a1d0e63f9d7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -439,11 +509,8 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:10:39 GMT" - ], "Content-Length": [ - "734" + "732" ], "Content-Type": [ "application/json; charset=utf-8" @@ -452,26 +519,26 @@ "-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-1460/providers/Microsoft.EventHub/namespaces/sdk-NS-7432\",\r\n \"name\": \"sdk-NS-7432\",\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 \"disableLocalAuth\": false,\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-7432\",\r\n \"createdAt\": \"2021-09-24T04:09:31.877Z\",\r\n \"updatedAt\": \"2021-09-24T04:10:24.043Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-7432.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-4612/providers/Microsoft.EventHub/namespaces/sdk-NS-9121\",\r\n \"name\": \"sdk-NS-9121\",\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 \"disableLocalAuth\": false,\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-9121\",\r\n \"createdAt\": \"2021-11-15T02:19:55.29Z\",\r\n \"updatedAt\": \"2021-11-15T02:20:47.17Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-9121.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-1460/providers/Microsoft.EventHub/namespaces/sdk-NS-7432/networkRuleSets/default?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMTQ2MC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTc0MzIvbmV0d29ya1J1bGVTZXRzL2RlZmF1bHQ/YXBpLXZlcnNpb249MjAyMS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-4612/providers/Microsoft.EventHub/namespaces/sdk-NS-9121/networkRuleSets/default?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNDYxMi9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTkxMjEvbmV0d29ya1J1bGVTZXRzL2RlZmF1bHQ/YXBpLXZlcnNpb249MjAyMS0xMS0wMQ==", "RequestMethod": "PUT", "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": [ - "8fbe42d8-f74f-456e-bdb0-a070aa0c2bd5" + "6ce401fd-81e8-4aa6-ae3c-0568b4e50a64" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -484,27 +551,30 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:21:11 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "bc170f0d-a75c-4d4e-b17a-d63b467a6f70_M3DM2_M3DM2" + "490c568d-421c-4bc9-a049-52430eeea13f_M2SN1_M2SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/DM2" - ], - "Server": [ - "Service-Bus-Resource-Provider/DM2", - "Microsoft-HTTPAPI/2.0" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], "x-ms-correlation-request-id": [ - "f564f246-23d4-4f12-9a71-f317b6603c79" + "6667d104-9292-4e91-9b3b-8d0b1bf12be1" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210924T041047Z:f564f246-23d4-4f12-9a71-f317b6603c79" + "SOUTHINDIA:20211115T022111Z:6667d104-9292-4e91-9b3b-8d0b1bf12be1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -512,11 +582,8 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:10:47 GMT" - ], "Content-Length": [ - "1184" + "1216" ], "Content-Type": [ "application/json; charset=utf-8" @@ -525,26 +592,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-1460/providers/Microsoft.EventHub/namespaces/sdk-NS-7432/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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-4612/providers/Microsoft.EventHub/namespaces/sdk-NS-9121/networkRuleSets/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/NetworkRuleSets\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"publicNetworkAccess\": \"Enabled\",\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/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-1460/providers/Microsoft.EventHub/namespaces/sdk-NS-7432/networkRuleSets/default?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMTQ2MC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTc0MzIvbmV0d29ya1J1bGVTZXRzL2RlZmF1bHQ/YXBpLXZlcnNpb249MjAyMS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-4612/providers/Microsoft.EventHub/namespaces/sdk-NS-9121/networkRuleSets/default?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNDYxMi9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTkxMjEvbmV0d29ya1J1bGVTZXRzL2RlZmF1bHQ/YXBpLXZlcnNpb249MjAyMS0xMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"trustedServiceAccessEnabled\": true,\r\n \"defaultAction\": \"Allow\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "f7301ee3-fe1a-4a41-97af-148fc87140eb" + "55c1ffa4-2da8-4db3-928e-ee011f92e49b" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -557,27 +624,30 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:21:18 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "4ab4b621-f509-40b1-9126-ea046d048aa7_M1DM2_M1DM2" + "f6a6f7ce-838f-4ea2-a039-c0f69a675a54_M2SN1_M2SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/DM2" - ], - "Server": [ - "Service-Bus-Resource-Provider/DM2", - "Microsoft-HTTPAPI/2.0" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1198" ], "x-ms-correlation-request-id": [ - "682a7ffd-3c50-494f-96d0-4e15ba9da7f7" + "dedd1472-a9fe-492d-a4fd-087c2839a5eb" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210924T041056Z:682a7ffd-3c50-494f-96d0-4e15ba9da7f7" + "SOUTHINDIA:20211115T022119Z:dedd1472-a9fe-492d-a4fd-087c2839a5eb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -585,11 +655,8 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:10:56 GMT" - ], "Content-Length": [ - "385" + "417" ], "Content-Type": [ "application/json; charset=utf-8" @@ -598,53 +665,56 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-1460/providers/Microsoft.EventHub/namespaces/sdk-NS-7432/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 \"trustedServiceAccessEnabled\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-4612/providers/Microsoft.EventHub/namespaces/sdk-NS-9121/networkRuleSets/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/NetworkRuleSets\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"defaultAction\": \"Allow\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"trustedServiceAccessEnabled\": true\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-1460/providers/Microsoft.EventHub/namespaces/sdk-NS-7432/networkRuleSets/default?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMTQ2MC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTc0MzIvbmV0d29ya1J1bGVTZXRzL2RlZmF1bHQ/YXBpLXZlcnNpb249MjAyMS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-4612/providers/Microsoft.EventHub/namespaces/sdk-NS-9121/networkRuleSets/default?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNDYxMi9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTkxMjEvbmV0d29ya1J1bGVTZXRzL2RlZmF1bHQ/YXBpLXZlcnNpb249MjAyMS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "670df1dc-6fd3-480d-a0d5-6228e2253146" + "8811d515-fefc-4b57-8993-75eebdcb6eac" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:21:12 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "04b91fd7-df7a-482e-af36-6df0d7fb0913_M3DM2_M3DM2" + "96b02bb9-f57a-4ab6-a34c-18ed2044a84c_M2SN1_M2SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/DM2" - ], - "Server": [ - "Service-Bus-Resource-Provider/DM2", - "Microsoft-HTTPAPI/2.0" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11995" ], "x-ms-correlation-request-id": [ - "defcba66-e8e7-49be-a971-3b5bc6d4998a" + "634a9a87-f79d-40bc-a004-da1768403bf3" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210924T041048Z:defcba66-e8e7-49be-a971-3b5bc6d4998a" + "SOUTHINDIA:20211115T022112Z:634a9a87-f79d-40bc-a004-da1768403bf3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -652,11 +722,8 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:10:48 GMT" - ], "Content-Length": [ - "1184" + "1216" ], "Content-Type": [ "application/json; charset=utf-8" @@ -665,53 +732,56 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-1460/providers/Microsoft.EventHub/namespaces/sdk-NS-7432/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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-4612/providers/Microsoft.EventHub/namespaces/sdk-NS-9121/networkRuleSets/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/NetworkRuleSets\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"publicNetworkAccess\": \"Enabled\",\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/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-1460/providers/Microsoft.EventHub/namespaces/sdk-NS-7432/networkRuleSets/default?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMTQ2MC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTc0MzIvbmV0d29ya1J1bGVTZXRzL2RlZmF1bHQ/YXBpLXZlcnNpb249MjAyMS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-4612/providers/Microsoft.EventHub/namespaces/sdk-NS-9121/networkRuleSets/default?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNDYxMi9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTkxMjEvbmV0d29ya1J1bGVTZXRzL2RlZmF1bHQ/YXBpLXZlcnNpb249MjAyMS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b3154ee5-1b77-457f-b0e5-37e99217fc4c" + "29da900f-55b7-48c8-8607-389a255b78ec" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.9.0.0" + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 15 Nov 2021 02:21:19 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "a4624e74-b80d-4b8a-b6f1-b7bc0346b66f_M1DM2_M1DM2" + "eb893ba2-36bd-4103-8143-261302c578ce_M2SN1_M2SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/DM2" - ], - "Server": [ - "Service-Bus-Resource-Provider/DM2", - "Microsoft-HTTPAPI/2.0" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11994" ], "x-ms-correlation-request-id": [ - "5ed9196b-e10f-4bbc-a428-be169c87a594" + "94ecd342-debf-4c89-a7c8-b5386a3636a0" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210924T041057Z:5ed9196b-e10f-4bbc-a428-be169c87a594" + "SOUTHINDIA:20211115T022120Z:94ecd342-debf-4c89-a7c8-b5386a3636a0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -719,11 +789,8 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 24 Sep 2021 04:10:56 GMT" - ], "Content-Length": [ - "385" + "417" ], "Content-Type": [ "application/json; charset=utf-8" @@ -732,14 +799,77 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-1460/providers/Microsoft.EventHub/namespaces/sdk-NS-7432/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 \"trustedServiceAccessEnabled\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-4612/providers/Microsoft.EventHub/namespaces/sdk-NS-9121/networkRuleSets/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/NetworkRuleSets\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"defaultAction\": \"Allow\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"trustedServiceAccessEnabled\": true\r\n }\r\n}", "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/Default-EventHub-4612?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlZ3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNDYxMj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5cc8fb85-73a4-4537-8e01-86e2ac931819" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 15 Nov 2021 02:21:28 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1ERUZBVUxUOjJERVZFTlRIVUI6MkQ0NjEyLUFVU1RSQUxJQUVBU1QiLCJqb2JMb2NhdGlvbiI6ImF1c3RyYWxpYWVhc3QifQ?api-version=2015-11-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-request-id": [ + "a971947a-15ac-439b-8723-2cc87677d779" + ], + "x-ms-correlation-request-id": [ + "a971947a-15ac-439b-8723-2cc87677d779" + ], + "x-ms-routing-request-id": [ + "SOUTHINDIA:20211115T022129Z:a971947a-15ac-439b-8723-2cc87677d779" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "", + "StatusCode": 202 } ], "Names": { "NetworkRuleSetCreateGetUpdateDelete": [ - "Default-EventHub-1460", - "sdk-NS-7432" + "Default-EventHub-4612", + "sdk-NS-9121" ] }, "Variables": { diff --git a/sdk/eventhub/Microsoft.Azure.Management.EventHub/tests/SessionRecords/ScenarioTests/SchemaGroupCreateUpdateDelete.json b/sdk/eventhub/Microsoft.Azure.Management.EventHub/tests/SessionRecords/ScenarioTests/SchemaGroupCreateUpdateDelete.json new file mode 100644 index 000000000000..96e40902ca6a --- /dev/null +++ b/sdk/eventhub/Microsoft.Azure.Management.EventHub/tests/SessionRecords/ScenarioTests/SchemaGroupCreateUpdateDelete.json @@ -0,0 +1,1666 @@ +{ + "Entries": [ + { + "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": [ + "3bff4663-26c7-41f1-a27a-ee016077fb24" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 15 Nov 2021 02:54:14 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "47c26af3-aa14-4b94-a0d9-f061afb98069" + ], + "x-ms-correlation-request-id": [ + "47c26af3-aa14-4b94-a0d9-f061afb98069" + ], + "x-ms-routing-request-id": [ + "SOUTHINDIA:20211115T025414Z:47c26af3-aa14-4b94-a0d9-f061afb98069" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "4451" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "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 \"Jio India West\",\r\n \"West US 3\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"UAE Central\",\r\n \"Norway West\",\r\n \"Sweden Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-11-01\",\r\n \"2021-06-01-preview\",\r\n \"2021-01-01-preview\",\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 \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"UAE Central\",\r\n \"Norway West\",\r\n \"Sweden Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-11-01\",\r\n \"2021-06-01-preview\",\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 \"2021-11-01\",\r\n \"2021-06-01-preview\",\r\n \"2021-01-01-preview\",\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 },\r\n {\r\n \"resourceType\": \"namespaces/networkrulesets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-11-01\",\r\n \"2021-06-01-preview\",\r\n \"2021-01-01-preview\",\r\n \"2018-01-01-preview\",\r\n \"2017-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/privateEndpointConnections\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-11-01\",\r\n \"2021-06-01-preview\",\r\n \"2021-01-01-preview\",\r\n \"2018-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/eventhubs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-11-01\",\r\n \"2021-06-01-preview\",\r\n \"2021-01-01-preview\",\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 },\r\n {\r\n \"resourceType\": \"namespaces/eventhubs/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-11-01\",\r\n \"2021-06-01-preview\",\r\n \"2021-01-01-preview\",\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 },\r\n {\r\n \"resourceType\": \"namespaces/eventhubs/consumergroups\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-11-01\",\r\n \"2021-06-01-preview\",\r\n \"2021-01-01-preview\",\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 },\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 \"2021-11-01\",\r\n \"2021-06-01-preview\",\r\n \"2021-01-01-preview\",\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 },\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 \"2021-11-01\",\r\n \"2021-06-01-preview\",\r\n \"2021-01-01-preview\",\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 },\r\n {\r\n \"resourceType\": \"namespaces/disasterrecoveryconfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-11-01\",\r\n \"2021-06-01-preview\",\r\n \"2021-01-01-preview\",\r\n \"2018-01-01-preview\",\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 \"2021-11-01\",\r\n \"2021-06-01-preview\",\r\n \"2021-01-01-preview\",\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 },\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/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/Default-EventHub-7430?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlZ3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNzQzMD9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"South Central US\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "dceeb4b2-7b71-40d3-b9b0-0940a1b33384" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "38" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 15 Nov 2021 02:54:17 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-request-id": [ + "a07e1e86-35bf-4131-a77a-348f4ac74d34" + ], + "x-ms-correlation-request-id": [ + "a07e1e86-35bf-4131-a77a-348f4ac74d34" + ], + "x-ms-routing-request-id": [ + "SOUTHINDIA:20211115T025418Z:a07e1e86-35bf-4131-a77a-348f4ac74d34" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "203" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-7430\",\r\n \"name\": \"Default-EventHub-7430\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-7430/providers/Microsoft.EventHub/namespaces/sdk-NS-6313?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNzQzMC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTYzMTM/YXBpLXZlcnNpb249MjAyMS0xMS0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\"\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": [ + "86572f4e-c628-40a9-849e-5774cc1bae4a" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "169" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 15 Nov 2021 02:54:27 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "a9e810c3-e9e2-4450-b88c-0b90376b30bb_M0CH3_M0CH3" + ], + "Server-SB": [ + "Service-Bus-Resource-Provider/CH3" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "49" + ], + "x-ms-correlation-request-id": [ + "7e3abbff-c070-4294-b197-ab6054f1f8fc" + ], + "x-ms-routing-request-id": [ + "SOUTHINDIA:20211115T025428Z:7e3abbff-c070-4294-b197-ab6054f1f8fc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "736" + ], + "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-7430/providers/Microsoft.EventHub/namespaces/sdk-NS-6313\",\r\n \"name\": \"sdk-NS-6313\",\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 \"disableLocalAuth\": false,\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-6313\",\r\n \"createdAt\": \"2021-11-15T02:54:25.82Z\",\r\n \"updatedAt\": \"2021-11-15T02:54:25.82Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-6313.servicebus.windows.net:443/\",\r\n \"status\": \"Activating\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-7430/providers/Microsoft.EventHub/namespaces/sdk-NS-6313?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNzQzMC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTYzMTM/YXBpLXZlcnNpb249MjAyMS0xMS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 15 Nov 2021 02:54:57 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "a8d4a648-9f38-4394-8065-52ce90ae04ed_M0CH3_M0CH3" + ], + "Server-SB": [ + "Service-Bus-Resource-Provider/CH3" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11990" + ], + "x-ms-correlation-request-id": [ + "d6790cbc-4dbd-4e93-be9f-f6f76c2324e1" + ], + "x-ms-routing-request-id": [ + "SOUTHINDIA:20211115T025458Z:d6790cbc-4dbd-4e93-be9f-f6f76c2324e1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "736" + ], + "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-7430/providers/Microsoft.EventHub/namespaces/sdk-NS-6313\",\r\n \"name\": \"sdk-NS-6313\",\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 \"disableLocalAuth\": false,\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-6313\",\r\n \"createdAt\": \"2021-11-15T02:54:25.82Z\",\r\n \"updatedAt\": \"2021-11-15T02:54:25.82Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-6313.servicebus.windows.net:443/\",\r\n \"status\": \"Activating\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-7430/providers/Microsoft.EventHub/namespaces/sdk-NS-6313?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNzQzMC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTYzMTM/YXBpLXZlcnNpb249MjAyMS0xMS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 15 Nov 2021 02:55:28 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "51a1e5f9-4008-4d62-a4ac-1914364ba5f3_M0CH3_M0CH3" + ], + "Server-SB": [ + "Service-Bus-Resource-Provider/CH3" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11989" + ], + "x-ms-correlation-request-id": [ + "740639e3-583e-48d3-8a82-c477a42942fd" + ], + "x-ms-routing-request-id": [ + "SOUTHINDIA:20211115T025529Z:740639e3-583e-48d3-8a82-c477a42942fd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "734" + ], + "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-7430/providers/Microsoft.EventHub/namespaces/sdk-NS-6313\",\r\n \"name\": \"sdk-NS-6313\",\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 \"disableLocalAuth\": false,\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-6313\",\r\n \"createdAt\": \"2021-11-15T02:54:25.82Z\",\r\n \"updatedAt\": \"2021-11-15T02:55:13.54Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-6313.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-7430/providers/Microsoft.EventHub/namespaces/sdk-NS-6313/schemagroups/sdk-Schema-5262?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNzQzMC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTYzMTMvc2NoZW1hZ3JvdXBzL3Nkay1TY2hlbWEtNTI2Mj9hcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"groupProperties\": {\r\n \"TestKey\": \"TestValue\",\r\n \"TestKey1\": \"TestValue1\"\r\n },\r\n \"schemaCompatibility\": \"Forward\",\r\n \"schemaType\": \"Avro\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "10f10f0f-84bd-4de1-b600-2cb33196b9e5" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "190" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 15 Nov 2021 02:55:36 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "4597396f-575e-4a9c-814e-2ce1e0de3241_M0CH3_M0CH3" + ], + "Server-SB": [ + "Service-Bus-Resource-Provider/CH3" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "c012db53-344f-44b0-95b8-4fcc34ec5df5" + ], + "x-ms-routing-request-id": [ + "SOUTHINDIA:20211115T025536Z:c012db53-344f-44b0-95b8-4fcc34ec5df5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "556" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-7430/providers/Microsoft.EventHub/namespaces/sdk-NS-6313/schemagroups/sdk-Schema-5262\",\r\n \"name\": \"sdk-Schema-5262\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/SchemaGroups\",\r\n \"location\": \"South Central US\",\r\n \"properties\": {\r\n \"updatedAtUtc\": \"2021-11-15T02:55:36.4219187Z\",\r\n \"createdAtUtc\": \"2021-11-15T02:55:36.4219187Z\",\r\n \"eTag\": \"1db2453c-2a13-48fe-a3dc-e83c4bd59d70\",\r\n \"groupProperties\": {\r\n \"testKey\": \"TestValue\",\r\n \"testKey1\": \"TestValue1\"\r\n },\r\n \"schemaCompatibility\": \"Forward\",\r\n \"schemaType\": \"Avro\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-7430/providers/Microsoft.EventHub/namespaces/sdk-NS-2219?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNzQzMC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTIyMTk/YXBpLXZlcnNpb249MjAyMS0xMS0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\"\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": [ + "d625cdb0-add8-48a2-ac56-239d95ac97ff" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "169" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 15 Nov 2021 02:55:44 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "89fc0894-9831-4013-a2a4-09bf2ec21134_M0CH3_M0CH3" + ], + "Server-SB": [ + "Service-Bus-Resource-Provider/CH3" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "48" + ], + "x-ms-correlation-request-id": [ + "2213d6e6-5c45-46f3-96ae-d1b869f5756f" + ], + "x-ms-routing-request-id": [ + "SOUTHINDIA:20211115T025544Z:2213d6e6-5c45-46f3-96ae-d1b869f5756f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "736" + ], + "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-7430/providers/Microsoft.EventHub/namespaces/sdk-NS-2219\",\r\n \"name\": \"sdk-NS-2219\",\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 \"disableLocalAuth\": false,\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-2219\",\r\n \"createdAt\": \"2021-11-15T02:55:42.44Z\",\r\n \"updatedAt\": \"2021-11-15T02:55:42.44Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-2219.servicebus.windows.net:443/\",\r\n \"status\": \"Activating\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-7430/providers/Microsoft.EventHub/namespaces/sdk-NS-2219?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNzQzMC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTIyMTk/YXBpLXZlcnNpb249MjAyMS0xMS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 15 Nov 2021 02:56:15 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "c5fb87cd-9cdc-478c-bd1a-c0d7b9a345f7_M1CH3_M1CH3" + ], + "Server-SB": [ + "Service-Bus-Resource-Provider/CH3" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11988" + ], + "x-ms-correlation-request-id": [ + "46ff9e65-9de2-4f68-a5c7-9ce7ba794470" + ], + "x-ms-routing-request-id": [ + "SOUTHINDIA:20211115T025616Z:46ff9e65-9de2-4f68-a5c7-9ce7ba794470" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "736" + ], + "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-7430/providers/Microsoft.EventHub/namespaces/sdk-NS-2219\",\r\n \"name\": \"sdk-NS-2219\",\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 \"disableLocalAuth\": false,\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-2219\",\r\n \"createdAt\": \"2021-11-15T02:55:42.44Z\",\r\n \"updatedAt\": \"2021-11-15T02:55:42.44Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-2219.servicebus.windows.net:443/\",\r\n \"status\": \"Activating\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-7430/providers/Microsoft.EventHub/namespaces/sdk-NS-2219?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNzQzMC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTIyMTk/YXBpLXZlcnNpb249MjAyMS0xMS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 15 Nov 2021 02:56:45 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "00ba1fe9-52db-4f81-bd09-b3f7158dbd3d_M1CH3_M1CH3" + ], + "Server-SB": [ + "Service-Bus-Resource-Provider/CH3" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11987" + ], + "x-ms-correlation-request-id": [ + "2d299f22-e1b0-4f4e-a7cb-f06f15e8b4fd" + ], + "x-ms-routing-request-id": [ + "SOUTHINDIA:20211115T025646Z:2d299f22-e1b0-4f4e-a7cb-f06f15e8b4fd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "735" + ], + "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-7430/providers/Microsoft.EventHub/namespaces/sdk-NS-2219\",\r\n \"name\": \"sdk-NS-2219\",\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 \"disableLocalAuth\": false,\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-2219\",\r\n \"createdAt\": \"2021-11-15T02:55:42.44Z\",\r\n \"updatedAt\": \"2021-11-15T02:56:28.787Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-2219.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-7430/providers/Microsoft.EventHub/namespaces/sdk-NS-2219/schemagroups/sdk-Schema-6267?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNzQzMC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTIyMTkvc2NoZW1hZ3JvdXBzL3Nkay1TY2hlbWEtNjI2Nz9hcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"schemaCompatibility\": \"Backward\",\r\n \"schemaType\": \"Avro\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c5e52574-2be2-4cbe-9011-85d86e046a47" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "94" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 15 Nov 2021 02:56:47 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "c208a297-600a-4f27-b129-43b34d12e2a7_M1CH3_M1CH3" + ], + "Server-SB": [ + "Service-Bus-Resource-Provider/CH3" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "6c6e5a75-45c9-4f76-9ef6-66c02bd6e229" + ], + "x-ms-routing-request-id": [ + "SOUTHINDIA:20211115T025647Z:6c6e5a75-45c9-4f76-9ef6-66c02bd6e229" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "512" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-7430/providers/Microsoft.EventHub/namespaces/sdk-NS-2219/schemagroups/sdk-Schema-6267\",\r\n \"name\": \"sdk-Schema-6267\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/SchemaGroups\",\r\n \"location\": \"South Central US\",\r\n \"properties\": {\r\n \"updatedAtUtc\": \"2021-11-15T02:56:47.4232027Z\",\r\n \"createdAtUtc\": \"2021-11-15T02:56:47.4232027Z\",\r\n \"eTag\": \"c7c59a61-fcb1-483c-b271-fa7cfbfe65ce\",\r\n \"groupProperties\": {},\r\n \"schemaCompatibility\": \"Backward\",\r\n \"schemaType\": \"Avro\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-7430/providers/Microsoft.EventHub/namespaces/sdk-NS-9037?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNzQzMC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTkwMzc/YXBpLXZlcnNpb249MjAyMS0xMS0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\"\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": [ + "2a108d5e-2a73-4c32-85af-a021842eab13" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "169" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 15 Nov 2021 02:56:53 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "db41c7aa-1e28-4b5a-808e-48b2ed9f0717_M1CH3_M1CH3" + ], + "Server-SB": [ + "Service-Bus-Resource-Provider/CH3" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "47" + ], + "x-ms-correlation-request-id": [ + "dd4b57a3-64a8-4d0a-b5c7-bdd4bfef800a" + ], + "x-ms-routing-request-id": [ + "SOUTHINDIA:20211115T025654Z:dd4b57a3-64a8-4d0a-b5c7-bdd4bfef800a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "736" + ], + "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-7430/providers/Microsoft.EventHub/namespaces/sdk-NS-9037\",\r\n \"name\": \"sdk-NS-9037\",\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 \"disableLocalAuth\": false,\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-9037\",\r\n \"createdAt\": \"2021-11-15T02:56:51.89Z\",\r\n \"updatedAt\": \"2021-11-15T02:56:51.89Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-9037.servicebus.windows.net:443/\",\r\n \"status\": \"Activating\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-7430/providers/Microsoft.EventHub/namespaces/sdk-NS-9037?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNzQzMC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTkwMzc/YXBpLXZlcnNpb249MjAyMS0xMS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 15 Nov 2021 02:57:23 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "7aaa1306-430e-4b14-b9aa-0fab4cc7f3ca_M1CH3_M1CH3" + ], + "Server-SB": [ + "Service-Bus-Resource-Provider/CH3" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11986" + ], + "x-ms-correlation-request-id": [ + "89e30498-2d80-4a3d-a01a-be89734fec19" + ], + "x-ms-routing-request-id": [ + "SOUTHINDIA:20211115T025724Z:89e30498-2d80-4a3d-a01a-be89734fec19" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "736" + ], + "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-7430/providers/Microsoft.EventHub/namespaces/sdk-NS-9037\",\r\n \"name\": \"sdk-NS-9037\",\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 \"disableLocalAuth\": false,\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-9037\",\r\n \"createdAt\": \"2021-11-15T02:56:51.89Z\",\r\n \"updatedAt\": \"2021-11-15T02:56:51.89Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-9037.servicebus.windows.net:443/\",\r\n \"status\": \"Activating\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-7430/providers/Microsoft.EventHub/namespaces/sdk-NS-9037?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNzQzMC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTkwMzc/YXBpLXZlcnNpb249MjAyMS0xMS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 15 Nov 2021 02:57:54 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "8458e913-40d3-4940-ad89-5c1fabb51c9a_M1CH3_M1CH3" + ], + "Server-SB": [ + "Service-Bus-Resource-Provider/CH3" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11985" + ], + "x-ms-correlation-request-id": [ + "15563403-63d8-42f3-94b1-cbe459c3e89e" + ], + "x-ms-routing-request-id": [ + "SOUTHINDIA:20211115T025754Z:15563403-63d8-42f3-94b1-cbe459c3e89e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "735" + ], + "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-7430/providers/Microsoft.EventHub/namespaces/sdk-NS-9037\",\r\n \"name\": \"sdk-NS-9037\",\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 \"disableLocalAuth\": false,\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-9037\",\r\n \"createdAt\": \"2021-11-15T02:56:51.89Z\",\r\n \"updatedAt\": \"2021-11-15T02:57:39.853Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-9037.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-7430/providers/Microsoft.EventHub/namespaces/sdk-NS-9037/schemagroups/sdk-Schema-957?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNzQzMC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTkwMzcvc2NoZW1hZ3JvdXBzL3Nkay1TY2hlbWEtOTU3P2FwaS12ZXJzaW9uPTIwMjEtMTEtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"schemaCompatibility\": \"None\",\r\n \"schemaType\": \"Avro\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "37d03b90-3390-46e5-b2c2-bb962a756c93" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "90" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 15 Nov 2021 02:57:55 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "c76555d6-c142-42db-8011-f081f1170b89_M1CH3_M1CH3" + ], + "Server-SB": [ + "Service-Bus-Resource-Provider/CH3" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-correlation-request-id": [ + "6792764e-4cfb-45e9-bb88-323a9015992a" + ], + "x-ms-routing-request-id": [ + "SOUTHINDIA:20211115T025756Z:6792764e-4cfb-45e9-bb88-323a9015992a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "506" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-7430/providers/Microsoft.EventHub/namespaces/sdk-NS-9037/schemagroups/sdk-Schema-957\",\r\n \"name\": \"sdk-Schema-957\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/SchemaGroups\",\r\n \"location\": \"South Central US\",\r\n \"properties\": {\r\n \"updatedAtUtc\": \"2021-11-15T02:57:56.1838616Z\",\r\n \"createdAtUtc\": \"2021-11-15T02:57:56.1838616Z\",\r\n \"eTag\": \"b3d59a74-a442-4ace-afd7-ba235a411c20\",\r\n \"groupProperties\": {},\r\n \"schemaCompatibility\": \"None\",\r\n \"schemaType\": \"Avro\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-7430/providers/Microsoft.EventHub/namespaces/sdk-NS-6313/schemagroups/sdk-Schema-5262?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNzQzMC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTYzMTMvc2NoZW1hZ3JvdXBzL3Nkay1TY2hlbWEtNTI2Mj9hcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7d181fe3-c082-40f4-9e19-52b3d7205e45" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 15 Nov 2021 02:57:56 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "ada53c67-d7be-43ae-bb96-c259ac95753c_M1CH3_M1CH3" + ], + "Server-SB": [ + "Service-Bus-Resource-Provider/CH3" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11984" + ], + "x-ms-correlation-request-id": [ + "18a59691-c2e4-4adc-8a5e-79d207cfec2a" + ], + "x-ms-routing-request-id": [ + "SOUTHINDIA:20211115T025757Z:18a59691-c2e4-4adc-8a5e-79d207cfec2a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "556" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-7430/providers/Microsoft.EventHub/namespaces/sdk-NS-6313/schemagroups/sdk-Schema-5262\",\r\n \"name\": \"sdk-Schema-5262\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/SchemaGroups\",\r\n \"location\": \"South Central US\",\r\n \"properties\": {\r\n \"updatedAtUtc\": \"2021-11-15T02:55:36.4219187Z\",\r\n \"createdAtUtc\": \"2021-11-15T02:55:36.4219187Z\",\r\n \"eTag\": \"1db2453c-2a13-48fe-a3dc-e83c4bd59d70\",\r\n \"groupProperties\": {\r\n \"testKey\": \"TestValue\",\r\n \"testKey1\": \"TestValue1\"\r\n },\r\n \"schemaCompatibility\": \"Forward\",\r\n \"schemaType\": \"Avro\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-7430/providers/Microsoft.EventHub/namespaces/sdk-NS-2219/schemagroups/sdk-Schema-6267?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNzQzMC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTIyMTkvc2NoZW1hZ3JvdXBzL3Nkay1TY2hlbWEtNjI2Nz9hcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9a6490b9-064d-44ad-a5c5-9154523131e6" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 15 Nov 2021 02:57:57 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "c8be5ced-f4e2-49d6-a4c6-a9c82b766273_M1CH3_M1CH3" + ], + "Server-SB": [ + "Service-Bus-Resource-Provider/CH3" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11983" + ], + "x-ms-correlation-request-id": [ + "a5aa858f-723f-43d7-a71e-c232e142375a" + ], + "x-ms-routing-request-id": [ + "SOUTHINDIA:20211115T025758Z:a5aa858f-723f-43d7-a71e-c232e142375a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "512" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-7430/providers/Microsoft.EventHub/namespaces/sdk-NS-2219/schemagroups/sdk-Schema-6267\",\r\n \"name\": \"sdk-Schema-6267\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/SchemaGroups\",\r\n \"location\": \"South Central US\",\r\n \"properties\": {\r\n \"updatedAtUtc\": \"2021-11-15T02:56:47.4232027Z\",\r\n \"createdAtUtc\": \"2021-11-15T02:56:47.4232027Z\",\r\n \"eTag\": \"c7c59a61-fcb1-483c-b271-fa7cfbfe65ce\",\r\n \"groupProperties\": {},\r\n \"schemaCompatibility\": \"Backward\",\r\n \"schemaType\": \"Avro\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-7430/providers/Microsoft.EventHub/namespaces/sdk-NS-9037/schemagroups/sdk-Schema-957?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNzQzMC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTkwMzcvc2NoZW1hZ3JvdXBzL3Nkay1TY2hlbWEtOTU3P2FwaS12ZXJzaW9uPTIwMjEtMTEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "afcf96ff-4f02-47c9-8ac3-f2de242b5f78" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 15 Nov 2021 02:57:58 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "930a51e7-df30-4198-8ddf-1a22dd562639_M1CH3_M1CH3" + ], + "Server-SB": [ + "Service-Bus-Resource-Provider/CH3" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11982" + ], + "x-ms-correlation-request-id": [ + "32532f01-e834-43f2-a138-ce5f36cf3fd2" + ], + "x-ms-routing-request-id": [ + "SOUTHINDIA:20211115T025759Z:32532f01-e834-43f2-a138-ce5f36cf3fd2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "506" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-7430/providers/Microsoft.EventHub/namespaces/sdk-NS-9037/schemagroups/sdk-Schema-957\",\r\n \"name\": \"sdk-Schema-957\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/SchemaGroups\",\r\n \"location\": \"South Central US\",\r\n \"properties\": {\r\n \"updatedAtUtc\": \"2021-11-15T02:57:56.1838616Z\",\r\n \"createdAtUtc\": \"2021-11-15T02:57:56.1838616Z\",\r\n \"eTag\": \"b3d59a74-a442-4ace-afd7-ba235a411c20\",\r\n \"groupProperties\": {},\r\n \"schemaCompatibility\": \"None\",\r\n \"schemaType\": \"Avro\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-7430/providers/Microsoft.EventHub/namespaces/sdk-NS-2219/schemagroups?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNzQzMC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTIyMTkvc2NoZW1hZ3JvdXBzP2FwaS12ZXJzaW9uPTIwMjEtMTEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "38f97b85-d379-493c-8176-e370ad89f294" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 15 Nov 2021 02:57:59 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-inline-count": [ + "1" + ], + "x-ms-request-id": [ + "ccefdf98-4107-4015-87f5-84153396f722_M1CH3_M1CH3" + ], + "Server-SB": [ + "Service-Bus-Resource-Provider/CH3" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11981" + ], + "x-ms-correlation-request-id": [ + "1f2dfe5f-d510-4516-882c-be3d24ec55dd" + ], + "x-ms-routing-request-id": [ + "SOUTHINDIA:20211115T025800Z:1f2dfe5f-d510-4516-882c-be3d24ec55dd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "524" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-7430/providers/Microsoft.EventHub/namespaces/sdk-NS-2219/schemagroups/sdk-Schema-6267\",\r\n \"name\": \"sdk-Schema-6267\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/SchemaGroups\",\r\n \"location\": \"South Central US\",\r\n \"properties\": {\r\n \"updatedAtUtc\": \"2021-11-15T02:56:47.4232027Z\",\r\n \"createdAtUtc\": \"2021-11-15T02:56:47.4232027Z\",\r\n \"eTag\": \"c7c59a61-fcb1-483c-b271-fa7cfbfe65ce\",\r\n \"groupProperties\": {},\r\n \"schemaCompatibility\": \"Backward\",\r\n \"schemaType\": \"Avro\"\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-7430/providers/Microsoft.EventHub/namespaces/sdk-NS-6313/schemagroups/sdk-Schema-5262?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNzQzMC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTYzMTMvc2NoZW1hZ3JvdXBzL3Nkay1TY2hlbWEtNTI2Mj9hcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "cc8f5a7a-7d3e-4b01-9899-46d8c07e8f20" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 15 Nov 2021 02:58:00 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "4e63f640-26e5-4423-89d8-96a7f76d947f_M1CH3_M1CH3" + ], + "Server-SB": [ + "Service-Bus-Resource-Provider/CH3" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14997" + ], + "x-ms-correlation-request-id": [ + "b8523b0f-7cd3-451f-92e0-36ce5f3bff21" + ], + "x-ms-routing-request-id": [ + "SOUTHINDIA:20211115T025801Z:b8523b0f-7cd3-451f-92e0-36ce5f3bff21" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "", + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-7430/providers/Microsoft.EventHub/namespaces/sdk-NS-2219/schemagroups/sdk-Schema-6267?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNzQzMC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTIyMTkvc2NoZW1hZ3JvdXBzL3Nkay1TY2hlbWEtNjI2Nz9hcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "de9dd1a7-1a0c-49f7-a028-4d32c8bac53b" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 15 Nov 2021 02:58:01 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "4f18869a-59cb-4b55-ac31-148b0963e8cd_M1CH3_M1CH3" + ], + "Server-SB": [ + "Service-Bus-Resource-Provider/CH3" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14996" + ], + "x-ms-correlation-request-id": [ + "f9b3da67-fb67-46ef-a4b6-159b24a49e61" + ], + "x-ms-routing-request-id": [ + "SOUTHINDIA:20211115T025802Z:f9b3da67-fb67-46ef-a4b6-159b24a49e61" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "", + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-7430/providers/Microsoft.EventHub/namespaces/sdk-NS-9037/schemagroups/sdk-Schema-957?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNzQzMC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTkwMzcvc2NoZW1hZ3JvdXBzL3Nkay1TY2hlbWEtOTU3P2FwaS12ZXJzaW9uPTIwMjEtMTEtMDE=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "71b202f7-5bcb-4a4a-8f48-6e3ade7c52f4" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 15 Nov 2021 02:58:02 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "e2e4124b-e926-4609-b9fc-36c73d2ca392_M1CH3_M1CH3" + ], + "Server-SB": [ + "Service-Bus-Resource-Provider/CH3" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14995" + ], + "x-ms-correlation-request-id": [ + "a17bd39b-400d-4e3c-bad0-144f00aa8b7a" + ], + "x-ms-routing-request-id": [ + "SOUTHINDIA:20211115T025803Z:a17bd39b-400d-4e3c-bad0-144f00aa8b7a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "", + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-7430/providers/Microsoft.EventHub/namespaces/sdk-NS-2219?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNzQzMC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTIyMTk/YXBpLXZlcnNpb249MjAyMS0xMS0wMQ==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "42ed208c-d6da-45f8-86e0-5e0517706e06" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 15 Nov 2021 02:58:09 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-7430/providers/Microsoft.EventHub/namespaces/sdk-NS-2219/operationresults/sdk-NS-2219?api-version=2021-11-01" + ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "fcc97824-771d-477a-872f-dde1a105274a_M1CH3_M1CH3" + ], + "Server-SB": [ + "Service-Bus-Resource-Provider/CH3" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14994" + ], + "x-ms-correlation-request-id": [ + "a2686d2b-6788-44c2-a2b6-38ae3f03eaf7" + ], + "x-ms-routing-request-id": [ + "SOUTHINDIA:20211115T025809Z:a2686d2b-6788-44c2-a2b6-38ae3f03eaf7" + ], + "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-7430/providers/Microsoft.EventHub/namespaces/sdk-NS-6313?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNzQzMC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTYzMTM/YXBpLXZlcnNpb249MjAyMS0xMS0wMQ==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7e2c9e67-3f87-4a0c-82a4-4b353139ba17" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 15 Nov 2021 02:58:09 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-7430/providers/Microsoft.EventHub/namespaces/sdk-NS-6313/operationresults/sdk-NS-6313?api-version=2021-11-01" + ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "71c8fe93-7825-4e1f-9eae-340437585911_M6CH3_M6CH3" + ], + "Server-SB": [ + "Service-Bus-Resource-Provider/CH3" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14996" + ], + "x-ms-correlation-request-id": [ + "2aa6d7e6-52d2-4513-9075-51b831c5eecf" + ], + "x-ms-routing-request-id": [ + "SOUTHINDIA:20211115T025810Z:2aa6d7e6-52d2-4513-9075-51b831c5eecf" + ], + "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-7430/providers/Microsoft.EventHub/namespaces/sdk-NS-9037?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNzQzMC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTkwMzc/YXBpLXZlcnNpb249MjAyMS0xMS0wMQ==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e6f748ab-27aa-4851-8f05-0f5e85160cb7" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/3.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 15 Nov 2021 02:58:09 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-7430/providers/Microsoft.EventHub/namespaces/sdk-NS-9037/operationresults/sdk-NS-9037?api-version=2021-11-01" + ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "daf1f60a-f482-48d0-b6db-40e935429819_M7CH3_M7CH3" + ], + "Server-SB": [ + "Service-Bus-Resource-Provider/CH3" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-correlation-request-id": [ + "3a221830-4297-47ae-9351-1a9cbf8f98a3" + ], + "x-ms-routing-request-id": [ + "SOUTHINDIA:20211115T025810Z:3a221830-4297-47ae-9351-1a9cbf8f98a3" + ], + "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-7430?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlZ3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNzQzMD9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "261bdbd0-424a-4364-bf6b-1f7619e3ee2f" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000.", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 15 Nov 2021 02:58:14 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1ERUZBVUxUOjJERVZFTlRIVUI6MkQ3NDMwLVNPVVRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJzb3V0aGNlbnRyYWx1cyJ9?api-version=2015-11-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-request-id": [ + "0ec68428-e142-4727-be1a-5f82f31c4c65" + ], + "x-ms-correlation-request-id": [ + "0ec68428-e142-4727-be1a-5f82f31c4c65" + ], + "x-ms-routing-request-id": [ + "SOUTHINDIA:20211115T025814Z:0ec68428-e142-4727-be1a-5f82f31c4c65" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + } + ], + "Names": { + "SchemaGroupCreateUpdateDelete": [ + "Default-EventHub-7430", + "sdk-NS-6313", + "sdk-Schema-5262", + "sdk-NS-2219", + "sdk-Schema-6267", + "sdk-NS-9037", + "sdk-Schema-957" + ] + }, + "Variables": { + "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 5f622ccd5c16..3ffbc25c8f62 100644 --- a/sdk/eventhub/Microsoft.Azure.Management.EventHub/tests/TestHelper/EventHubManagementHelper.cs +++ b/sdk/eventhub/Microsoft.Azure.Management.EventHub/tests/TestHelper/EventHubManagementHelper.cs @@ -28,6 +28,7 @@ public static class EventHubManagementHelper internal const string ConsumerGroupPrefix = "sdk-ConsumerGroup-"; internal const string DisasterRecoveryPrefix = "sdk-DisasterRecovery-"; internal const string KeyVaultePrefix = "sdk-KeyVault-"; + internal const string SchemaPrefix = "sdk-Schema-"; internal const string ResourceGroupCluster = "v-ajnavtest"; internal const string TestClusterName = "PMTestCluster1"; diff --git a/sdk/eventhub/Microsoft.Azure.Management.EventHub/tests/Tests/ScenarioTests.SchemaRegistryTests.CRUD.cs b/sdk/eventhub/Microsoft.Azure.Management.EventHub/tests/Tests/ScenarioTests.SchemaRegistryTests.CRUD.cs new file mode 100644 index 000000000000..66328672ef4f --- /dev/null +++ b/sdk/eventhub/Microsoft.Azure.Management.EventHub/tests/Tests/ScenarioTests.SchemaRegistryTests.CRUD.cs @@ -0,0 +1,151 @@ +// 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.Rest.Azure; + using Microsoft.Rest.ClientRuntime.Azure.TestFramework; + using TestHelper; + using Xunit; + public partial class ScenarioTests + { + [Fact] + public void SchemaGroupCreateUpdateDelete() + { + using (MockContext context = MockContext.Start(this.GetType())) + { + InitializeClients(context); + var location = "South Central US"; + this.ResourceManagementClient.GetLocationFromProvider(); + var resourceGroup = string.Empty; + if (string.IsNullOrWhiteSpace(resourceGroup)) + { + resourceGroup = TestUtilities.GenerateName(EventHubManagementHelper.ResourceGroupPrefix); + this.ResourceManagementClient.TryRegisterResourceGroup(location, resourceGroup); + } + var namespaceName = TestUtilities.GenerateName(EventHubManagementHelper.NamespacePrefix); try + { + 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"} + } + }); + Assert.NotNull(createNamespaceResponse); + Assert.Equal(createNamespaceResponse.Name, namespaceName); + TestUtilities.Wait(TimeSpan.FromSeconds(5)); // Create a SchemaGroup + var schemaName = TestUtilities.GenerateName(EventHubManagementHelper.SchemaPrefix); + var createSchemaGroupResponse = this.EventHubManagementClient.SchemaRegistry.CreateOrUpdate(resourceGroup, namespaceName, schemaName, + new SchemaGroup() + { + SchemaType = SchemaType.Avro, + SchemaCompatibility = SchemaCompatibility.Forward, + GroupProperties = new Dictionary() { { "TestKey", "TestValue" }, { "TestKey1", "TestValue1" } } + }); + Assert.NotNull(createSchemaGroupResponse); + Assert.Equal(createSchemaGroupResponse.Name, schemaName); + Assert.Equal(createSchemaGroupResponse.SchemaCompatibility, SchemaCompatibility.Forward); + Assert.Equal(createSchemaGroupResponse.SchemaType, SchemaType.Avro); + Assert.True(createSchemaGroupResponse.GroupProperties.Count == 2); + // Namesapce1 + var namespaceName1 = TestUtilities.GenerateName(EventHubManagementHelper.NamespacePrefix); + var createPremiumNamespaceResponse = this.EventHubManagementClient.Namespaces.CreateOrUpdate(resourceGroup, namespaceName1, + new EHNamespace() + { + Location = location, + Sku = new Sku + { + Name = SkuName.Standard, + Tier = SkuTier.Standard + }, + Tags = new Dictionary() + { + {"tag1", "value1"}, + {"tag2", "value2"} + } + }); + var schemaName1 = TestUtilities.GenerateName(EventHubManagementHelper.SchemaPrefix); var createSchemaGroupResponse1 = this.EventHubManagementClient.SchemaRegistry.CreateOrUpdate(resourceGroup, namespaceName1, schemaName1, + new SchemaGroup() + { + SchemaType = SchemaType.Avro, + SchemaCompatibility = SchemaCompatibility.Backward + }); Assert.NotNull(createSchemaGroupResponse1); + Assert.Equal(createSchemaGroupResponse1.Name, schemaName1); + Assert.Equal(createSchemaGroupResponse1.SchemaCompatibility, SchemaCompatibility.Backward); + Assert.Equal(createSchemaGroupResponse1.SchemaType, SchemaType.Avro); var namespaceName2 = TestUtilities.GenerateName(EventHubManagementHelper.NamespacePrefix); + var createNamespaceResponse2 = this.EventHubManagementClient.Namespaces.CreateOrUpdate(resourceGroup, namespaceName2, + new EHNamespace() + { + Location = location, + Sku = new Sku + { + Name = SkuName.Standard, + Tier = SkuTier.Standard + }, + Tags = new Dictionary() + { + {"tag1", "value1"}, + {"tag2", "value2"} + } + }); + var schemaName2 = TestUtilities.GenerateName(EventHubManagementHelper.SchemaPrefix); var createSchemaGroupResponse2 = this.EventHubManagementClient.SchemaRegistry.CreateOrUpdate(resourceGroup, namespaceName2, schemaName2, + new SchemaGroup() + { + SchemaType = SchemaType.Avro, + SchemaCompatibility = SchemaCompatibility.None + }); Assert.NotNull(createSchemaGroupResponse2); + Assert.Equal(createSchemaGroupResponse2.Name, schemaName2); + Assert.Equal(createSchemaGroupResponse2.SchemaCompatibility, SchemaCompatibility.None); + Assert.Equal(createSchemaGroupResponse2.SchemaType, SchemaType.Avro); + // Get the created Schemagroup + var getSchemagroupResponse = EventHubManagementClient.SchemaRegistry.Get(resourceGroup, namespaceName, schemaName); + Assert.NotNull(getSchemagroupResponse); + Assert.Equal(getSchemagroupResponse.Name, schemaName); + Assert.Equal(getSchemagroupResponse.SchemaCompatibility, SchemaCompatibility.Forward); + Assert.Equal(getSchemagroupResponse.SchemaType, SchemaType.Avro); // Get the created Schemagroup + var getSchemagroupResponse1 = EventHubManagementClient.SchemaRegistry.Get(resourceGroup, namespaceName1, schemaName1); + Assert.NotNull(getSchemagroupResponse1); + Assert.Equal(getSchemagroupResponse1.Name, schemaName1); + Assert.Equal(getSchemagroupResponse1.SchemaCompatibility, SchemaCompatibility.Backward); + Assert.Equal(getSchemagroupResponse1.SchemaType, SchemaType.Avro); // Get the created Schemagroup + var getSchemagroupResponse2 = EventHubManagementClient.SchemaRegistry.Get(resourceGroup, namespaceName2, schemaName2); + Assert.NotNull(getSchemagroupResponse2); + Assert.Equal(getSchemagroupResponse2.Name, schemaName2); + Assert.Equal(getSchemagroupResponse2.SchemaCompatibility, SchemaCompatibility.None); + Assert.Equal(getSchemagroupResponse2.SchemaType, SchemaType.Avro); // Get all Event Hubs for a given NameSpace + var getListSchemaGroupResponse = EventHubManagementClient.SchemaRegistry.ListByNamespace(resourceGroup, namespaceName1); + Assert.NotNull(getListSchemaGroupResponse); + Assert.True(getListSchemaGroupResponse.Count() == 1); // Delete the SchemaGroups + EventHubManagementClient.SchemaRegistry.Delete(resourceGroup, namespaceName, schemaName); + EventHubManagementClient.SchemaRegistry.Delete(resourceGroup, namespaceName1, schemaName1); + EventHubManagementClient.SchemaRegistry.Delete(resourceGroup, namespaceName2, schemaName2); TestUtilities.Wait(TimeSpan.FromSeconds(5)); // Delete namespace and check for the NotFound exception + EventHubManagementClient.Namespaces.DeleteWithHttpMessagesAsync(resourceGroup, namespaceName, null, default(CancellationToken)).ConfigureAwait(false); + EventHubManagementClient.Namespaces.DeleteWithHttpMessagesAsync(resourceGroup, namespaceName1, null, default(CancellationToken)).ConfigureAwait(false); + EventHubManagementClient.Namespaces.DeleteWithHttpMessagesAsync(resourceGroup, namespaceName2, null, default(CancellationToken)).ConfigureAwait(false); + } + finally + { + //Delete Resource Group + this.ResourceManagementClient.ResourceGroups.DeleteWithHttpMessagesAsync(resourceGroup, null, default(CancellationToken)).ConfigureAwait(false); + Console.WriteLine("End of SchemaGrouptest"); + } + } + } + } +} +