diff --git a/eng/mgmt/mgmtmetadata/iothub_resource-manager.txt b/eng/mgmt/mgmtmetadata/iothub_resource-manager.txt index 73be6ed6b7329..23476c5cf5b40 100644 --- a/eng/mgmt/mgmtmetadata/iothub_resource-manager.txt +++ b/eng/mgmt/mgmtmetadata/iothub_resource-manager.txt @@ -3,12 +3,12 @@ AutoRest installed successfully. Commencing code generation Generating CSharp code Executing AutoRest command -cmd.exe /c autorest.cmd https://github.com/Azure/azure-rest-api-specs/blob/master/specification/iothub/resource-manager/readme.md --csharp --version=v2 --reflect-api-versions --tag=package-2020-03 --csharp-sdks-folder=C:\code\Azure\asfn1\sdk -2021-05-05 18:24:00 UTC +cmd.exe /c autorest.cmd https://github.com/Azure/azure-rest-api-specs/blob/master/specification/iothub/resource-manager/readme.md --csharp --version=v2 --reflect-api-versions --csharp-sdks-folder=C:\code\Azure\asfn1\sdk +2021-05-13 18:36:24 UTC Azure-rest-api-specs repository information GitHub fork: Azure Branch: master -Commit: a394eccc2ce26369cacbc113cf0c3a9c9501e689 +Commit: 7d4caa5e1c9996a25300b0b23ef426667e4a7bde AutoRest information Requested version: v2 Bootstrapper version: autorest@2.0.4413 diff --git a/sdk/iothub/Microsoft.Azure.Management.IotHub/AzSdk.RP.props b/sdk/iothub/Microsoft.Azure.Management.IotHub/AzSdk.RP.props index 4f4092298a4df..10603c3e613a7 100644 --- a/sdk/iothub/Microsoft.Azure.Management.IotHub/AzSdk.RP.props +++ b/sdk/iothub/Microsoft.Azure.Management.IotHub/AzSdk.RP.props @@ -1,7 +1,7 @@  - Devices_2020-03-01 + Devices_2021-03-31 $(PackageTags);$(CommonTags);$(AzureApiTag); diff --git a/sdk/iothub/Microsoft.Azure.Management.IotHub/src/Generated/CertificatesOperations.cs b/sdk/iothub/Microsoft.Azure.Management.IotHub/src/Generated/CertificatesOperations.cs index facaa50c26fdf..4c1ad03ca942c 100644 --- a/sdk/iothub/Microsoft.Azure.Management.IotHub/src/Generated/CertificatesOperations.cs +++ b/sdk/iothub/Microsoft.Azure.Management.IotHub/src/Generated/CertificatesOperations.cs @@ -473,9 +473,7 @@ internal CertificatesOperations(IotHubClient client) /// ETag of the Certificate. Do not specify for creating a brand new /// certificate. Required to update an existing certificate. /// - /// - /// base-64 representation of the X509 leaf certificate .cer file or just .pem - /// file content. + /// /// /// /// Headers that will be added to request. @@ -498,7 +496,7 @@ internal CertificatesOperations(IotHubClient client) /// /// A response object containing the response body and response headers. /// - public async Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string resourceName, string certificateName, string ifMatch = default(string), string certificate = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string resourceName, string certificateName, string ifMatch = default(string), CertificateProperties properties = default(CertificateProperties), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (Client.ApiVersion == null) { @@ -527,10 +525,10 @@ internal CertificatesOperations(IotHubClient client) throw new ValidationException(ValidationRules.Pattern, "certificateName", "^[A-Za-z0-9-._]{1,64}$"); } } - CertificateBodyDescription certificateDescription = new CertificateBodyDescription(); - if (certificate != null) + CertificateDescription certificateDescription = new CertificateDescription(); + if (properties != null) { - certificateDescription.Certificate = certificate; + certificateDescription.Properties = properties; } // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; diff --git a/sdk/iothub/Microsoft.Azure.Management.IotHub/src/Generated/CertificatesOperationsExtensions.cs b/sdk/iothub/Microsoft.Azure.Management.IotHub/src/Generated/CertificatesOperationsExtensions.cs index 7711af9c9919a..74ac5afad1f05 100644 --- a/sdk/iothub/Microsoft.Azure.Management.IotHub/src/Generated/CertificatesOperationsExtensions.cs +++ b/sdk/iothub/Microsoft.Azure.Management.IotHub/src/Generated/CertificatesOperationsExtensions.cs @@ -141,13 +141,11 @@ public static CertificateDescription Get(this ICertificatesOperations operations /// ETag of the Certificate. Do not specify for creating a brand new /// certificate. Required to update an existing certificate. /// - /// - /// base-64 representation of the X509 leaf certificate .cer file or just .pem - /// file content. + /// /// - public static CertificateDescription CreateOrUpdate(this ICertificatesOperations operations, string resourceGroupName, string resourceName, string certificateName, string ifMatch = default(string), string certificate = default(string)) + public static CertificateDescription CreateOrUpdate(this ICertificatesOperations operations, string resourceGroupName, string resourceName, string certificateName, string ifMatch = default(string), CertificateProperties properties = default(CertificateProperties)) { - return operations.CreateOrUpdateAsync(resourceGroupName, resourceName, certificateName, ifMatch, certificate).GetAwaiter().GetResult(); + return operations.CreateOrUpdateAsync(resourceGroupName, resourceName, certificateName, ifMatch, properties).GetAwaiter().GetResult(); } /// @@ -172,16 +170,14 @@ public static CertificateDescription Get(this ICertificatesOperations operations /// ETag of the Certificate. Do not specify for creating a brand new /// certificate. Required to update an existing certificate. /// - /// - /// base-64 representation of the X509 leaf certificate .cer file or just .pem - /// file content. + /// /// /// /// The cancellation token. /// - public static async Task CreateOrUpdateAsync(this ICertificatesOperations operations, string resourceGroupName, string resourceName, string certificateName, string ifMatch = default(string), string certificate = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task CreateOrUpdateAsync(this ICertificatesOperations operations, string resourceGroupName, string resourceName, string certificateName, string ifMatch = default(string), CertificateProperties properties = default(CertificateProperties), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.CreateOrUpdateWithHttpMessagesAsync(resourceGroupName, resourceName, certificateName, ifMatch, certificate, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.CreateOrUpdateWithHttpMessagesAsync(resourceGroupName, resourceName, certificateName, ifMatch, properties, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } diff --git a/sdk/iothub/Microsoft.Azure.Management.IotHub/src/Generated/ICertificatesOperations.cs b/sdk/iothub/Microsoft.Azure.Management.IotHub/src/Generated/ICertificatesOperations.cs index d6ba4d3719d85..d2f47b57ce3d3 100644 --- a/sdk/iothub/Microsoft.Azure.Management.IotHub/src/Generated/ICertificatesOperations.cs +++ b/sdk/iothub/Microsoft.Azure.Management.IotHub/src/Generated/ICertificatesOperations.cs @@ -101,9 +101,7 @@ public partial interface ICertificatesOperations /// ETag of the Certificate. Do not specify for creating a brand new /// certificate. Required to update an existing certificate. /// - /// - /// base-64 representation of the X509 leaf certificate .cer file or - /// just .pem file content. + /// /// /// /// The headers that will be added to request. @@ -120,7 +118,7 @@ public partial interface ICertificatesOperations /// /// Thrown when a required parameter is null /// - Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string resourceName, string certificateName, string ifMatch = default(string), string certificate = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string resourceName, string certificateName, string ifMatch = default(string), CertificateProperties properties = default(CertificateProperties), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Delete an X509 certificate. /// diff --git a/sdk/iothub/Microsoft.Azure.Management.IotHub/src/Generated/IIotHubResourceOperations.cs b/sdk/iothub/Microsoft.Azure.Management.IotHub/src/Generated/IIotHubResourceOperations.cs index 5c9e8471f8755..fa02cd608d676 100644 --- a/sdk/iothub/Microsoft.Azure.Management.IotHub/src/Generated/IIotHubResourceOperations.cs +++ b/sdk/iothub/Microsoft.Azure.Management.IotHub/src/Generated/IIotHubResourceOperations.cs @@ -343,6 +343,8 @@ public partial interface IIotHubResourceOperations /// /// The name of the consumer group to add. /// + /// + /// /// /// The headers that will be added to request. /// @@ -358,7 +360,7 @@ public partial interface IIotHubResourceOperations /// /// Thrown when a required parameter is null /// - Task> CreateEventHubConsumerGroupWithHttpMessagesAsync(string resourceGroupName, string resourceName, string eventHubEndpointName, string name, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> CreateEventHubConsumerGroupWithHttpMessagesAsync(string resourceGroupName, string resourceName, string eventHubEndpointName, string name, EventHubConsumerGroupName properties, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Delete a consumer group from an Event Hub-compatible endpoint in an /// IoT hub diff --git a/sdk/iothub/Microsoft.Azure.Management.IotHub/src/Generated/IotHubClient.cs b/sdk/iothub/Microsoft.Azure.Management.IotHub/src/Generated/IotHubClient.cs index 0c874eebed0a3..08defd8c022bc 100644 --- a/sdk/iothub/Microsoft.Azure.Management.IotHub/src/Generated/IotHubClient.cs +++ b/sdk/iothub/Microsoft.Azure.Management.IotHub/src/Generated/IotHubClient.cs @@ -358,7 +358,7 @@ private void Initialize() PrivateLinkResources = new PrivateLinkResourcesOperations(this); PrivateEndpointConnections = new PrivateEndpointConnectionsOperations(this); BaseUri = new System.Uri("https://management.azure.com"); - ApiVersion = "2020-03-01"; + ApiVersion = "2021-03-31"; AcceptLanguage = "en-US"; LongRunningOperationRetryTimeout = 30; GenerateClientRequestId = true; diff --git a/sdk/iothub/Microsoft.Azure.Management.IotHub/src/Generated/IotHubResourceOperations.cs b/sdk/iothub/Microsoft.Azure.Management.IotHub/src/Generated/IotHubResourceOperations.cs index f2a475573d47f..2924eafd45748 100644 --- a/sdk/iothub/Microsoft.Azure.Management.IotHub/src/Generated/IotHubResourceOperations.cs +++ b/sdk/iothub/Microsoft.Azure.Management.IotHub/src/Generated/IotHubResourceOperations.cs @@ -1521,6 +1521,8 @@ internal IotHubResourceOperations(IotHubClient client) /// /// The name of the consumer group to add. /// + /// + /// /// /// Headers that will be added to request. /// @@ -1542,7 +1544,7 @@ internal IotHubResourceOperations(IotHubClient client) /// /// A response object containing the response body and response headers. /// - public async Task> CreateEventHubConsumerGroupWithHttpMessagesAsync(string resourceGroupName, string resourceName, string eventHubEndpointName, string name, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> CreateEventHubConsumerGroupWithHttpMessagesAsync(string resourceGroupName, string resourceName, string eventHubEndpointName, string name, EventHubConsumerGroupName properties, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (Client.ApiVersion == null) { @@ -1568,6 +1570,19 @@ internal IotHubResourceOperations(IotHubClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "name"); } + if (properties == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "properties"); + } + if (properties != null) + { + properties.Validate(); + } + EventHubConsumerGroupBodyDescription consumerGroupBody = new EventHubConsumerGroupBodyDescription(); + if (properties != null) + { + consumerGroupBody.Properties = properties; + } // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1579,6 +1594,7 @@ internal IotHubResourceOperations(IotHubClient client) tracingParameters.Add("resourceName", resourceName); tracingParameters.Add("eventHubEndpointName", eventHubEndpointName); tracingParameters.Add("name", name); + tracingParameters.Add("consumerGroupBody", consumerGroupBody); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "CreateEventHubConsumerGroup", tracingParameters); } @@ -1633,6 +1649,12 @@ internal IotHubResourceOperations(IotHubClient client) // Serialize Request string _requestContent = null; + if(consumerGroupBody != null) + { + _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(consumerGroupBody, 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) { diff --git a/sdk/iothub/Microsoft.Azure.Management.IotHub/src/Generated/IotHubResourceOperationsExtensions.cs b/sdk/iothub/Microsoft.Azure.Management.IotHub/src/Generated/IotHubResourceOperationsExtensions.cs index 806d65620779c..ae2585f9e3c9d 100644 --- a/sdk/iothub/Microsoft.Azure.Management.IotHub/src/Generated/IotHubResourceOperationsExtensions.cs +++ b/sdk/iothub/Microsoft.Azure.Management.IotHub/src/Generated/IotHubResourceOperationsExtensions.cs @@ -544,9 +544,11 @@ public static EventHubConsumerGroupInfo GetEventHubConsumerGroup(this IIotHubRes /// /// The name of the consumer group to add. /// - public static EventHubConsumerGroupInfo CreateEventHubConsumerGroup(this IIotHubResourceOperations operations, string resourceGroupName, string resourceName, string eventHubEndpointName, string name) + /// + /// + public static EventHubConsumerGroupInfo CreateEventHubConsumerGroup(this IIotHubResourceOperations operations, string resourceGroupName, string resourceName, string eventHubEndpointName, string name, EventHubConsumerGroupName properties) { - return operations.CreateEventHubConsumerGroupAsync(resourceGroupName, resourceName, eventHubEndpointName, name).GetAwaiter().GetResult(); + return operations.CreateEventHubConsumerGroupAsync(resourceGroupName, resourceName, eventHubEndpointName, name, properties).GetAwaiter().GetResult(); } /// @@ -570,12 +572,14 @@ public static EventHubConsumerGroupInfo CreateEventHubConsumerGroup(this IIotHub /// /// The name of the consumer group to add. /// + /// + /// /// /// The cancellation token. /// - public static async Task CreateEventHubConsumerGroupAsync(this IIotHubResourceOperations operations, string resourceGroupName, string resourceName, string eventHubEndpointName, string name, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task CreateEventHubConsumerGroupAsync(this IIotHubResourceOperations operations, string resourceGroupName, string resourceName, string eventHubEndpointName, string name, EventHubConsumerGroupName properties, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.CreateEventHubConsumerGroupWithHttpMessagesAsync(resourceGroupName, resourceName, eventHubEndpointName, name, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.CreateEventHubConsumerGroupWithHttpMessagesAsync(resourceGroupName, resourceName, eventHubEndpointName, name, properties, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } diff --git a/sdk/iothub/Microsoft.Azure.Management.IotHub/src/Generated/Models/ArmIdentity.cs b/sdk/iothub/Microsoft.Azure.Management.IotHub/src/Generated/Models/ArmIdentity.cs new file mode 100644 index 0000000000000..4c259b0dc14b5 --- /dev/null +++ b/sdk/iothub/Microsoft.Azure.Management.IotHub/src/Generated/Models/ArmIdentity.cs @@ -0,0 +1,82 @@ +// +// 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.IotHub.Models +{ + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + + public partial class ArmIdentity + { + /// + /// Initializes a new instance of the ArmIdentity class. + /// + public ArmIdentity() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the ArmIdentity class. + /// + /// Principal Id + /// Tenant Id + /// The type of identity used for the resource. The + /// type 'SystemAssigned, UserAssigned' includes both an implicitly + /// created identity and a set of user assigned identities. The type + /// 'None' will remove any identities from the service. Possible values + /// include: 'SystemAssigned', 'UserAssigned', 'SystemAssigned, + /// UserAssigned', 'None' + public ArmIdentity(string principalId = default(string), string tenantId = default(string), ResourceIdentityType? type = default(ResourceIdentityType?), IDictionary userAssignedIdentities = default(IDictionary)) + { + PrincipalId = principalId; + TenantId = tenantId; + Type = type; + UserAssignedIdentities = userAssignedIdentities; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets principal Id + /// + [JsonProperty(PropertyName = "principalId")] + public string PrincipalId { get; private set; } + + /// + /// Gets tenant Id + /// + [JsonProperty(PropertyName = "tenantId")] + public string TenantId { get; private set; } + + /// + /// Gets or sets the type of identity used for the resource. The type + /// 'SystemAssigned, UserAssigned' includes both an implicitly created + /// identity and a set of user assigned identities. The type 'None' + /// will remove any identities from the service. Possible values + /// include: 'SystemAssigned', 'UserAssigned', 'SystemAssigned, + /// UserAssigned', 'None' + /// + [JsonProperty(PropertyName = "type")] + public ResourceIdentityType? Type { get; set; } + + /// + /// + [JsonProperty(PropertyName = "userAssignedIdentities")] + public IDictionary UserAssignedIdentities { get; set; } + + } +} diff --git a/sdk/iothub/Microsoft.Azure.Management.IotHub/src/Generated/Models/ArmUserIdentity.cs b/sdk/iothub/Microsoft.Azure.Management.IotHub/src/Generated/Models/ArmUserIdentity.cs new file mode 100644 index 0000000000000..755de23f8a3c6 --- /dev/null +++ b/sdk/iothub/Microsoft.Azure.Management.IotHub/src/Generated/Models/ArmUserIdentity.cs @@ -0,0 +1,52 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.IotHub.Models +{ + using Newtonsoft.Json; + using System.Linq; + + public partial class ArmUserIdentity + { + /// + /// Initializes a new instance of the ArmUserIdentity class. + /// + public ArmUserIdentity() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the ArmUserIdentity class. + /// + public ArmUserIdentity(string principalId = default(string), string clientId = default(string)) + { + PrincipalId = principalId; + ClientId = clientId; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// + [JsonProperty(PropertyName = "principalId")] + public string PrincipalId { get; private set; } + + /// + /// + [JsonProperty(PropertyName = "clientId")] + public string ClientId { get; private set; } + + } +} diff --git a/sdk/iothub/Microsoft.Azure.Management.IotHub/src/Generated/Models/DefaultAction.cs b/sdk/iothub/Microsoft.Azure.Management.IotHub/src/Generated/Models/DefaultAction.cs new file mode 100644 index 0000000000000..3266ced524ae6 --- /dev/null +++ b/sdk/iothub/Microsoft.Azure.Management.IotHub/src/Generated/Models/DefaultAction.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.IotHub.Models +{ + + /// + /// Defines values for DefaultAction. + /// + public static class DefaultAction + { + public const string Deny = "Deny"; + public const string Allow = "Allow"; + } +} diff --git a/sdk/iothub/Microsoft.Azure.Management.IotHub/src/Generated/Models/EndpointHealthData.cs b/sdk/iothub/Microsoft.Azure.Management.IotHub/src/Generated/Models/EndpointHealthData.cs index 7e81c9abf2e42..495dc1ed57ca8 100644 --- a/sdk/iothub/Microsoft.Azure.Management.IotHub/src/Generated/Models/EndpointHealthData.cs +++ b/sdk/iothub/Microsoft.Azure.Management.IotHub/src/Generated/Models/EndpointHealthData.cs @@ -10,6 +10,8 @@ namespace Microsoft.Azure.Management.IotHub.Models { + using Microsoft.Rest; + using Microsoft.Rest.Serialization; using Newtonsoft.Json; using System.Linq; @@ -43,11 +45,23 @@ public EndpointHealthData() /// shows that the IoT Hub has not established a connection with the /// endpoint. No messages have been delivered to or rejected from this /// endpoint. Possible values include: 'unknown', 'healthy', - /// 'unhealthy', 'dead' - public EndpointHealthData(string endpointId = default(string), string healthStatus = default(string)) + /// 'degraded', 'unhealthy', 'dead' + /// Last error obtained when a message + /// failed to be delivered to iot hub + /// Time at which the last known error + /// occurred + /// Last time iot hub + /// successfully sent a message to the endpoint + /// Last time iot hub tried to send a + /// message to the endpoint + public EndpointHealthData(string endpointId = default(string), string healthStatus = default(string), string lastKnownError = default(string), System.DateTime? lastKnownErrorTime = default(System.DateTime?), System.DateTime? lastSuccessfulSendAttemptTime = default(System.DateTime?), System.DateTime? lastSendAttemptTime = default(System.DateTime?)) { EndpointId = endpointId; HealthStatus = healthStatus; + LastKnownError = lastKnownError; + LastKnownErrorTime = lastKnownErrorTime; + LastSuccessfulSendAttemptTime = lastSuccessfulSendAttemptTime; + LastSendAttemptTime = lastSendAttemptTime; CustomInit(); } @@ -75,10 +89,41 @@ public EndpointHealthData() /// issues with endpoints. The 'unknown' status shows that the IoT Hub /// has not established a connection with the endpoint. No messages /// have been delivered to or rejected from this endpoint. Possible - /// values include: 'unknown', 'healthy', 'unhealthy', 'dead' + /// values include: 'unknown', 'healthy', 'degraded', 'unhealthy', + /// 'dead' /// [JsonProperty(PropertyName = "healthStatus")] public string HealthStatus { get; set; } + /// + /// Gets or sets last error obtained when a message failed to be + /// delivered to iot hub + /// + [JsonProperty(PropertyName = "lastKnownError")] + public string LastKnownError { get; set; } + + /// + /// Gets or sets time at which the last known error occurred + /// + [JsonConverter(typeof(DateTimeRfc1123JsonConverter))] + [JsonProperty(PropertyName = "lastKnownErrorTime")] + public System.DateTime? LastKnownErrorTime { get; set; } + + /// + /// Gets or sets last time iot hub successfully sent a message to the + /// endpoint + /// + [JsonConverter(typeof(DateTimeRfc1123JsonConverter))] + [JsonProperty(PropertyName = "lastSuccessfulSendAttemptTime")] + public System.DateTime? LastSuccessfulSendAttemptTime { get; set; } + + /// + /// Gets or sets last time iot hub tried to send a message to the + /// endpoint + /// + [JsonConverter(typeof(DateTimeRfc1123JsonConverter))] + [JsonProperty(PropertyName = "lastSendAttemptTime")] + public System.DateTime? LastSendAttemptTime { get; set; } + } } diff --git a/sdk/iothub/Microsoft.Azure.Management.IotHub/src/Generated/Models/EndpointHealthStatus.cs b/sdk/iothub/Microsoft.Azure.Management.IotHub/src/Generated/Models/EndpointHealthStatus.cs index 82fd7f09e03a0..b5de1f7c9d01d 100644 --- a/sdk/iothub/Microsoft.Azure.Management.IotHub/src/Generated/Models/EndpointHealthStatus.cs +++ b/sdk/iothub/Microsoft.Azure.Management.IotHub/src/Generated/Models/EndpointHealthStatus.cs @@ -18,6 +18,7 @@ public static class EndpointHealthStatus { public const string Unknown = "unknown"; public const string Healthy = "healthy"; + public const string Degraded = "degraded"; public const string Unhealthy = "unhealthy"; public const string Dead = "dead"; } diff --git a/sdk/iothub/Microsoft.Azure.Management.IotHub/src/Generated/Models/EventHubConsumerGroupBodyDescription.cs b/sdk/iothub/Microsoft.Azure.Management.IotHub/src/Generated/Models/EventHubConsumerGroupBodyDescription.cs new file mode 100644 index 0000000000000..cbf1c2a6a40e7 --- /dev/null +++ b/sdk/iothub/Microsoft.Azure.Management.IotHub/src/Generated/Models/EventHubConsumerGroupBodyDescription.cs @@ -0,0 +1,69 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.IotHub.Models +{ + using Microsoft.Rest; + using Newtonsoft.Json; + using System.Linq; + + /// + /// The EventHub consumer group. + /// + public partial class EventHubConsumerGroupBodyDescription + { + /// + /// Initializes a new instance of the + /// EventHubConsumerGroupBodyDescription class. + /// + public EventHubConsumerGroupBodyDescription() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the + /// EventHubConsumerGroupBodyDescription class. + /// + public EventHubConsumerGroupBodyDescription(EventHubConsumerGroupName properties) + { + Properties = properties; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// + [JsonProperty(PropertyName = "properties")] + public EventHubConsumerGroupName Properties { get; set; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (Properties == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "Properties"); + } + if (Properties != null) + { + Properties.Validate(); + } + } + } +} diff --git a/sdk/iothub/Microsoft.Azure.Management.IotHub/src/Generated/Models/EventHubConsumerGroupInfo.cs b/sdk/iothub/Microsoft.Azure.Management.IotHub/src/Generated/Models/EventHubConsumerGroupInfo.cs index 24a35cf2999de..6c74fb7205a24 100644 --- a/sdk/iothub/Microsoft.Azure.Management.IotHub/src/Generated/Models/EventHubConsumerGroupInfo.cs +++ b/sdk/iothub/Microsoft.Azure.Management.IotHub/src/Generated/Models/EventHubConsumerGroupInfo.cs @@ -40,7 +40,7 @@ public EventHubConsumerGroupInfo() /// name. /// the resource type. /// The etag. - public EventHubConsumerGroupInfo(IDictionary properties = default(IDictionary), string id = default(string), string name = default(string), string type = default(string), string etag = default(string)) + public EventHubConsumerGroupInfo(IDictionary properties = default(IDictionary), string id = default(string), string name = default(string), string type = default(string), string etag = default(string)) { Properties = properties; Id = id; @@ -59,7 +59,7 @@ public EventHubConsumerGroupInfo() /// Gets or sets the tags. /// [JsonProperty(PropertyName = "properties")] - public IDictionary Properties { get; set; } + public IDictionary Properties { get; set; } /// /// Gets the Event Hub-compatible consumer group identifier. diff --git a/sdk/iothub/Microsoft.Azure.Management.IotHub/src/Generated/Models/EventHubConsumerGroupName.cs b/sdk/iothub/Microsoft.Azure.Management.IotHub/src/Generated/Models/EventHubConsumerGroupName.cs new file mode 100644 index 0000000000000..10135436da872 --- /dev/null +++ b/sdk/iothub/Microsoft.Azure.Management.IotHub/src/Generated/Models/EventHubConsumerGroupName.cs @@ -0,0 +1,65 @@ +// +// 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.IotHub.Models +{ + using Microsoft.Rest; + using Newtonsoft.Json; + using System.Linq; + + /// + /// The EventHub consumer group name. + /// + public partial class EventHubConsumerGroupName + { + /// + /// Initializes a new instance of the EventHubConsumerGroupName class. + /// + public EventHubConsumerGroupName() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the EventHubConsumerGroupName class. + /// + /// EventHub consumer group name + public EventHubConsumerGroupName(string name) + { + Name = name; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets eventHub consumer group name + /// + [JsonProperty(PropertyName = "name")] + public string Name { get; set; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (Name == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "Name"); + } + } + } +} diff --git a/sdk/iothub/Microsoft.Azure.Management.IotHub/src/Generated/Models/ExportDevicesRequest.cs b/sdk/iothub/Microsoft.Azure.Management.IotHub/src/Generated/Models/ExportDevicesRequest.cs index a64f84afee181..3f6b30f698e18 100644 --- a/sdk/iothub/Microsoft.Azure.Management.IotHub/src/Generated/Models/ExportDevicesRequest.cs +++ b/sdk/iothub/Microsoft.Azure.Management.IotHub/src/Generated/Models/ExportDevicesRequest.cs @@ -42,12 +42,22 @@ public ExportDevicesRequest() /// Specifies authentication type /// being used for connecting to the storage account. Possible values /// include: 'keyBased', 'identityBased' - public ExportDevicesRequest(string exportBlobContainerUri, bool excludeKeys, string exportBlobName = default(string), string authenticationType = default(string)) + /// Managed identity properties of storage + /// endpoint for export devices. + /// The value indicating whether + /// configurations should be exported. + /// The name of the blob that will + /// be created in the provided output blob container. This blob will + /// contain the exported configurations for the Iot Hub. + public ExportDevicesRequest(string exportBlobContainerUri, bool excludeKeys, string exportBlobName = default(string), string authenticationType = default(string), ManagedIdentity identity = default(ManagedIdentity), bool? includeConfigurations = default(bool?), string configurationsBlobName = default(string)) { ExportBlobContainerUri = exportBlobContainerUri; ExcludeKeys = excludeKeys; ExportBlobName = exportBlobName; AuthenticationType = authenticationType; + Identity = identity; + IncludeConfigurations = includeConfigurations; + ConfigurationsBlobName = configurationsBlobName; CustomInit(); } @@ -85,6 +95,28 @@ public ExportDevicesRequest() [JsonProperty(PropertyName = "authenticationType")] public string AuthenticationType { get; set; } + /// + /// Gets or sets managed identity properties of storage endpoint for + /// export devices. + /// + [JsonProperty(PropertyName = "identity")] + public ManagedIdentity Identity { get; set; } + + /// + /// Gets or sets the value indicating whether configurations should be + /// exported. + /// + [JsonProperty(PropertyName = "includeConfigurations")] + public bool? IncludeConfigurations { get; set; } + + /// + /// Gets or sets the name of the blob that will be created in the + /// provided output blob container. This blob will contain the exported + /// configurations for the Iot Hub. + /// + [JsonProperty(PropertyName = "configurationsBlobName")] + public string ConfigurationsBlobName { get; set; } + /// /// Validate the object. /// diff --git a/sdk/iothub/Microsoft.Azure.Management.IotHub/src/Generated/Models/ImportDevicesRequest.cs b/sdk/iothub/Microsoft.Azure.Management.IotHub/src/Generated/Models/ImportDevicesRequest.cs index e0211f0fb392e..9d30004b11277 100644 --- a/sdk/iothub/Microsoft.Azure.Management.IotHub/src/Generated/Models/ImportDevicesRequest.cs +++ b/sdk/iothub/Microsoft.Azure.Management.IotHub/src/Generated/Models/ImportDevicesRequest.cs @@ -42,13 +42,23 @@ public ImportDevicesRequest() /// Specifies authentication type /// being used for connecting to the storage account. Possible values /// include: 'keyBased', 'identityBased' - public ImportDevicesRequest(string inputBlobContainerUri, string outputBlobContainerUri, string inputBlobName = default(string), string outputBlobName = default(string), string authenticationType = default(string)) + /// Managed identity properties of storage + /// endpoint for import devices. + /// The value indicating whether + /// configurations should be imported. + /// The blob name to be used when + /// importing configurations from the provided input blob + /// container. + public ImportDevicesRequest(string inputBlobContainerUri, string outputBlobContainerUri, string inputBlobName = default(string), string outputBlobName = default(string), string authenticationType = default(string), ManagedIdentity identity = default(ManagedIdentity), bool? includeConfigurations = default(bool?), string configurationsBlobName = default(string)) { InputBlobContainerUri = inputBlobContainerUri; OutputBlobContainerUri = outputBlobContainerUri; InputBlobName = inputBlobName; OutputBlobName = outputBlobName; AuthenticationType = authenticationType; + Identity = identity; + IncludeConfigurations = includeConfigurations; + ConfigurationsBlobName = configurationsBlobName; CustomInit(); } @@ -91,6 +101,27 @@ public ImportDevicesRequest() [JsonProperty(PropertyName = "authenticationType")] public string AuthenticationType { get; set; } + /// + /// Gets or sets managed identity properties of storage endpoint for + /// import devices. + /// + [JsonProperty(PropertyName = "identity")] + public ManagedIdentity Identity { get; set; } + + /// + /// Gets or sets the value indicating whether configurations should be + /// imported. + /// + [JsonProperty(PropertyName = "includeConfigurations")] + public bool? IncludeConfigurations { get; set; } + + /// + /// Gets or sets the blob name to be used when importing configurations + /// from the provided input blob container. + /// + [JsonProperty(PropertyName = "configurationsBlobName")] + public string ConfigurationsBlobName { get; set; } + /// /// Validate the object. /// diff --git a/sdk/iothub/Microsoft.Azure.Management.IotHub/src/Generated/Models/IotHubDescription.cs b/sdk/iothub/Microsoft.Azure.Management.IotHub/src/Generated/Models/IotHubDescription.cs index f0b46cebcc677..ba50bfaa6b97d 100644 --- a/sdk/iothub/Microsoft.Azure.Management.IotHub/src/Generated/Models/IotHubDescription.cs +++ b/sdk/iothub/Microsoft.Azure.Management.IotHub/src/Generated/Models/IotHubDescription.cs @@ -42,12 +42,15 @@ public IotHubDescription() /// provided in the response body, it must also be provided as a header /// per the normal ETag convention. /// IotHub properties - public IotHubDescription(string location, IotHubSkuInfo sku, string id = default(string), string name = default(string), string type = default(string), IDictionary tags = default(IDictionary), string etag = default(string), IotHubProperties properties = default(IotHubProperties)) + /// The managed identities for the + /// IotHub. + public IotHubDescription(string location, IotHubSkuInfo sku, string id = default(string), string name = default(string), string type = default(string), IDictionary tags = default(IDictionary), string etag = default(string), IotHubProperties properties = default(IotHubProperties), ArmIdentity identity = default(ArmIdentity)) : base(location, id, name, type, tags) { Etag = etag; Properties = properties; Sku = sku; + Identity = identity; CustomInit(); } @@ -76,6 +79,12 @@ public IotHubDescription() [JsonProperty(PropertyName = "sku")] public IotHubSkuInfo Sku { get; set; } + /// + /// Gets or sets the managed identities for the IotHub. + /// + [JsonProperty(PropertyName = "identity")] + public ArmIdentity Identity { get; set; } + /// /// Validate the object. /// diff --git a/sdk/iothub/Microsoft.Azure.Management.IotHub/src/Generated/Models/IotHubProperties.cs b/sdk/iothub/Microsoft.Azure.Management.IotHub/src/Generated/Models/IotHubProperties.cs index 529baa2ca1e5e..2b73c00c41e4a 100644 --- a/sdk/iothub/Microsoft.Azure.Management.IotHub/src/Generated/Models/IotHubProperties.cs +++ b/sdk/iothub/Microsoft.Azure.Management.IotHub/src/Generated/Models/IotHubProperties.cs @@ -66,11 +66,12 @@ public IotHubProperties() /// 'DeviceManagement' /// Primary and secondary location for iot /// hub - public IotHubProperties(IList authorizationPolicies = default(IList), string publicNetworkAccess = default(string), IList ipFilterRules = default(IList), string minTlsVersion = default(string), IList privateEndpointConnections = default(IList), string provisioningState = default(string), string state = default(string), string hostName = default(string), IDictionary eventHubEndpoints = default(IDictionary), RoutingProperties routing = default(RoutingProperties), IDictionary storageEndpoints = default(IDictionary), IDictionary messagingEndpoints = default(IDictionary), bool? enableFileUploadNotifications = default(bool?), CloudToDeviceProperties cloudToDevice = default(CloudToDeviceProperties), string comments = default(string), string features = default(string), IList locations = default(IList)) + public IotHubProperties(IList authorizationPolicies = default(IList), string publicNetworkAccess = default(string), IList ipFilterRules = default(IList), NetworkRuleSetProperties networkRuleSets = default(NetworkRuleSetProperties), string minTlsVersion = default(string), IList privateEndpointConnections = default(IList), string provisioningState = default(string), string state = default(string), string hostName = default(string), IDictionary eventHubEndpoints = default(IDictionary), RoutingProperties routing = default(RoutingProperties), IDictionary storageEndpoints = default(IDictionary), IDictionary messagingEndpoints = default(IDictionary), bool? enableFileUploadNotifications = default(bool?), CloudToDeviceProperties cloudToDevice = default(CloudToDeviceProperties), string comments = default(string), string features = default(string), IList locations = default(IList)) { AuthorizationPolicies = authorizationPolicies; PublicNetworkAccess = publicNetworkAccess; IpFilterRules = ipFilterRules; + NetworkRuleSets = networkRuleSets; MinTlsVersion = minTlsVersion; PrivateEndpointConnections = privateEndpointConnections; ProvisioningState = provisioningState; @@ -113,6 +114,11 @@ public IotHubProperties() [JsonProperty(PropertyName = "ipFilterRules")] public IList IpFilterRules { get; set; } + /// + /// + [JsonProperty(PropertyName = "networkRuleSets")] + public NetworkRuleSetProperties NetworkRuleSets { get; set; } + /// /// Gets or sets specifies the minimum TLS version to support for this /// hub. Can be set to "1.2" to have clients that use a TLS version @@ -236,6 +242,10 @@ public virtual void Validate() } } } + if (NetworkRuleSets != null) + { + NetworkRuleSets.Validate(); + } if (PrivateEndpointConnections != null) { foreach (var element2 in PrivateEndpointConnections) diff --git a/sdk/iothub/Microsoft.Azure.Management.IotHub/src/Generated/Models/ManagedIdentity.cs b/sdk/iothub/Microsoft.Azure.Management.IotHub/src/Generated/Models/ManagedIdentity.cs new file mode 100644 index 0000000000000..c8986b474d36d --- /dev/null +++ b/sdk/iothub/Microsoft.Azure.Management.IotHub/src/Generated/Models/ManagedIdentity.cs @@ -0,0 +1,52 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.IotHub.Models +{ + using Newtonsoft.Json; + using System.Linq; + + /// + /// The properties of the Managed identity. + /// + public partial class ManagedIdentity + { + /// + /// Initializes a new instance of the ManagedIdentity class. + /// + public ManagedIdentity() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the ManagedIdentity class. + /// + /// The user assigned + /// identity. + public ManagedIdentity(string userAssignedIdentity = default(string)) + { + UserAssignedIdentity = userAssignedIdentity; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets the user assigned identity. + /// + [JsonProperty(PropertyName = "userAssignedIdentity")] + public string UserAssignedIdentity { get; set; } + + } +} diff --git a/sdk/iothub/Microsoft.Azure.Management.IotHub/src/Generated/Models/NetworkRuleIPAction.cs b/sdk/iothub/Microsoft.Azure.Management.IotHub/src/Generated/Models/NetworkRuleIPAction.cs new file mode 100644 index 0000000000000..2edfdf6a270a9 --- /dev/null +++ b/sdk/iothub/Microsoft.Azure.Management.IotHub/src/Generated/Models/NetworkRuleIPAction.cs @@ -0,0 +1,21 @@ +// +// 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.IotHub.Models +{ + + /// + /// Defines values for NetworkRuleIPAction. + /// + public static class NetworkRuleIPAction + { + public const string Allow = "Allow"; + } +} diff --git a/sdk/iothub/Microsoft.Azure.Management.IotHub/src/Generated/Models/NetworkRuleSetIpRule.cs b/sdk/iothub/Microsoft.Azure.Management.IotHub/src/Generated/Models/NetworkRuleSetIpRule.cs new file mode 100644 index 0000000000000..2050551fe9816 --- /dev/null +++ b/sdk/iothub/Microsoft.Azure.Management.IotHub/src/Generated/Models/NetworkRuleSetIpRule.cs @@ -0,0 +1,88 @@ +// +// 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.IotHub.Models +{ + using Microsoft.Rest; + using Newtonsoft.Json; + using System.Linq; + + /// + /// IP Rule to be applied as part of Network Rule Set + /// + public partial class NetworkRuleSetIpRule + { + /// + /// Initializes a new instance of the NetworkRuleSetIpRule class. + /// + public NetworkRuleSetIpRule() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the NetworkRuleSetIpRule class. + /// + /// Name of the IP filter rule. + /// A string that contains the IP address range in + /// CIDR notation for the rule. + /// IP Filter Action. Possible values include: + /// 'Allow' + public NetworkRuleSetIpRule(string filterName, string ipMask, string action = default(string)) + { + FilterName = filterName; + Action = action; + IpMask = ipMask; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets name of the IP filter rule. + /// + [JsonProperty(PropertyName = "filterName")] + public string FilterName { get; set; } + + /// + /// Gets or sets IP Filter Action. Possible values include: 'Allow' + /// + [JsonProperty(PropertyName = "action")] + public string Action { get; set; } + + /// + /// Gets or sets a string that contains the IP address range in CIDR + /// notation for the rule. + /// + [JsonProperty(PropertyName = "ipMask")] + public string IpMask { get; set; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (FilterName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "FilterName"); + } + if (IpMask == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "IpMask"); + } + } + } +} diff --git a/sdk/iothub/Microsoft.Azure.Management.IotHub/src/Generated/Models/NetworkRuleSetProperties.cs b/sdk/iothub/Microsoft.Azure.Management.IotHub/src/Generated/Models/NetworkRuleSetProperties.cs new file mode 100644 index 0000000000000..1d473711e4dfa --- /dev/null +++ b/sdk/iothub/Microsoft.Azure.Management.IotHub/src/Generated/Models/NetworkRuleSetProperties.cs @@ -0,0 +1,98 @@ +// +// 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.IotHub.Models +{ + using Microsoft.Rest; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + + /// + /// Network Rule Set Properties of IotHub + /// + public partial class NetworkRuleSetProperties + { + /// + /// Initializes a new instance of the NetworkRuleSetProperties class. + /// + public NetworkRuleSetProperties() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the NetworkRuleSetProperties class. + /// + /// If True, then Network + /// Rule Set is also applied to BuiltIn EventHub EndPoint of + /// IotHub + /// List of IP Rules + /// Default Action for Network Rule Set. + /// Possible values include: 'Deny', 'Allow' + public NetworkRuleSetProperties(bool applyToBuiltInEventHubEndpoint, IList ipRules, string defaultAction = default(string)) + { + DefaultAction = defaultAction; + ApplyToBuiltInEventHubEndpoint = applyToBuiltInEventHubEndpoint; + IpRules = ipRules; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets default Action for Network Rule Set. Possible values + /// include: 'Deny', 'Allow' + /// + [JsonProperty(PropertyName = "defaultAction")] + public string DefaultAction { get; set; } + + /// + /// Gets or sets if True, then Network Rule Set is also applied to + /// BuiltIn EventHub EndPoint of IotHub + /// + [JsonProperty(PropertyName = "applyToBuiltInEventHubEndpoint")] + public bool ApplyToBuiltInEventHubEndpoint { get; set; } + + /// + /// Gets or sets list of IP Rules + /// + [JsonProperty(PropertyName = "ipRules")] + public IList IpRules { get; set; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (IpRules == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "IpRules"); + } + if (IpRules != null) + { + foreach (var element in IpRules) + { + if (element != null) + { + element.Validate(); + } + } + } + } + } +} diff --git a/sdk/iothub/Microsoft.Azure.Management.IotHub/src/Generated/Models/ResourceIdentityType.cs b/sdk/iothub/Microsoft.Azure.Management.IotHub/src/Generated/Models/ResourceIdentityType.cs new file mode 100644 index 0000000000000..560d44d8d9faa --- /dev/null +++ b/sdk/iothub/Microsoft.Azure.Management.IotHub/src/Generated/Models/ResourceIdentityType.cs @@ -0,0 +1,72 @@ +// +// 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.IotHub.Models +{ + using Newtonsoft.Json; + using Newtonsoft.Json.Converters; + using System.Runtime; + using System.Runtime.Serialization; + + /// + /// Defines values for ResourceIdentityType. + /// + [JsonConverter(typeof(StringEnumConverter))] + public enum ResourceIdentityType + { + [EnumMember(Value = "SystemAssigned")] + SystemAssigned, + [EnumMember(Value = "UserAssigned")] + UserAssigned, + [EnumMember(Value = "SystemAssigned, UserAssigned")] + SystemAssignedUserAssigned, + [EnumMember(Value = "None")] + None + } + internal static class ResourceIdentityTypeEnumExtension + { + internal static string ToSerializedValue(this ResourceIdentityType? value) + { + return value == null ? null : ((ResourceIdentityType)value).ToSerializedValue(); + } + + internal static string ToSerializedValue(this ResourceIdentityType value) + { + switch( value ) + { + case ResourceIdentityType.SystemAssigned: + return "SystemAssigned"; + case ResourceIdentityType.UserAssigned: + return "UserAssigned"; + case ResourceIdentityType.SystemAssignedUserAssigned: + return "SystemAssigned, UserAssigned"; + case ResourceIdentityType.None: + return "None"; + } + return null; + } + + internal static ResourceIdentityType? ParseResourceIdentityType(this string value) + { + switch( value ) + { + case "SystemAssigned": + return ResourceIdentityType.SystemAssigned; + case "UserAssigned": + return ResourceIdentityType.UserAssigned; + case "SystemAssigned, UserAssigned": + return ResourceIdentityType.SystemAssignedUserAssigned; + case "None": + return ResourceIdentityType.None; + } + return null; + } + } +} diff --git a/sdk/iothub/Microsoft.Azure.Management.IotHub/src/Generated/Models/RouteProperties.cs b/sdk/iothub/Microsoft.Azure.Management.IotHub/src/Generated/Models/RouteProperties.cs index 0bca2ab9baf46..f898488b9c19d 100644 --- a/sdk/iothub/Microsoft.Azure.Management.IotHub/src/Generated/Models/RouteProperties.cs +++ b/sdk/iothub/Microsoft.Azure.Management.IotHub/src/Generated/Models/RouteProperties.cs @@ -39,7 +39,8 @@ public RouteProperties() /// The source that the routing rule is to be /// applied to, such as DeviceMessages. Possible values include: /// 'Invalid', 'DeviceMessages', 'TwinChangeEvents', - /// 'DeviceLifecycleEvents', 'DeviceJobLifecycleEvents' + /// 'DeviceLifecycleEvents', 'DeviceJobLifecycleEvents', + /// 'DeviceConnectionStateEvents' /// The list of endpoints to which messages /// that satisfy the condition are routed. Currently only one endpoint /// is allowed. @@ -76,7 +77,7 @@ public RouteProperties() /// Gets or sets the source that the routing rule is to be applied to, /// such as DeviceMessages. Possible values include: 'Invalid', /// 'DeviceMessages', 'TwinChangeEvents', 'DeviceLifecycleEvents', - /// 'DeviceJobLifecycleEvents' + /// 'DeviceJobLifecycleEvents', 'DeviceConnectionStateEvents' /// [JsonProperty(PropertyName = "source")] public string Source { get; set; } diff --git a/sdk/iothub/Microsoft.Azure.Management.IotHub/src/Generated/Models/RoutingEventHubProperties.cs b/sdk/iothub/Microsoft.Azure.Management.IotHub/src/Generated/Models/RoutingEventHubProperties.cs index f5c4b14f197a0..500d72d32f498 100644 --- a/sdk/iothub/Microsoft.Azure.Management.IotHub/src/Generated/Models/RoutingEventHubProperties.cs +++ b/sdk/iothub/Microsoft.Azure.Management.IotHub/src/Generated/Models/RoutingEventHubProperties.cs @@ -45,17 +45,20 @@ public RoutingEventHubProperties() /// Method used to authenticate /// against the event hub endpoint. Possible values include: /// 'keyBased', 'identityBased' + /// Managed identity properties of routing event + /// hub endpoint. /// The subscription identifier of the /// event hub endpoint. /// The name of the resource group of the /// event hub endpoint. - public RoutingEventHubProperties(string name, string id = default(string), string connectionString = default(string), string endpointUri = default(string), string entityPath = default(string), string authenticationType = default(string), string subscriptionId = default(string), string resourceGroup = default(string)) + public RoutingEventHubProperties(string name, string id = default(string), string connectionString = default(string), string endpointUri = default(string), string entityPath = default(string), string authenticationType = default(string), ManagedIdentity identity = default(ManagedIdentity), string subscriptionId = default(string), string resourceGroup = default(string)) { Id = id; ConnectionString = connectionString; EndpointUri = endpointUri; EntityPath = entityPath; AuthenticationType = authenticationType; + Identity = identity; Name = name; SubscriptionId = subscriptionId; ResourceGroup = resourceGroup; @@ -99,6 +102,13 @@ public RoutingEventHubProperties() [JsonProperty(PropertyName = "authenticationType")] public string AuthenticationType { get; set; } + /// + /// Gets or sets managed identity properties of routing event hub + /// endpoint. + /// + [JsonProperty(PropertyName = "identity")] + public ManagedIdentity Identity { get; set; } + /// /// Gets or sets the name that identifies this endpoint. The name can /// only include alphanumeric characters, periods, underscores, hyphens diff --git a/sdk/iothub/Microsoft.Azure.Management.IotHub/src/Generated/Models/RoutingServiceBusQueueEndpointProperties.cs b/sdk/iothub/Microsoft.Azure.Management.IotHub/src/Generated/Models/RoutingServiceBusQueueEndpointProperties.cs index 66202dd4a90dc..47f46aac2a11e 100644 --- a/sdk/iothub/Microsoft.Azure.Management.IotHub/src/Generated/Models/RoutingServiceBusQueueEndpointProperties.cs +++ b/sdk/iothub/Microsoft.Azure.Management.IotHub/src/Generated/Models/RoutingServiceBusQueueEndpointProperties.cs @@ -48,17 +48,20 @@ public RoutingServiceBusQueueEndpointProperties() /// Method used to authenticate /// against the service bus queue endpoint. Possible values include: /// 'keyBased', 'identityBased' + /// Managed identity properties of routing + /// service bus queue endpoint. /// The subscription identifier of the /// service bus queue endpoint. /// The name of the resource group of the /// service bus queue endpoint. - public RoutingServiceBusQueueEndpointProperties(string name, string id = default(string), string connectionString = default(string), string endpointUri = default(string), string entityPath = default(string), string authenticationType = default(string), string subscriptionId = default(string), string resourceGroup = default(string)) + public RoutingServiceBusQueueEndpointProperties(string name, string id = default(string), string connectionString = default(string), string endpointUri = default(string), string entityPath = default(string), string authenticationType = default(string), ManagedIdentity identity = default(ManagedIdentity), string subscriptionId = default(string), string resourceGroup = default(string)) { Id = id; ConnectionString = connectionString; EndpointUri = endpointUri; EntityPath = entityPath; AuthenticationType = authenticationType; + Identity = identity; Name = name; SubscriptionId = subscriptionId; ResourceGroup = resourceGroup; @@ -104,6 +107,13 @@ public RoutingServiceBusQueueEndpointProperties() [JsonProperty(PropertyName = "authenticationType")] public string AuthenticationType { get; set; } + /// + /// Gets or sets managed identity properties of routing service bus + /// queue endpoint. + /// + [JsonProperty(PropertyName = "identity")] + public ManagedIdentity Identity { get; set; } + /// /// Gets or sets the name that identifies this endpoint. The name can /// only include alphanumeric characters, periods, underscores, hyphens diff --git a/sdk/iothub/Microsoft.Azure.Management.IotHub/src/Generated/Models/RoutingServiceBusTopicEndpointProperties.cs b/sdk/iothub/Microsoft.Azure.Management.IotHub/src/Generated/Models/RoutingServiceBusTopicEndpointProperties.cs index 2c9627da6f751..a9683395661ad 100644 --- a/sdk/iothub/Microsoft.Azure.Management.IotHub/src/Generated/Models/RoutingServiceBusTopicEndpointProperties.cs +++ b/sdk/iothub/Microsoft.Azure.Management.IotHub/src/Generated/Models/RoutingServiceBusTopicEndpointProperties.cs @@ -48,17 +48,20 @@ public RoutingServiceBusTopicEndpointProperties() /// Method used to authenticate /// against the service bus topic endpoint. Possible values include: /// 'keyBased', 'identityBased' + /// Managed identity properties of routing + /// service bus topic endpoint. /// The subscription identifier of the /// service bus topic endpoint. /// The name of the resource group of the /// service bus topic endpoint. - public RoutingServiceBusTopicEndpointProperties(string name, string id = default(string), string connectionString = default(string), string endpointUri = default(string), string entityPath = default(string), string authenticationType = default(string), string subscriptionId = default(string), string resourceGroup = default(string)) + public RoutingServiceBusTopicEndpointProperties(string name, string id = default(string), string connectionString = default(string), string endpointUri = default(string), string entityPath = default(string), string authenticationType = default(string), ManagedIdentity identity = default(ManagedIdentity), string subscriptionId = default(string), string resourceGroup = default(string)) { Id = id; ConnectionString = connectionString; EndpointUri = endpointUri; EntityPath = entityPath; AuthenticationType = authenticationType; + Identity = identity; Name = name; SubscriptionId = subscriptionId; ResourceGroup = resourceGroup; @@ -104,6 +107,13 @@ public RoutingServiceBusTopicEndpointProperties() [JsonProperty(PropertyName = "authenticationType")] public string AuthenticationType { get; set; } + /// + /// Gets or sets managed identity properties of routing service bus + /// topic endpoint. + /// + [JsonProperty(PropertyName = "identity")] + public ManagedIdentity Identity { get; set; } + /// /// Gets or sets the name that identifies this endpoint. The name can /// only include alphanumeric characters, periods, underscores, hyphens diff --git a/sdk/iothub/Microsoft.Azure.Management.IotHub/src/Generated/Models/RoutingSource.cs b/sdk/iothub/Microsoft.Azure.Management.IotHub/src/Generated/Models/RoutingSource.cs index e1caf2ad9a7f4..58161448faef4 100644 --- a/sdk/iothub/Microsoft.Azure.Management.IotHub/src/Generated/Models/RoutingSource.cs +++ b/sdk/iothub/Microsoft.Azure.Management.IotHub/src/Generated/Models/RoutingSource.cs @@ -21,5 +21,6 @@ public static class RoutingSource public const string TwinChangeEvents = "TwinChangeEvents"; public const string DeviceLifecycleEvents = "DeviceLifecycleEvents"; public const string DeviceJobLifecycleEvents = "DeviceJobLifecycleEvents"; + public const string DeviceConnectionStateEvents = "DeviceConnectionStateEvents"; } } diff --git a/sdk/iothub/Microsoft.Azure.Management.IotHub/src/Generated/Models/RoutingStorageContainerProperties.cs b/sdk/iothub/Microsoft.Azure.Management.IotHub/src/Generated/Models/RoutingStorageContainerProperties.cs index 31fb6a8c21d79..39131a2c06a21 100644 --- a/sdk/iothub/Microsoft.Azure.Management.IotHub/src/Generated/Models/RoutingStorageContainerProperties.cs +++ b/sdk/iothub/Microsoft.Azure.Management.IotHub/src/Generated/Models/RoutingStorageContainerProperties.cs @@ -47,6 +47,8 @@ public RoutingStorageContainerProperties() /// Method used to authenticate /// against the storage endpoint. Possible values include: 'keyBased', /// 'identityBased' + /// Managed identity properties of routing + /// storage endpoint. /// The subscription identifier of the /// storage account. /// The name of the resource group of the @@ -64,12 +66,13 @@ public RoutingStorageContainerProperties() /// to blobs. Supported values are 'avro', 'avrodeflate', and 'JSON'. /// Default value is 'avro'. Possible values include: 'Avro', /// 'AvroDeflate', 'JSON' - public RoutingStorageContainerProperties(string name, string containerName, string id = default(string), string connectionString = default(string), string endpointUri = default(string), string authenticationType = default(string), string subscriptionId = default(string), string resourceGroup = default(string), string fileNameFormat = default(string), int? batchFrequencyInSeconds = default(int?), int? maxChunkSizeInBytes = default(int?), string encoding = default(string)) + public RoutingStorageContainerProperties(string name, string containerName, string id = default(string), string connectionString = default(string), string endpointUri = default(string), string authenticationType = default(string), ManagedIdentity identity = default(ManagedIdentity), string subscriptionId = default(string), string resourceGroup = default(string), string fileNameFormat = default(string), int? batchFrequencyInSeconds = default(int?), int? maxChunkSizeInBytes = default(int?), string encoding = default(string)) { Id = id; ConnectionString = connectionString; EndpointUri = endpointUri; AuthenticationType = authenticationType; + Identity = identity; Name = name; SubscriptionId = subscriptionId; ResourceGroup = resourceGroup; @@ -112,6 +115,13 @@ public RoutingStorageContainerProperties() [JsonProperty(PropertyName = "authenticationType")] public string AuthenticationType { get; set; } + /// + /// Gets or sets managed identity properties of routing storage + /// endpoint. + /// + [JsonProperty(PropertyName = "identity")] + public ManagedIdentity Identity { get; set; } + /// /// Gets or sets the name that identifies this endpoint. The name can /// only include alphanumeric characters, periods, underscores, hyphens diff --git a/sdk/iothub/Microsoft.Azure.Management.IotHub/src/Generated/Models/StorageEndpointProperties.cs b/sdk/iothub/Microsoft.Azure.Management.IotHub/src/Generated/Models/StorageEndpointProperties.cs index b7d2f3400fddc..e6e2efa06946a 100644 --- a/sdk/iothub/Microsoft.Azure.Management.IotHub/src/Generated/Models/StorageEndpointProperties.cs +++ b/sdk/iothub/Microsoft.Azure.Management.IotHub/src/Generated/Models/StorageEndpointProperties.cs @@ -41,12 +41,15 @@ public StorageEndpointProperties() /// Specifies authentication type /// being used for connecting to the storage account. Possible values /// include: 'keyBased', 'identityBased' - public StorageEndpointProperties(string connectionString, string containerName, System.TimeSpan? sasTtlAsIso8601 = default(System.TimeSpan?), string authenticationType = default(string)) + /// Managed identity properties of storage + /// endpoint for file upload. + public StorageEndpointProperties(string connectionString, string containerName, System.TimeSpan? sasTtlAsIso8601 = default(System.TimeSpan?), string authenticationType = default(string), ManagedIdentity identity = default(ManagedIdentity)) { SasTtlAsIso8601 = sasTtlAsIso8601; ConnectionString = connectionString; ContainerName = containerName; AuthenticationType = authenticationType; + Identity = identity; CustomInit(); } @@ -86,6 +89,13 @@ public StorageEndpointProperties() [JsonProperty(PropertyName = "authenticationType")] public string AuthenticationType { get; set; } + /// + /// Gets or sets managed identity properties of storage endpoint for + /// file upload. + /// + [JsonProperty(PropertyName = "identity")] + public ManagedIdentity Identity { get; set; } + /// /// Validate the object. /// diff --git a/sdk/iothub/Microsoft.Azure.Management.IotHub/src/Generated/Models/TestAllRoutesInput.cs b/sdk/iothub/Microsoft.Azure.Management.IotHub/src/Generated/Models/TestAllRoutesInput.cs index 84ad4754dafa0..979db5f1440b4 100644 --- a/sdk/iothub/Microsoft.Azure.Management.IotHub/src/Generated/Models/TestAllRoutesInput.cs +++ b/sdk/iothub/Microsoft.Azure.Management.IotHub/src/Generated/Models/TestAllRoutesInput.cs @@ -31,7 +31,8 @@ public TestAllRoutesInput() /// /// Routing source. Possible values /// include: 'Invalid', 'DeviceMessages', 'TwinChangeEvents', - /// 'DeviceLifecycleEvents', 'DeviceJobLifecycleEvents' + /// 'DeviceLifecycleEvents', 'DeviceJobLifecycleEvents', + /// 'DeviceConnectionStateEvents' /// Routing message /// Routing Twin Reference public TestAllRoutesInput(string routingSource = default(string), RoutingMessage message = default(RoutingMessage), RoutingTwin twin = default(RoutingTwin)) @@ -50,7 +51,7 @@ public TestAllRoutesInput() /// /// Gets or sets routing source. Possible values include: 'Invalid', /// 'DeviceMessages', 'TwinChangeEvents', 'DeviceLifecycleEvents', - /// 'DeviceJobLifecycleEvents' + /// 'DeviceJobLifecycleEvents', 'DeviceConnectionStateEvents' /// [JsonProperty(PropertyName = "routingSource")] public string RoutingSource { get; set; } diff --git a/sdk/iothub/Microsoft.Azure.Management.IotHub/src/Generated/SdkInfo_iotHubClient.cs b/sdk/iothub/Microsoft.Azure.Management.IotHub/src/Generated/SdkInfo_iotHubClient.cs index ca27599bee50c..61d6fd6d11433 100644 --- a/sdk/iothub/Microsoft.Azure.Management.IotHub/src/Generated/SdkInfo_iotHubClient.cs +++ b/sdk/iothub/Microsoft.Azure.Management.IotHub/src/Generated/SdkInfo_iotHubClient.cs @@ -19,24 +19,24 @@ public static IEnumerable> ApiInfo_iotHubClient { return new Tuple[] { - new Tuple("Devices", "Certificates", "2020-03-01"), - new Tuple("Devices", "IotHub", "2020-03-01"), - new Tuple("Devices", "IotHubResource", "2020-03-01"), - new Tuple("Devices", "Operations", "2020-03-01"), - new Tuple("Devices", "PrivateEndpointConnections", "2020-03-01"), - new Tuple("Devices", "PrivateLinkResources", "2020-03-01"), - new Tuple("Devices", "ResourceProviderCommon", "2020-03-01"), + new Tuple("Devices", "Certificates", "2021-03-31"), + new Tuple("Devices", "IotHub", "2021-03-31"), + new Tuple("Devices", "IotHubResource", "2021-03-31"), + new Tuple("Devices", "Operations", "2021-03-31"), + new Tuple("Devices", "PrivateEndpointConnections", "2021-03-31"), + new Tuple("Devices", "PrivateLinkResources", "2021-03-31"), + new Tuple("Devices", "ResourceProviderCommon", "2021-03-31"), }.AsEnumerable(); } } // BEGIN: Code Generation Metadata Section public static readonly String AutoRestVersion = "v2"; public static readonly String AutoRestBootStrapperVersion = "autorest@2.0.4413"; - public static readonly String AutoRestCmdExecuted = "cmd.exe /c autorest.cmd https://github.com/Azure/azure-rest-api-specs/blob/master/specification/iothub/resource-manager/readme.md --csharp --version=v2 --reflect-api-versions --tag=package-2020-03 --csharp-sdks-folder=C:\\code\\Azure\\asfn1\\sdk"; + public static readonly String AutoRestCmdExecuted = "cmd.exe /c autorest.cmd https://github.com/Azure/azure-rest-api-specs/blob/master/specification/iothub/resource-manager/readme.md --csharp --version=v2 --reflect-api-versions --csharp-sdks-folder=C:\\code\\Azure\\asfn1\\sdk"; public static readonly String GithubForkName = "Azure"; public static readonly String GithubBranchName = "master"; - public static readonly String GithubCommidId = "a394eccc2ce26369cacbc113cf0c3a9c9501e689"; - public static readonly String CodeGenerationErrors = ""; + public static readonly String GithubCommidId = "7d4caa5e1c9996a25300b0b23ef426667e4a7bde"; + public static readonly String CodeGenerationErrors = ""; public static readonly String GithubRepoName = "azure-rest-api-specs"; // END: Code Generation Metadata Section } diff --git a/sdk/iothub/Microsoft.Azure.Management.IotHub/src/Microsoft.Azure.Management.IotHub.csproj b/sdk/iothub/Microsoft.Azure.Management.IotHub/src/Microsoft.Azure.Management.IotHub.csproj index 1652b769e87ae..b23ff6c9417e9 100644 --- a/sdk/iothub/Microsoft.Azure.Management.IotHub/src/Microsoft.Azure.Management.IotHub.csproj +++ b/sdk/iothub/Microsoft.Azure.Management.IotHub/src/Microsoft.Azure.Management.IotHub.csproj @@ -13,9 +13,9 @@ Provides management capabilities for Microsoft Azure Iot Hub. Microsoft Azure Iot Hub Management Microsoft.Azure.Management.IotHub - 3.0.1 + 4.0.0 Microsoft Azure IotHub;IotHub management;IotHub; - Regenerated from an updated 2020-03-01 swagger that removed faulty property validation. + Regenerated from an updated 2021-03-31 swagger. diff --git a/sdk/iothub/Microsoft.Azure.Management.IotHub/src/Properties/AssemblyInfo.cs b/sdk/iothub/Microsoft.Azure.Management.IotHub/src/Properties/AssemblyInfo.cs index 09c9cc003a559..3f7bd03e545dc 100644 --- a/sdk/iothub/Microsoft.Azure.Management.IotHub/src/Properties/AssemblyInfo.cs +++ b/sdk/iothub/Microsoft.Azure.Management.IotHub/src/Properties/AssemblyInfo.cs @@ -3,10 +3,9 @@ using System.Reflection; using System.Resources; -using System.Runtime.InteropServices; [assembly: AssemblyTitle("Microsoft Azure IotHub Management Library")] -[assembly: AssemblyDescription("Provides management functionality for Microsoft Azure IotHub Resources.")] +[assembly: AssemblyDescription("Provides management functionality for Microsoft Azure Iot Hub Resources.")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("Microsoft")] [assembly: AssemblyProduct("Microsoft Azure .NET SDK")] @@ -14,5 +13,5 @@ [assembly: AssemblyTrademark("")] [assembly: AssemblyCulture("")] [assembly: NeutralResourcesLanguage("en")] -[assembly: AssemblyVersion("3.0.1.0")] -[assembly: AssemblyFileVersion("3.0.1.0")] +[assembly: AssemblyVersion("4.0.0.0")] +[assembly: AssemblyFileVersion("4.0.0.0")] diff --git a/sdk/iothub/Microsoft.Azure.Management.IotHub/src/generate.ps1 b/sdk/iothub/Microsoft.Azure.Management.IotHub/src/generate.ps1 index 919c7f9a1ec67..64706ca7ffe18 100644 --- a/sdk/iothub/Microsoft.Azure.Management.IotHub/src/generate.ps1 +++ b/sdk/iothub/Microsoft.Azure.Management.IotHub/src/generate.ps1 @@ -4,7 +4,7 @@ try { - Start-AutoRestCodeGeneration -ResourceProvider "iothub/resource-manager" -AutoRestVersion "v2" -ConfigFileTag "package-2020-03" + Start-AutoRestCodeGeneration -ResourceProvider "iothub/resource-manager" -AutoRestVersion "v2" } catch { diff --git a/sdk/iothub/Microsoft.Azure.Management.IotHub/tests/Helpers/IotHubTestUtilities.cs b/sdk/iothub/Microsoft.Azure.Management.IotHub/tests/Helpers/IotHubTestUtilities.cs index d5da9ea34d0bd..8f2353960edb4 100644 --- a/sdk/iothub/Microsoft.Azure.Management.IotHub/tests/Helpers/IotHubTestUtilities.cs +++ b/sdk/iothub/Microsoft.Azure.Management.IotHub/tests/Helpers/IotHubTestUtilities.cs @@ -13,20 +13,20 @@ namespace IotHub.Tests.Helpers { public class IotHubTestUtilities { - public static string DefaultLocation = "WestUS2"; - public static string DefaultFailoverLocation = "WestCentralUS"; - public static string DefaultIotHubName = "DotNetHub"; - public static string DefaultUpdateIotHubName = "UpdateDotNetHub"; - public static string DefaultResourceGroupName = "DotNetHubRG"; - public static string DefaultUpdateResourceGroupName = "UpdateDotNetHubRG"; - public static string EventsEndpointName = "events"; - public static string DefaultCertificateIotHubName = "DotNetCertificateHub"; - public static string DefaultCertificateResourceGroupName = "DotNetCertificateHubRG"; - public static string DefaultIotHubCertificateName = "DotNetCertificateHubCertificate"; - public static string DefaultIotHubCertificateSubject = "Azure IoT Root CA"; - public static string DefaultIotHubCertificateThumbprint = "9F0983E8F2DB2DB3582997FEF331247D872DEE32"; - public static string DefaultIotHubCertificateType = "Microsoft.Devices/IotHubs/Certificates"; - public static string DefaultIotHubCertificateContent = "MIIBvjCCAWOgAwIBAgIQG6PoBFT6GLJGNKn/EaxltTAKBggqhkjOPQQDAjAcMRow" + public const string DefaultLocation = "WestUS2"; + public const string DefaultFailoverLocation = "WestCentralUS"; + public const string DefaultIotHubName = "DotNetHub"; + public const string DefaultUpdateIotHubName = "UpdateDotNetHub"; + public const string DefaultResourceGroupName = "DotNetHubRG"; + public const string DefaultUpdateResourceGroupName = "UpdatedDotNetHubRG"; + public const string EventsEndpointName = "events"; + public const string DefaultCertificateIotHubName = "DotNetCertificateHub"; + public const string DefaultCertificateResourceGroupName = "DotNetCertificateHubRG"; + public const string DefaultIotHubCertificateName = "DotNetCertificateHubCertificate"; + public const string DefaultIotHubCertificateSubject = "Azure IoT Root CA"; + public const string DefaultIotHubCertificateThumbprint = "9F0983E8F2DB2DB3582997FEF331247D872DEE32"; + public const string DefaultIotHubCertificateType = "Microsoft.Devices/IotHubs/Certificates"; + public const string DefaultIotHubCertificateContent = "MIIBvjCCAWOgAwIBAgIQG6PoBFT6GLJGNKn/EaxltTAKBggqhkjOPQQDAjAcMRow" + "GAYDVQQDDBFBenVyZSBJb1QgUm9vdCBDQTAeFw0xNzExMDMyMDUyNDZaFw0xNzEy" + "MDMyMTAyNDdaMBwxGjAYBgNVBAMMEUF6dXJlIElvVCBSb290IENBMFkwEwYHKoZI" + "zj0CAQYIKoZIzj0DAQcDQgAE+CgpnW3K+KRNIi/U6Zqe/Al9m8PExHX2KgakmGTf" @@ -69,8 +69,7 @@ public static ServiceBusManagementClient GetSbClient(MockContext context, Record public static ResourceManagementClient GetResourceManagementClient(MockContext context, RecordedDelegatingHandler handler) { handler.IsPassThrough = true; - var client = context.GetServiceClient(handlers: handler); - return client; + return context.GetServiceClient(handlers: handler); } } } diff --git a/sdk/iothub/Microsoft.Azure.Management.IotHub/tests/ScenarioTests/IotHubClientTests.cs b/sdk/iothub/Microsoft.Azure.Management.IotHub/tests/ScenarioTests/IotHubClientTests.cs index b63aa7c5a093a..c3a54c046cdbe 100644 --- a/sdk/iothub/Microsoft.Azure.Management.IotHub/tests/ScenarioTests/IotHubClientTests.cs +++ b/sdk/iothub/Microsoft.Azure.Management.IotHub/tests/ScenarioTests/IotHubClientTests.cs @@ -28,24 +28,24 @@ public async Task IotHubClient_HubCreate() using var context = MockContext.Start(GetType()); Initialize(context); - // Create Resource Group + // Create resource group ResourceGroup resourceGroup = await CreateResourceGroupAsync(IotHubTestUtilities.DefaultResourceGroupName) .ConfigureAwait(false); - // Check if Hub Exists and Delete - IotHubNameAvailabilityInfo iotHubNameAvailabilityInfo = await iotHubClient.IotHubResource + // Check if hub exists and delete + IotHubNameAvailabilityInfo iotHubNameAvailabilityInfo = await _iotHubClient.IotHubResource .CheckNameAvailabilityAsync(IotHubTestUtilities.DefaultIotHubName) .ConfigureAwait(false); if (!iotHubNameAvailabilityInfo.NameAvailable.Value) { - _ = await iotHubClient.IotHubResource + _ = await _iotHubClient.IotHubResource .DeleteAsync( IotHubTestUtilities.DefaultResourceGroupName, IotHubTestUtilities.DefaultIotHubName) .ConfigureAwait(false); - iotHubNameAvailabilityInfo = await iotHubClient.IotHubResource + iotHubNameAvailabilityInfo = await _iotHubClient.IotHubResource .CheckNameAvailabilityAsync(IotHubTestUtilities.DefaultIotHubName) .ConfigureAwait(false); iotHubNameAvailabilityInfo.NameAvailable.Should().BeTrue(); @@ -57,7 +57,7 @@ public async Task IotHubClient_HubCreate() Routing = await GetIotHubRoutingPropertiesAsync(resourceGroup).ConfigureAwait(false) }; - IotHubDescription iotHub = await iotHubClient.IotHubResource + IotHubDescription iotHub = await _iotHubClient.IotHubResource .CreateOrUpdateAsync( resourceGroup.Name, IotHubTestUtilities.DefaultIotHubName, @@ -79,13 +79,13 @@ public async Task IotHubClient_HubCreate() iotHub.Sku.Name.Should().Be(IotHubSku.S1); iotHub.Sku.Capacity.Should().Be(1); - // Add and Get Tags + // Add and get tags var tags = new Dictionary { { "key1", "value1" }, { "key2", "value2" } }; - iotHub = await iotHubClient.IotHubResource + iotHub = await _iotHubClient.IotHubResource .UpdateAsync(IotHubTestUtilities.DefaultResourceGroupName, IotHubTestUtilities.DefaultIotHubName, tags) .ConfigureAwait(false); @@ -93,7 +93,7 @@ public async Task IotHubClient_HubCreate() iotHub.Tags.Count().Should().Be(tags.Count); iotHub.Tags.Should().BeEquivalentTo(tags); - UserSubscriptionQuotaListResult subscriptionQuota = await iotHubClient.ResourceProviderCommon + UserSubscriptionQuotaListResult subscriptionQuota = await _iotHubClient.ResourceProviderCommon .GetSubscriptionQuotaAsync() .ConfigureAwait(false); @@ -101,26 +101,26 @@ public async Task IotHubClient_HubCreate() subscriptionQuota.Value.FirstOrDefault(x => x.Name.Value.Equals("freeIotHubCount")).Limit.Should().BeGreaterThan(0); subscriptionQuota.Value.FirstOrDefault(x => x.Name.Value.Equals("paidIotHubCount")).Limit.Should().BeGreaterThan(0); - IPage endpointHealth = await iotHubClient + IPage endpointHealth = await _iotHubClient .IotHubResource .GetEndpointHealthAsync(IotHubTestUtilities.DefaultResourceGroupName, IotHubTestUtilities.DefaultIotHubName); endpointHealth.Count().Should().Be(4); Assert.Contains(endpointHealth, q => q.EndpointId.Equals("events", StringComparison.OrdinalIgnoreCase)); var testAllRoutesInput = new TestAllRoutesInput(RoutingSource.DeviceMessages, new RoutingMessage(), new RoutingTwin()); - TestAllRoutesResult testAllRoutesResult = await iotHubClient.IotHubResource + TestAllRoutesResult testAllRoutesResult = await _iotHubClient.IotHubResource .TestAllRoutesAsync(testAllRoutesInput, IotHubTestUtilities.DefaultIotHubName, IotHubTestUtilities.DefaultResourceGroupName) .ConfigureAwait(false); testAllRoutesResult.Routes.Count.Should().Be(4); var testRouteInput = new TestRouteInput(properties.Routing.Routes[0], new RoutingMessage(), new RoutingTwin()); - TestRouteResult testRouteResult = await iotHubClient.IotHubResource + TestRouteResult testRouteResult = await _iotHubClient.IotHubResource .TestRouteAsync(testRouteInput, IotHubTestUtilities.DefaultIotHubName, IotHubTestUtilities.DefaultResourceGroupName) .ConfigureAwait(false); testRouteResult.Result.Should().Be("true"); // Get quota metrics - var quotaMetrics = await iotHubClient.IotHubResource + var quotaMetrics = await _iotHubClient.IotHubResource .GetQuotaMetricsAsync( IotHubTestUtilities.DefaultResourceGroupName, IotHubTestUtilities.DefaultIotHubName) @@ -135,54 +135,55 @@ public async Task IotHubClient_HubCreate() && q.CurrentValue == 0 && q.MaxValue == 1000000); - // Get all Iot Hubs in a resource group - IPage iotHubs = await iotHubClient.IotHubResource + // Get all IoT hubs in a resource group + IPage iotHubs = await _iotHubClient.IotHubResource .ListByResourceGroupAsync(IotHubTestUtilities.DefaultResourceGroupName) .ConfigureAwait(false); iotHubs.Count().Should().BeGreaterThan(0); - // Get all Iot Hubs in a subscription - IPage iotHubBySubscription = await iotHubClient.IotHubResource + // Get all IoT hubs in a subscription + IPage iotHubBySubscription = await _iotHubClient.IotHubResource .ListBySubscriptionAsync() .ConfigureAwait(false); iotHubBySubscription.Count().Should().BeGreaterThan(0); - // Get Registry Stats on newly created hub - RegistryStatistics regStats = await iotHubClient.IotHubResource + // Get registry stats on newly created hub + RegistryStatistics regStats = await _iotHubClient.IotHubResource .GetStatsAsync(IotHubTestUtilities.DefaultResourceGroupName, IotHubTestUtilities.DefaultIotHubName) .ConfigureAwait(false); regStats.TotalDeviceCount.Value.Should().Be(0); regStats.EnabledDeviceCount.Value.Should().Be(0); regStats.DisabledDeviceCount.Value.Should().Be(0); - // Get Valid Skus - IPage skus = await iotHubClient.IotHubResource + // Get valid skus + IPage skus = await _iotHubClient.IotHubResource .GetValidSkusAsync( IotHubTestUtilities.DefaultResourceGroupName, IotHubTestUtilities.DefaultIotHubName) .ConfigureAwait(false); skus.Count().Should().Be(3); - // Get All Iot Hub Keys - IPage keys = await iotHubClient.IotHubResource + // Get all IoT hub keys + const string hubOwnerRole = "iothubowner"; + IPage keys = await _iotHubClient.IotHubResource .ListKeysAsync( IotHubTestUtilities.DefaultResourceGroupName, IotHubTestUtilities.DefaultIotHubName) .ConfigureAwait(false); keys.Count().Should().BeGreaterThan(0); - Assert.Contains(keys, k => k.KeyName.Equals("iothubowner", StringComparison.OrdinalIgnoreCase)); + Assert.Contains(keys, k => k.KeyName.Equals(hubOwnerRole, StringComparison.OrdinalIgnoreCase)); - // Get specific IotHub Key - SharedAccessSignatureAuthorizationRule key = await iotHubClient.IotHubResource + // Get specific IoT Hub key + SharedAccessSignatureAuthorizationRule key = await _iotHubClient.IotHubResource .GetKeysForKeyNameAsync( IotHubTestUtilities.DefaultResourceGroupName, IotHubTestUtilities.DefaultIotHubName, - "iothubowner") + hubOwnerRole) .ConfigureAwait(false); - key.KeyName.Should().Be("iothubowner"); + key.KeyName.Should().Be(hubOwnerRole); - // Get All EH consumer groups - IPage ehConsumerGroups = await iotHubClient.IotHubResource + // Get all EH consumer groups + IPage ehConsumerGroups = await _iotHubClient.IotHubResource .ListEventHubConsumerGroupsAsync( IotHubTestUtilities.DefaultResourceGroupName, IotHubTestUtilities.DefaultIotHubName, @@ -192,37 +193,37 @@ public async Task IotHubClient_HubCreate() Assert.Contains(ehConsumerGroups, e => e.Name.Equals("$Default", StringComparison.OrdinalIgnoreCase)); // Add EH consumer group - var ehConsumerGroup = await iotHubClient.IotHubResource + const string ehCgName = "testConsumerGroup"; + var ehConsumerGroup = await _iotHubClient.IotHubResource .CreateEventHubConsumerGroupAsync( IotHubTestUtilities.DefaultResourceGroupName, IotHubTestUtilities.DefaultIotHubName, IotHubTestUtilities.EventsEndpointName, - "testConsumerGroup") + ehCgName, + new EventHubConsumerGroupName(ehCgName)) .ConfigureAwait(false); - - ehConsumerGroup.Name.Should().Be("testConsumerGroup"); + ehConsumerGroup.Name.Should().Be(ehCgName); // Get EH consumer group - ehConsumerGroup = await iotHubClient.IotHubResource + ehConsumerGroup = await _iotHubClient.IotHubResource .GetEventHubConsumerGroupAsync( IotHubTestUtilities.DefaultResourceGroupName, IotHubTestUtilities.DefaultIotHubName, IotHubTestUtilities.EventsEndpointName, - "testConsumerGroup") + ehCgName) .ConfigureAwait(false); - - ehConsumerGroup.Name.Should().Be("testConsumerGroup"); + ehConsumerGroup.Name.Should().Be(ehCgName); // Delete EH consumer group - await iotHubClient.IotHubResource.DeleteEventHubConsumerGroupAsync( + await _iotHubClient.IotHubResource.DeleteEventHubConsumerGroupAsync( IotHubTestUtilities.DefaultResourceGroupName, IotHubTestUtilities.DefaultIotHubName, IotHubTestUtilities.EventsEndpointName, - "testConsumerGroup") + ehCgName) .ConfigureAwait(false); // Get all of the available IoT Hub REST API operations - IPage operationList = iotHubClient.Operations.List(); + IPage operationList = _iotHubClient.Operations.List(); operationList.Count().Should().BeGreaterThan(0); Assert.Contains(operationList, e => e.Name.Equals("Microsoft.Devices/iotHubs/Read", StringComparison.OrdinalIgnoreCase)); @@ -233,18 +234,18 @@ await iotHubClient.IotHubResource.DeleteEventHubConsumerGroupAsync( hubReadOperation.First().Display.Operation.Should().Be("Get IotHub(s)"); // Initiate manual failover - IotHubDescription iotHubBeforeFailover = await iotHubClient.IotHubResource + IotHubDescription iotHubBeforeFailover = await _iotHubClient.IotHubResource .GetAsync( IotHubTestUtilities.DefaultResourceGroupName, IotHubTestUtilities.DefaultIotHubName) .ConfigureAwait(false); - await iotHubClient.IotHub + await _iotHubClient.IotHub .ManualFailoverAsync( IotHubTestUtilities.DefaultIotHubName, IotHubTestUtilities.DefaultResourceGroupName, IotHubTestUtilities.DefaultFailoverLocation) .ConfigureAwait(false); - var iotHubAfterFailover = await iotHubClient.IotHubResource + var iotHubAfterFailover = await _iotHubClient.IotHubResource .GetAsync( IotHubTestUtilities.DefaultResourceGroupName, IotHubTestUtilities.DefaultIotHubName) @@ -280,17 +281,17 @@ public async Task IotHubClient_HubUpdate() using MockContext context = MockContext.Start(GetType()); Initialize(context); - // Create Resource Group + // Create resource group ResourceGroup resourceGroup = await CreateResourceGroupAsync(IotHubTestUtilities.DefaultUpdateResourceGroupName); - // Check if Hub Exists and Delete - var iotHubNameAvailabilityInfo = await iotHubClient.IotHubResource + // Check if hub exists and delete + var iotHubNameAvailabilityInfo = await _iotHubClient.IotHubResource .CheckNameAvailabilityAsync(IotHubTestUtilities.DefaultUpdateIotHubName) .ConfigureAwait(false); if (!iotHubNameAvailabilityInfo.NameAvailable.Value) { - _ = await iotHubClient.IotHubResource + _ = await _iotHubClient.IotHubResource .DeleteAsync( IotHubTestUtilities.DefaultResourceGroupName, IotHubTestUtilities.DefaultUpdateIotHubName) @@ -309,7 +310,7 @@ public async Task IotHubClient_HubUpdate() var retIotHub = await UpdateIotHubAsync(resourceGroup, iotHub, IotHubTestUtilities.DefaultUpdateIotHubName) .ConfigureAwait(false); - // Update IotHub with routing rules + // Update Iot Hub with routing rules iotHub.Properties.Routing = await GetIotHubRoutingPropertiesAsync(resourceGroup).ConfigureAwait(false); retIotHub = await UpdateIotHubAsync(resourceGroup, iotHub, IotHubTestUtilities.DefaultUpdateIotHubName).ConfigureAwait(false); @@ -321,8 +322,8 @@ public async Task IotHubClient_HubUpdate() retIotHub.Properties.Routing.Endpoints.ServiceBusQueues.Count.Should().Be(1); retIotHub.Properties.Routing.Routes[0].Name.Should().Be("route1"); - // Get an Iot Hub - var iotHubDesc = await iotHubClient.IotHubResource + // Get an IoT Hub + var iotHubDesc = await _iotHubClient.IotHubResource .GetAsync( IotHubTestUtilities.DefaultUpdateResourceGroupName, IotHubTestUtilities.DefaultUpdateIotHubName) @@ -333,8 +334,8 @@ public async Task IotHubClient_HubUpdate() iotHubDesc.Sku.Capacity.Should().Be(iotHub.Sku.Capacity); iotHubDesc.Name.Should().Be(IotHubTestUtilities.DefaultUpdateIotHubName); - // Update Again - // perform a fake update + // Update again + // Perform a fake update iotHubDesc.Properties.Routing.Endpoints.EventHubs[0].ResourceGroup = "1"; retIotHub = await UpdateIotHubAsync(resourceGroup, iotHubDesc, IotHubTestUtilities.DefaultUpdateIotHubName).ConfigureAwait(false); @@ -367,28 +368,28 @@ public async Task IotHubClient_HubCertificate() using var context = MockContext.Start(GetType()); Initialize(context); - // Create Resource Group + // Create resource group ResourceGroup resourceGroup = await CreateResourceGroupAsync(IotHubTestUtilities.DefaultCertificateResourceGroupName).ConfigureAwait(false); - // Check if Hub Exists and Delete - IotHubNameAvailabilityInfo iotHubNameAvailabilityInfo = await iotHubClient.IotHubResource + // Check if hub exists and delete + IotHubNameAvailabilityInfo iotHubNameAvailabilityInfo = await _iotHubClient.IotHubResource .CheckNameAvailabilityAsync(IotHubTestUtilities.DefaultCertificateIotHubName) .ConfigureAwait(false); if (!iotHubNameAvailabilityInfo.NameAvailable.Value) { - _ = await iotHubClient.IotHubResource + _ = await _iotHubClient.IotHubResource .DeleteAsync( IotHubTestUtilities.DefaultCertificateResourceGroupName, IotHubTestUtilities.DefaultCertificateIotHubName) .ConfigureAwait(false); } - // Create Hub + // Create hub IotHubDescription iotHub = await CreateIotHubAsync(resourceGroup, IotHubTestUtilities.DefaultLocation, IotHubTestUtilities.DefaultCertificateIotHubName, null) .ConfigureAwait(false); - // Upload Certificate to the Hub + // Upload certificate to the hub CertificateDescription newCertificateDescription = await CreateCertificateAsync( resourceGroup, IotHubTestUtilities.DefaultCertificateIotHubName, @@ -454,13 +455,12 @@ await DeleteCertificateAsync( private async Task GetIotHubRoutingPropertiesAsync(ResourceGroup resourceGroup) { - string ehConnectionString = await CreateExternalEhAsync(resourceGroup, location); - Tuple sbTopicConnectionString = await CreateExternalQueueAndTopicAsync(resourceGroup, location); + string ehConnectionString = await CreateExternalEhAsync(resourceGroup, _location); + Tuple sbTopicConnectionString = await CreateExternalQueueAndTopicAsync(resourceGroup, _location); string sbConnectionString = sbTopicConnectionString.Item1; string topicConnectionString = sbTopicConnectionString.Item2; - // Create Hub - + // Create hub var routingProperties = new RoutingProperties { Endpoints = new RoutingEndpoints diff --git a/sdk/iothub/Microsoft.Azure.Management.IotHub/tests/ScenarioTests/IotHubTestBase.cs b/sdk/iothub/Microsoft.Azure.Management.IotHub/tests/ScenarioTests/IotHubTestBase.cs index 52a3a96aac944..fd948ccdc6e3b 100644 --- a/sdk/iothub/Microsoft.Azure.Management.IotHub/tests/ScenarioTests/IotHubTestBase.cs +++ b/sdk/iothub/Microsoft.Azure.Management.IotHub/tests/ScenarioTests/IotHubTestBase.cs @@ -24,47 +24,51 @@ namespace IotHub.Tests.ScenarioTests { public class IotHubTestBase { - protected ResourceManagementClient resourcesClient; - protected IotHubClient iotHubClient; - protected EventHubManagementClient ehClient; - protected ServiceBusManagementClient sbClient; + protected ResourceManagementClient _resourcesClient; + protected IotHubClient _iotHubClient; + protected EventHubManagementClient _ehClient; + protected ServiceBusManagementClient _sbClient; - protected bool initialized = false; - protected object locker = new object(); - protected string location; - protected TestEnvironment testEnv; + protected bool _isInitialized = false; + protected object _initializeLock = new object(); + protected string _location; + protected TestEnvironment _testEnvironment; protected void Initialize(MockContext context) { - if (!initialized) + if (_isInitialized) { - lock (locker) + return; + } + + lock (_initializeLock) + { + if (_isInitialized) { - if (!initialized) - { - testEnv = TestEnvironmentFactory.GetTestEnvironment(); - resourcesClient = IotHubTestUtilities.GetResourceManagementClient(context, new RecordedDelegatingHandler { StatusCodeToReturn = HttpStatusCode.OK }); - iotHubClient = IotHubTestUtilities.GetIotHubClient(context, new RecordedDelegatingHandler { StatusCodeToReturn = HttpStatusCode.OK }); - ehClient = IotHubTestUtilities.GetEhClient(context, new RecordedDelegatingHandler { StatusCodeToReturn = HttpStatusCode.OK }); - sbClient = IotHubTestUtilities.GetSbClient(context, new RecordedDelegatingHandler { StatusCodeToReturn = HttpStatusCode.OK }); - - location = string.IsNullOrEmpty(Environment.GetEnvironmentVariable("AZURE_LOCATION")) - ? IotHubTestUtilities.DefaultLocation - : Environment.GetEnvironmentVariable("AZURE_LOCATION").Replace(" ", "").ToLower(); - - initialized = true; - } + return; } + + _testEnvironment = TestEnvironmentFactory.GetTestEnvironment(); + _resourcesClient = IotHubTestUtilities.GetResourceManagementClient(context, new RecordedDelegatingHandler { StatusCodeToReturn = HttpStatusCode.OK }); + _iotHubClient = IotHubTestUtilities.GetIotHubClient(context, new RecordedDelegatingHandler { StatusCodeToReturn = HttpStatusCode.OK }); + _ehClient = IotHubTestUtilities.GetEhClient(context, new RecordedDelegatingHandler { StatusCodeToReturn = HttpStatusCode.OK }); + _sbClient = IotHubTestUtilities.GetSbClient(context, new RecordedDelegatingHandler { StatusCodeToReturn = HttpStatusCode.OK }); + + _location = string.IsNullOrEmpty(Environment.GetEnvironmentVariable("AZURE_LOCATION")) + ? IotHubTestUtilities.DefaultLocation + : Environment.GetEnvironmentVariable("AZURE_LOCATION").Replace(" ", "").ToLower(); + + _isInitialized = true; } } protected async Task CreateExternalEhAsync(ResourceGroup resourceGroup, string location) { - string namespaceName = "iothubcsharpsdkehnamespacetest"; - string ehName = "iothubcsharpsdkehtest"; - string authRuleName = "iothubcsharpsdkehtestrule"; + const string namespaceName = "iothubcsharpsdkehnamespacetest"; + const string ehName = "iothubcsharpsdkehtest"; + const string authRuleName = "iothubcsharpsdkehtestrule"; - EHModel.NamespaceResource namespaceResource = await ehClient.Namespaces + EHModel.NamespaceResource namespaceResource = await _ehClient.Namespaces .CreateOrUpdateAsync( resourceGroup.Name, namespaceName, @@ -80,7 +84,7 @@ protected async Task CreateExternalEhAsync(ResourceGroup resourceGroup, .ConfigureAwait(false); namespaceResource.ProvisioningState.Should().Be("Succeeded"); - _ = await ehClient.EventHubs + _ = await _ehClient.EventHubs .CreateOrUpdateAsync( resourceGroup.Name, namespaceName, @@ -91,7 +95,7 @@ protected async Task CreateExternalEhAsync(ResourceGroup resourceGroup, }) .ConfigureAwait(false); - await ehClient.EventHubs + await _ehClient.EventHubs .CreateOrUpdateAuthorizationRuleAsync( resourceGroup.Name, namespaceName, @@ -108,7 +112,7 @@ await ehClient.EventHubs }) .ConfigureAwait(false); - EHModel.ResourceListKeys listKeys = await ehClient.EventHubs + EHModel.ResourceListKeys listKeys = await _ehClient.EventHubs .ListKeysAsync(resourceGroup.Name, namespaceName, ehName, authRuleName) .ConfigureAwait(false); @@ -117,12 +121,12 @@ await ehClient.EventHubs protected async Task> CreateExternalQueueAndTopicAsync(ResourceGroup resourceGroup, string location) { - string sbNamespaceName = "iotHubCSharpSDKSBNamespaceTest"; - string sbName = "iotHubCSharpSDKSBTest"; - string topicName = "iotHubCSharpSDKTopicTest"; - string authRuleName = "iotHubCSharpSDKSBTopicTestRule"; + const string sbNamespaceName = "iotHubCSharpSDKSBNamespaceTest"; + const string sbName = "iotHubCSharpSDKSBTest"; + const string topicName = "iotHubCSharpSDKTopicTest"; + const string authRuleName = "iotHubCSharpSDKSBTopicTestRule"; - SBModel.NamespaceResource namespaceResource = await sbClient.Namespaces + SBModel.NamespaceResource namespaceResource = await _sbClient.Namespaces .CreateOrUpdateAsync( resourceGroup.Name, sbNamespaceName, @@ -138,14 +142,14 @@ protected async Task> CreateExternalQueueAndTopicAsync(Res .ConfigureAwait(false); namespaceResource.ProvisioningState.Should().Be("Succeeded"); - _ = await sbClient.Queues + _ = await _sbClient.Queues .CreateOrUpdateAsync(resourceGroup.Name, sbNamespaceName, sbName, new QueueCreateOrUpdateParameters { Location = location }) .ConfigureAwait(false); - _ = await sbClient.Topics + _ = await _sbClient.Topics .CreateOrUpdateAsync(resourceGroup.Name, sbNamespaceName, topicName, new TopicCreateOrUpdateParameters { Location = location }) .ConfigureAwait(false); - await sbClient.Queues + await _sbClient.Queues .CreateOrUpdateAuthorizationRuleAsync( resourceGroup.Name, sbNamespaceName, @@ -162,7 +166,7 @@ await sbClient.Queues }) .ConfigureAwait(false); - await sbClient.Topics + await _sbClient.Topics .CreateOrUpdateAuthorizationRuleAsync( resourceGroup.Name, sbNamespaceName, @@ -179,10 +183,10 @@ await sbClient.Topics }) .ConfigureAwait(false); - SBModel.ResourceListKeys sbKeys = await sbClient.Queues + SBModel.ResourceListKeys sbKeys = await _sbClient.Queues .ListKeysAsync(resourceGroup.Name, sbNamespaceName, sbName, authRuleName) .ConfigureAwait(false); - SBModel.ResourceListKeys topicKeys = await sbClient.Queues + SBModel.ResourceListKeys topicKeys = await _sbClient.Queues .ListKeysAsync(resourceGroup.Name, sbNamespaceName, topicName, authRuleName) .ConfigureAwait(false); @@ -202,7 +206,7 @@ protected Task CreateIotHubAsync(ResourceGroup resourceGroup, Properties = properties, }; - return iotHubClient.IotHubResource.CreateOrUpdateAsync( + return _iotHubClient.IotHubResource.CreateOrUpdateAsync( resourceGroup.Name, iotHubName, createIotHubDescription); @@ -210,7 +214,7 @@ protected Task CreateIotHubAsync(ResourceGroup resourceGroup, protected Task UpdateIotHubAsync(ResourceGroup resourceGroup, IotHubDescription iotHubDescription, string iotHubName) { - return iotHubClient.IotHubResource.CreateOrUpdateAsync( + return _iotHubClient.IotHubResource.CreateOrUpdateAsync( resourceGroup.Name, iotHubName, iotHubDescription); @@ -218,7 +222,7 @@ protected Task UpdateIotHubAsync(ResourceGroup resourceGroup, protected Task CreateResourceGroupAsync(string resourceGroupName) { - return resourcesClient.ResourceGroups.CreateOrUpdateAsync( + return _resourcesClient.ResourceGroups.CreateOrUpdateAsync( resourceGroupName, new ResourceGroup { @@ -228,7 +232,7 @@ protected Task CreateResourceGroupAsync(string resourceGroupName) protected Task DeleteResourceGroupAsync(string resourceGroupName) { - return resourcesClient.ResourceGroups.DeleteAsync(resourceGroupName); + return _resourcesClient.ResourceGroups.DeleteAsync(resourceGroupName); } protected Task CreateCertificateAsync( @@ -236,32 +240,39 @@ protected Task CreateCertificateAsync( string iotHubName, string certificateName) { - return iotHubClient.Certificates.CreateOrUpdateAsync( + return _iotHubClient.Certificates.CreateOrUpdateAsync( resourceGroup.Name, iotHubName, certificateName, null, - IotHubTestUtilities.DefaultIotHubCertificateContent); + new CertificateProperties( + IotHubTestUtilities.DefaultIotHubCertificateSubject, + null, + IotHubTestUtilities.DefaultIotHubCertificateThumbprint, + null, + null, + null, + IotHubTestUtilities.DefaultIotHubCertificateContent)); } protected Task GetCertificatesAsync(ResourceGroup resourceGroup, string iotHubName) { - return iotHubClient.Certificates.ListByIotHubAsync(resourceGroup.Name, iotHubName); + return _iotHubClient.Certificates.ListByIotHubAsync(resourceGroup.Name, iotHubName); } protected Task GetCertificateAsync(ResourceGroup resourceGroup, string iotHubName, string certificateName) { - return iotHubClient.Certificates.GetAsync(resourceGroup.Name, iotHubName, certificateName); + return _iotHubClient.Certificates.GetAsync(resourceGroup.Name, iotHubName, certificateName); } protected Task GenerateVerificationCodeAsync(ResourceGroup resourceGroup, string iotHubName, string certificateName, string etag) { - return iotHubClient.Certificates.GenerateVerificationCodeAsync(resourceGroup.Name, iotHubName, certificateName, etag); + return _iotHubClient.Certificates.GenerateVerificationCodeAsync(resourceGroup.Name, iotHubName, certificateName, etag); } protected Task DeleteCertificateAsync(ResourceGroup resourceGroup, string iotHubName, string certificateName, string Etag) { - return iotHubClient.Certificates.DeleteAsync(resourceGroup.Name, iotHubName, certificateName, Etag); + return _iotHubClient.Certificates.DeleteAsync(resourceGroup.Name, iotHubName, certificateName, Etag); } } } diff --git a/sdk/iothub/Microsoft.Azure.Management.IotHub/tests/SessionRecords/IotHubClientTests/IotHubClient_HubCertificate.json b/sdk/iothub/Microsoft.Azure.Management.IotHub/tests/SessionRecords/IotHubClientTests/IotHubClient_HubCertificate.json index 5969e1712b350..f95e85163b6d9 100644 --- a/sdk/iothub/Microsoft.Azure.Management.IotHub/tests/SessionRecords/IotHubClientTests/IotHubClient_HubCertificate.json +++ b/sdk/iothub/Microsoft.Azure.Management.IotHub/tests/SessionRecords/IotHubClientTests/IotHubClient_HubCertificate.json @@ -7,15 +7,15 @@ "RequestBody": "{\r\n \"location\": \"WestUS2\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "4d9d6eed-5cf4-40fd-9e97-1bd2edd59f3f" + "9f10becf-0de7-4be3-9684-4a0506f3af84" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.19043.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" ], "Content-Type": [ @@ -36,13 +36,13 @@ "1199" ], "x-ms-request-id": [ - "5da7e083-8df9-40ec-b302-9b7ae6476d88" + "c80cd805-cc67-484c-b9e1-9c90ea285f38" ], "x-ms-correlation-request-id": [ - "5da7e083-8df9-40ec-b302-9b7ae6476d88" + "c80cd805-cc67-484c-b9e1-9c90ea285f38" ], "x-ms-routing-request-id": [ - "WESTUS2:20210219T185947Z:5da7e083-8df9-40ec-b302-9b7ae6476d88" + "WESTUS2:20210514T191242Z:c80cd805-cc67-484c-b9e1-9c90ea285f38" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,7 +51,7 @@ "nosniff" ], "Date": [ - "Fri, 19 Feb 2021 18:59:46 GMT" + "Fri, 14 May 2021 19:12:41 GMT" ], "Content-Length": [ "198" @@ -67,22 +67,22 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/providers/Microsoft.Devices/checkNameAvailability?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9jaGVja05hbWVBdmFpbGFiaWxpdHk/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/providers/Microsoft.Devices/checkNameAvailability?api-version=2021-03-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9jaGVja05hbWVBdmFpbGFiaWxpdHk/YXBpLXZlcnNpb249MjAyMS0wMy0zMQ==", "RequestMethod": "POST", "RequestBody": "{\r\n \"name\": \"DotNetCertificateHub\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "0b5f44a1-0239-464e-9a9b-6c9120c995b3" + "115cf6f1-a310-4402-a1e2-2433042fd681" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -105,13 +105,13 @@ "1199" ], "x-ms-request-id": [ - "bf82cff7-8bfb-4203-a63e-598662b2ffbf" + "135f1612-219f-4565-a87b-be407f420bf4" ], "x-ms-correlation-request-id": [ - "bf82cff7-8bfb-4203-a63e-598662b2ffbf" + "135f1612-219f-4565-a87b-be407f420bf4" ], "x-ms-routing-request-id": [ - "WESTUS2:20210219T185947Z:bf82cff7-8bfb-4203-a63e-598662b2ffbf" + "WESTUS2:20210514T191243Z:135f1612-219f-4565-a87b-be407f420bf4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -120,7 +120,7 @@ "nosniff" ], "Date": [ - "Fri, 19 Feb 2021 18:59:47 GMT" + "Fri, 14 May 2021 19:12:43 GMT" ], "Content-Length": [ "56" @@ -136,22 +136,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/DotNetCertificateHubRG/providers/Microsoft.Devices/IotHubs/DotNetCertificateHub?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Jlc291cmNlR3JvdXBzL0RvdE5ldENlcnRpZmljYXRlSHViUkcvcHJvdmlkZXJzL01pY3Jvc29mdC5EZXZpY2VzL0lvdEh1YnMvRG90TmV0Q2VydGlmaWNhdGVIdWI/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/DotNetCertificateHubRG/providers/Microsoft.Devices/IotHubs/DotNetCertificateHub?api-version=2021-03-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Jlc291cmNlR3JvdXBzL0RvdE5ldENlcnRpZmljYXRlSHViUkcvcHJvdmlkZXJzL01pY3Jvc29mdC5EZXZpY2VzL0lvdEh1YnMvRG90TmV0Q2VydGlmaWNhdGVIdWI/YXBpLXZlcnNpb249MjAyMS0wMy0zMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"WestUS2\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "2323723a-602d-41ae-9f2d-69b4c8860e58" + "849a7e9c-7040-4e87-bd26-a20b8e704e6d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -168,7 +168,7 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/providers/Microsoft.Devices/operationResults/b3NfaWhfZTc0MDc2NGUtNDBhZS00Y2EzLWIyZWYtM2NkNDI3NDE3MjM3?api-version=2020-03-01&operationSource=os_ih&asyncinfo" + "https://management.azure.com/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/providers/Microsoft.Devices/operationResults/b3NfaWhfZDNkODJhMjMtYzgyMy00YTI0LTlmNGUtYWJhNmFiZTVmNDVh?api-version=2021-03-31&operationSource=os_ih&asyncinfo" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -177,13 +177,13 @@ "4999" ], "x-ms-request-id": [ - "a992d0fa-7272-4a17-81a2-ef7837e495b3" + "4cb7af18-872c-4bd5-872a-bb5d39a17c45" ], "x-ms-correlation-request-id": [ - "a992d0fa-7272-4a17-81a2-ef7837e495b3" + "4cb7af18-872c-4bd5-872a-bb5d39a17c45" ], "x-ms-routing-request-id": [ - "WESTUS2:20210219T185951Z:a992d0fa-7272-4a17-81a2-ef7837e495b3" + "WESTUS2:20210514T191247Z:4cb7af18-872c-4bd5-872a-bb5d39a17c45" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -192,7 +192,7 @@ "nosniff" ], "Date": [ - "Fri, 19 Feb 2021 18:59:51 GMT" + "Fri, 14 May 2021 19:12:46 GMT" ], "Content-Length": [ "679" @@ -208,16 +208,16 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/providers/Microsoft.Devices/operationResults/b3NfaWhfZTc0MDc2NGUtNDBhZS00Y2EzLWIyZWYtM2NkNDI3NDE3MjM3?api-version=2020-03-01&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmWlRjME1EYzJOR1V0TkRCaFpTMDBZMkV6TFdJeVpXWXRNMk5rTkRJM05ERTNNak0zP2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEmb3BlcmF0aW9uU291cmNlPW9zX2loJmFzeW5jaW5mbw==", + "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/providers/Microsoft.Devices/operationResults/b3NfaWhfZDNkODJhMjMtYzgyMy00YTI0LTlmNGUtYWJhNmFiZTVmNDVh?api-version=2021-03-31&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmWkROa09ESmhNak10WXpneU15MDBZVEkwTFRsbU5HVXRZV0poTm1GaVpUVm1ORFZoP2FwaS12ZXJzaW9uPTIwMjEtMDMtMzEmb3BlcmF0aW9uU291cmNlPW9zX2loJmFzeW5jaW5mbw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.0.0.0" ] }, "ResponseHeaders": { @@ -234,13 +234,13 @@ "11999" ], "x-ms-request-id": [ - "66fe345e-ae16-41e7-ac0a-46a5dfde6301" + "bcf16774-882a-41c5-b9c0-ba7fefd1783c" ], "x-ms-correlation-request-id": [ - "66fe345e-ae16-41e7-ac0a-46a5dfde6301" + "bcf16774-882a-41c5-b9c0-ba7fefd1783c" ], "x-ms-routing-request-id": [ - "WESTUS2:20210219T190021Z:66fe345e-ae16-41e7-ac0a-46a5dfde6301" + "WESTUS2:20210514T191317Z:bcf16774-882a-41c5-b9c0-ba7fefd1783c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -249,7 +249,7 @@ "nosniff" ], "Date": [ - "Fri, 19 Feb 2021 19:00:21 GMT" + "Fri, 14 May 2021 19:13:17 GMT" ], "Content-Length": [ "20" @@ -265,16 +265,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/providers/Microsoft.Devices/operationResults/b3NfaWhfZTc0MDc2NGUtNDBhZS00Y2EzLWIyZWYtM2NkNDI3NDE3MjM3?api-version=2020-03-01&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmWlRjME1EYzJOR1V0TkRCaFpTMDBZMkV6TFdJeVpXWXRNMk5rTkRJM05ERTNNak0zP2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEmb3BlcmF0aW9uU291cmNlPW9zX2loJmFzeW5jaW5mbw==", + "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/providers/Microsoft.Devices/operationResults/b3NfaWhfZDNkODJhMjMtYzgyMy00YTI0LTlmNGUtYWJhNmFiZTVmNDVh?api-version=2021-03-31&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmWkROa09ESmhNak10WXpneU15MDBZVEkwTFRsbU5HVXRZV0poTm1GaVpUVm1ORFZoP2FwaS12ZXJzaW9uPTIwMjEtMDMtMzEmb3BlcmF0aW9uU291cmNlPW9zX2loJmFzeW5jaW5mbw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.0.0.0" ] }, "ResponseHeaders": { @@ -291,13 +291,13 @@ "11998" ], "x-ms-request-id": [ - "4072fbee-ce23-482b-aebe-e616c39bfbdf" + "be5ea02d-ef38-4762-8ddb-3bc1ec38fe37" ], "x-ms-correlation-request-id": [ - "4072fbee-ce23-482b-aebe-e616c39bfbdf" + "be5ea02d-ef38-4762-8ddb-3bc1ec38fe37" ], "x-ms-routing-request-id": [ - "WESTUS2:20210219T190052Z:4072fbee-ce23-482b-aebe-e616c39bfbdf" + "WESTUS2:20210514T191347Z:be5ea02d-ef38-4762-8ddb-3bc1ec38fe37" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -306,7 +306,7 @@ "nosniff" ], "Date": [ - "Fri, 19 Feb 2021 19:00:51 GMT" + "Fri, 14 May 2021 19:13:47 GMT" ], "Content-Length": [ "20" @@ -322,16 +322,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/providers/Microsoft.Devices/operationResults/b3NfaWhfZTc0MDc2NGUtNDBhZS00Y2EzLWIyZWYtM2NkNDI3NDE3MjM3?api-version=2020-03-01&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmWlRjME1EYzJOR1V0TkRCaFpTMDBZMkV6TFdJeVpXWXRNMk5rTkRJM05ERTNNak0zP2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEmb3BlcmF0aW9uU291cmNlPW9zX2loJmFzeW5jaW5mbw==", + "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/providers/Microsoft.Devices/operationResults/b3NfaWhfZDNkODJhMjMtYzgyMy00YTI0LTlmNGUtYWJhNmFiZTVmNDVh?api-version=2021-03-31&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmWkROa09ESmhNak10WXpneU15MDBZVEkwTFRsbU5HVXRZV0poTm1GaVpUVm1ORFZoP2FwaS12ZXJzaW9uPTIwMjEtMDMtMzEmb3BlcmF0aW9uU291cmNlPW9zX2loJmFzeW5jaW5mbw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.0.0.0" ] }, "ResponseHeaders": { @@ -348,13 +348,13 @@ "11997" ], "x-ms-request-id": [ - "1d7ddbcb-9232-4296-8ae1-bde66b51a6d7" + "2aac5d75-38a1-42c8-92c6-9500a7426616" ], "x-ms-correlation-request-id": [ - "1d7ddbcb-9232-4296-8ae1-bde66b51a6d7" + "2aac5d75-38a1-42c8-92c6-9500a7426616" ], "x-ms-routing-request-id": [ - "WESTUS2:20210219T190122Z:1d7ddbcb-9232-4296-8ae1-bde66b51a6d7" + "WESTUS2:20210514T191418Z:2aac5d75-38a1-42c8-92c6-9500a7426616" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -363,7 +363,7 @@ "nosniff" ], "Date": [ - "Fri, 19 Feb 2021 19:01:21 GMT" + "Fri, 14 May 2021 19:14:17 GMT" ], "Content-Length": [ "20" @@ -379,16 +379,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/providers/Microsoft.Devices/operationResults/b3NfaWhfZTc0MDc2NGUtNDBhZS00Y2EzLWIyZWYtM2NkNDI3NDE3MjM3?api-version=2020-03-01&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmWlRjME1EYzJOR1V0TkRCaFpTMDBZMkV6TFdJeVpXWXRNMk5rTkRJM05ERTNNak0zP2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEmb3BlcmF0aW9uU291cmNlPW9zX2loJmFzeW5jaW5mbw==", + "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/providers/Microsoft.Devices/operationResults/b3NfaWhfZDNkODJhMjMtYzgyMy00YTI0LTlmNGUtYWJhNmFiZTVmNDVh?api-version=2021-03-31&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmWkROa09ESmhNak10WXpneU15MDBZVEkwTFRsbU5HVXRZV0poTm1GaVpUVm1ORFZoP2FwaS12ZXJzaW9uPTIwMjEtMDMtMzEmb3BlcmF0aW9uU291cmNlPW9zX2loJmFzeW5jaW5mbw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.0.0.0" ] }, "ResponseHeaders": { @@ -405,13 +405,13 @@ "11996" ], "x-ms-request-id": [ - "0110c165-a51d-44e4-8a13-8e7e8a9f14bf" + "0aa2a0a9-386f-4046-9f3b-f8e21173b7f7" ], "x-ms-correlation-request-id": [ - "0110c165-a51d-44e4-8a13-8e7e8a9f14bf" + "0aa2a0a9-386f-4046-9f3b-f8e21173b7f7" ], "x-ms-routing-request-id": [ - "WESTUS2:20210219T190152Z:0110c165-a51d-44e4-8a13-8e7e8a9f14bf" + "WESTUS2:20210514T191448Z:0aa2a0a9-386f-4046-9f3b-f8e21173b7f7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -420,64 +420,7 @@ "nosniff" ], "Date": [ - "Fri, 19 Feb 2021 19:01:52 GMT" - ], - "Content-Length": [ - "20" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"Running\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/providers/Microsoft.Devices/operationResults/b3NfaWhfZTc0MDc2NGUtNDBhZS00Y2EzLWIyZWYtM2NkNDI3NDE3MjM3?api-version=2020-03-01&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmWlRjME1EYzJOR1V0TkRCaFpTMDBZMkV6TFdJeVpXWXRNMk5rTkRJM05ERTNNak0zP2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEmb3BlcmF0aW9uU291cmNlPW9zX2loJmFzeW5jaW5mbw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29719.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" - ], - "x-ms-request-id": [ - "090392ea-ed49-47e9-b9ed-c176c8c15690" - ], - "x-ms-correlation-request-id": [ - "090392ea-ed49-47e9-b9ed-c176c8c15690" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20210219T190222Z:090392ea-ed49-47e9-b9ed-c176c8c15690" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 19 Feb 2021 19:02:22 GMT" + "Fri, 14 May 2021 19:14:47 GMT" ], "Content-Length": [ "22" @@ -493,16 +436,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/DotNetCertificateHubRG/providers/Microsoft.Devices/IotHubs/DotNetCertificateHub?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Jlc291cmNlR3JvdXBzL0RvdE5ldENlcnRpZmljYXRlSHViUkcvcHJvdmlkZXJzL01pY3Jvc29mdC5EZXZpY2VzL0lvdEh1YnMvRG90TmV0Q2VydGlmaWNhdGVIdWI/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/DotNetCertificateHubRG/providers/Microsoft.Devices/IotHubs/DotNetCertificateHub?api-version=2021-03-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Jlc291cmNlR3JvdXBzL0RvdE5ldENlcnRpZmljYXRlSHViUkcvcHJvdmlkZXJzL01pY3Jvc29mdC5EZXZpY2VzL0lvdEh1YnMvRG90TmV0Q2VydGlmaWNhdGVIdWI/YXBpLXZlcnNpb249MjAyMS0wMy0zMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.0.0.0" ] }, "ResponseHeaders": { @@ -516,16 +459,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11995" ], "x-ms-request-id": [ - "25c6ded7-d722-43dc-b762-c89317931681" + "34d2917f-fa5e-494c-891e-928a7a480c87" ], "x-ms-correlation-request-id": [ - "25c6ded7-d722-43dc-b762-c89317931681" + "34d2917f-fa5e-494c-891e-928a7a480c87" ], "x-ms-routing-request-id": [ - "WESTUS2:20210219T190223Z:25c6ded7-d722-43dc-b762-c89317931681" + "WESTUS2:20210514T191448Z:34d2917f-fa5e-494c-891e-928a7a480c87" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -534,10 +477,10 @@ "nosniff" ], "Date": [ - "Fri, 19 Feb 2021 19:02:22 GMT" + "Fri, 14 May 2021 19:14:48 GMT" ], "Content-Length": [ - "1589" + "1590" ], "Content-Type": [ "application/json; charset=utf-8" @@ -546,32 +489,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/DotNetCertificateHubRG/providers/Microsoft.Devices/IotHubs/DotNetCertificateHub\",\r\n \"name\": \"DotNetCertificateHub\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"WestUS2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"9dbb02fa-c9d2-4593-967e-ffc99c566c5c\",\r\n \"resourcegroup\": \"DotNetCertificateHubRG\",\r\n \"etag\": \"AAAACmuwJEM=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"DotNetCertificateHub.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"dotnetcertificatehub\",\r\n \"endpoint\": \"sb://iothub-ns-dotnetcert-8263241-79921f2440.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/DotNetCertificateHubRG/providers/Microsoft.Devices/IotHubs/DotNetCertificateHub\",\r\n \"name\": \"DotNetCertificateHub\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"WestUS2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"9dbb02fa-c9d2-4593-967e-ffc99c566c5c\",\r\n \"resourcegroup\": \"DotNetCertificateHubRG\",\r\n \"etag\": \"AAAADEo70uM=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"DotNetCertificateHub.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"dotnetcertificatehub\",\r\n \"endpoint\": \"sb://iothub-ns-dotnetcert-10944369-58cab905a1.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/DotNetCertificateHubRG/providers/Microsoft.Devices/IotHubs/DotNetCertificateHub/certificates/DotNetCertificateHubCertificate?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Jlc291cmNlR3JvdXBzL0RvdE5ldENlcnRpZmljYXRlSHViUkcvcHJvdmlkZXJzL01pY3Jvc29mdC5EZXZpY2VzL0lvdEh1YnMvRG90TmV0Q2VydGlmaWNhdGVIdWIvY2VydGlmaWNhdGVzL0RvdE5ldENlcnRpZmljYXRlSHViQ2VydGlmaWNhdGU/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/DotNetCertificateHubRG/providers/Microsoft.Devices/IotHubs/DotNetCertificateHub/certificates/DotNetCertificateHubCertificate?api-version=2021-03-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Jlc291cmNlR3JvdXBzL0RvdE5ldENlcnRpZmljYXRlSHViUkcvcHJvdmlkZXJzL01pY3Jvc29mdC5EZXZpY2VzL0lvdEh1YnMvRG90TmV0Q2VydGlmaWNhdGVIdWIvY2VydGlmaWNhdGVzL0RvdE5ldENlcnRpZmljYXRlSHViQ2VydGlmaWNhdGU/YXBpLXZlcnNpb249MjAyMS0wMy0zMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"certificate\": \"MIIBvjCCAWOgAwIBAgIQG6PoBFT6GLJGNKn/EaxltTAKBggqhkjOPQQDAjAcMRowGAYDVQQDDBFBenVyZSBJb1QgUm9vdCBDQTAeFw0xNzExMDMyMDUyNDZaFw0xNzEyMDMyMTAyNDdaMBwxGjAYBgNVBAMMEUF6dXJlIElvVCBSb290IENBMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE+CgpnW3K+KRNIi/U6Zqe/Al9m8PExHX2KgakmGTfE04nNBwnSoygWb0ekqpT+Lm+OP56LMMe9ynVNryDEr9OSKOBhjCBgzAOBgNVHQ8BAf8EBAMCAgQwHQYDVR0lBBYwFAYIKwYBBQUHAwIGCCsGAQUFBwMBMB8GA1UdEQQYMBaCFENOPUF6dXJlIElvVCBSb290IENBMBIGA1UdEwEB/wQIMAYBAf8CAQwwHQYDVR0OBBYEFDjiklfHQzw1G0A33BcmRQTjAivTMAoGCCqGSM49BAMCA0kAMEYCIQCtjJ4bAvoYuDhwr92Kk+OkvpPF+qBFiRfrA/EC4YGtzQIhAO79WPtbUnBQ5fsQnW2aUAT4yJGWL+7l4/qfmqblb96n\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"certificate\": \"MIIBvjCCAWOgAwIBAgIQG6PoBFT6GLJGNKn/EaxltTAKBggqhkjOPQQDAjAcMRowGAYDVQQDDBFBenVyZSBJb1QgUm9vdCBDQTAeFw0xNzExMDMyMDUyNDZaFw0xNzEyMDMyMTAyNDdaMBwxGjAYBgNVBAMMEUF6dXJlIElvVCBSb290IENBMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE+CgpnW3K+KRNIi/U6Zqe/Al9m8PExHX2KgakmGTfE04nNBwnSoygWb0ekqpT+Lm+OP56LMMe9ynVNryDEr9OSKOBhjCBgzAOBgNVHQ8BAf8EBAMCAgQwHQYDVR0lBBYwFAYIKwYBBQUHAwIGCCsGAQUFBwMBMB8GA1UdEQQYMBaCFENOPUF6dXJlIElvVCBSb290IENBMBIGA1UdEwEB/wQIMAYBAf8CAQwwHQYDVR0OBBYEFDjiklfHQzw1G0A33BcmRQTjAivTMAoGCCqGSM49BAMCA0kAMEYCIQCtjJ4bAvoYuDhwr92Kk+OkvpPF+qBFiRfrA/EC4YGtzQIhAO79WPtbUnBQ5fsQnW2aUAT4yJGWL+7l4/qfmqblb96n\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "43248b9a-fbb2-4f94-9365-eda9f19cc214" + "b70e6d63-f586-47cf-9be0-afc3f4aa47e8" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "625" + "651" ] }, "ResponseHeaders": { @@ -588,13 +531,13 @@ "1199" ], "x-ms-request-id": [ - "2de03cb2-c556-4781-9376-efee05098419" + "986ec14b-de14-4bc0-bcb9-0f624fa0e314" ], "x-ms-correlation-request-id": [ - "2de03cb2-c556-4781-9376-efee05098419" + "986ec14b-de14-4bc0-bcb9-0f624fa0e314" ], "x-ms-routing-request-id": [ - "WESTUS2:20210219T190224Z:2de03cb2-c556-4781-9376-efee05098419" + "WESTUS2:20210514T191449Z:986ec14b-de14-4bc0-bcb9-0f624fa0e314" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -603,10 +546,10 @@ "nosniff" ], "Date": [ - "Fri, 19 Feb 2021 19:02:23 GMT" + "Fri, 14 May 2021 19:14:48 GMT" ], "Content-Length": [ - "575" + "1173" ], "Content-Type": [ "application/json; charset=utf-8" @@ -615,26 +558,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"subject\": \"Azure IoT Root CA\",\r\n \"expiry\": \"Sun, 03 Dec 2017 21:02:47 GMT\",\r\n \"thumbprint\": \"9F0983E8F2DB2DB3582997FEF331247D872DEE32\",\r\n \"isVerified\": false,\r\n \"created\": \"Fri, 19 Feb 2021 19:02:23 GMT\",\r\n \"updated\": \"Fri, 19 Feb 2021 19:02:23 GMT\",\r\n \"certificate\": null\r\n },\r\n \"id\": \"/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/DotNetCertificateHubRG/providers/Microsoft.Devices/IotHubs/DotNetCertificateHub/certificates/DotNetCertificateHubCertificate\",\r\n \"name\": \"DotNetCertificateHubCertificate\",\r\n \"type\": \"Microsoft.Devices/IotHubs/Certificates\",\r\n \"etag\": \"AAAACmuxV6w=\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"subject\": \"Azure IoT Root CA\",\r\n \"expiry\": \"Sun, 03 Dec 2017 21:02:47 GMT\",\r\n \"thumbprint\": \"9F0983E8F2DB2DB3582997FEF331247D872DEE32\",\r\n \"isVerified\": false,\r\n \"created\": \"Fri, 14 May 2021 19:14:49 GMT\",\r\n \"updated\": \"Fri, 14 May 2021 19:14:49 GMT\",\r\n \"certificate\": \"MIIBvjCCAWOgAwIBAgIQG6PoBFT6GLJGNKn/EaxltTAKBggqhkjOPQQDAjAcMRowGAYDVQQDDBFBenVyZSBJb1QgUm9vdCBDQTAeFw0xNzExMDMyMDUyNDZaFw0xNzEyMDMyMTAyNDdaMBwxGjAYBgNVBAMMEUF6dXJlIElvVCBSb290IENBMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE+CgpnW3K+KRNIi/U6Zqe/Al9m8PExHX2KgakmGTfE04nNBwnSoygWb0ekqpT+Lm+OP56LMMe9ynVNryDEr9OSKOBhjCBgzAOBgNVHQ8BAf8EBAMCAgQwHQYDVR0lBBYwFAYIKwYBBQUHAwIGCCsGAQUFBwMBMB8GA1UdEQQYMBaCFENOPUF6dXJlIElvVCBSb290IENBMBIGA1UdEwEB/wQIMAYBAf8CAQwwHQYDVR0OBBYEFDjiklfHQzw1G0A33BcmRQTjAivTMAoGCCqGSM49BAMCA0kAMEYCIQCtjJ4bAvoYuDhwr92Kk+OkvpPF+qBFiRfrA/EC4YGtzQIhAO79WPtbUnBQ5fsQnW2aUAT4yJGWL+7l4/qfmqblb96n\"\r\n },\r\n \"id\": \"/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/DotNetCertificateHubRG/providers/Microsoft.Devices/IotHubs/DotNetCertificateHub/certificates/DotNetCertificateHubCertificate\",\r\n \"name\": \"DotNetCertificateHubCertificate\",\r\n \"type\": \"Microsoft.Devices/IotHubs/Certificates\",\r\n \"etag\": \"AAAADEo71Js=\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/DotNetCertificateHubRG/providers/Microsoft.Devices/IotHubs/DotNetCertificateHub/certificates?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Jlc291cmNlR3JvdXBzL0RvdE5ldENlcnRpZmljYXRlSHViUkcvcHJvdmlkZXJzL01pY3Jvc29mdC5EZXZpY2VzL0lvdEh1YnMvRG90TmV0Q2VydGlmaWNhdGVIdWIvY2VydGlmaWNhdGVzP2FwaS12ZXJzaW9uPTIwMjAtMDMtMDE=", + "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/DotNetCertificateHubRG/providers/Microsoft.Devices/IotHubs/DotNetCertificateHub/certificates?api-version=2021-03-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Jlc291cmNlR3JvdXBzL0RvdE5ldENlcnRpZmljYXRlSHViUkcvcHJvdmlkZXJzL01pY3Jvc29mdC5EZXZpY2VzL0lvdEh1YnMvRG90TmV0Q2VydGlmaWNhdGVIdWIvY2VydGlmaWNhdGVzP2FwaS12ZXJzaW9uPTIwMjEtMDMtMzE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "521347d1-7cc1-42f8-be40-76b02f7ade86" + "e35876c2-0b78-49f1-ad42-ebc699db9d26" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.0.0.0" ] }, "ResponseHeaders": { @@ -648,16 +591,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11994" ], "x-ms-request-id": [ - "956a5aeb-583f-479b-a8b9-9ca54a70978d" + "18a2f5e6-d01e-4d19-9a90-792bbd45e77a" ], "x-ms-correlation-request-id": [ - "956a5aeb-583f-479b-a8b9-9ca54a70978d" + "18a2f5e6-d01e-4d19-9a90-792bbd45e77a" ], "x-ms-routing-request-id": [ - "WESTUS2:20210219T190224Z:956a5aeb-583f-479b-a8b9-9ca54a70978d" + "WESTUS2:20210514T191449Z:18a2f5e6-d01e-4d19-9a90-792bbd45e77a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -666,10 +609,10 @@ "nosniff" ], "Date": [ - "Fri, 19 Feb 2021 19:02:23 GMT" + "Fri, 14 May 2021 19:14:49 GMT" ], "Content-Length": [ - "587" + "1185" ], "Content-Type": [ "application/json; charset=utf-8" @@ -678,26 +621,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"subject\": \"Azure IoT Root CA\",\r\n \"expiry\": \"Sun, 03 Dec 2017 21:02:47 GMT\",\r\n \"thumbprint\": \"9F0983E8F2DB2DB3582997FEF331247D872DEE32\",\r\n \"isVerified\": false,\r\n \"created\": \"Fri, 19 Feb 2021 19:02:23 GMT\",\r\n \"updated\": \"Fri, 19 Feb 2021 19:02:23 GMT\",\r\n \"certificate\": null\r\n },\r\n \"id\": \"/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/DotNetCertificateHubRG/providers/Microsoft.Devices/IotHubs/DotNetCertificateHub/certificates/DotNetCertificateHubCertificate\",\r\n \"name\": \"DotNetCertificateHubCertificate\",\r\n \"type\": \"Microsoft.Devices/IotHubs/Certificates\",\r\n \"etag\": \"AAAACmuxV6w=\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"subject\": \"Azure IoT Root CA\",\r\n \"expiry\": \"Sun, 03 Dec 2017 21:02:47 GMT\",\r\n \"thumbprint\": \"9F0983E8F2DB2DB3582997FEF331247D872DEE32\",\r\n \"isVerified\": false,\r\n \"created\": \"Fri, 14 May 2021 19:14:49 GMT\",\r\n \"updated\": \"Fri, 14 May 2021 19:14:49 GMT\",\r\n \"certificate\": \"MIIBvjCCAWOgAwIBAgIQG6PoBFT6GLJGNKn/EaxltTAKBggqhkjOPQQDAjAcMRowGAYDVQQDDBFBenVyZSBJb1QgUm9vdCBDQTAeFw0xNzExMDMyMDUyNDZaFw0xNzEyMDMyMTAyNDdaMBwxGjAYBgNVBAMMEUF6dXJlIElvVCBSb290IENBMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE+CgpnW3K+KRNIi/U6Zqe/Al9m8PExHX2KgakmGTfE04nNBwnSoygWb0ekqpT+Lm+OP56LMMe9ynVNryDEr9OSKOBhjCBgzAOBgNVHQ8BAf8EBAMCAgQwHQYDVR0lBBYwFAYIKwYBBQUHAwIGCCsGAQUFBwMBMB8GA1UdEQQYMBaCFENOPUF6dXJlIElvVCBSb290IENBMBIGA1UdEwEB/wQIMAYBAf8CAQwwHQYDVR0OBBYEFDjiklfHQzw1G0A33BcmRQTjAivTMAoGCCqGSM49BAMCA0kAMEYCIQCtjJ4bAvoYuDhwr92Kk+OkvpPF+qBFiRfrA/EC4YGtzQIhAO79WPtbUnBQ5fsQnW2aUAT4yJGWL+7l4/qfmqblb96n\"\r\n },\r\n \"id\": \"/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/DotNetCertificateHubRG/providers/Microsoft.Devices/IotHubs/DotNetCertificateHub/certificates/DotNetCertificateHubCertificate\",\r\n \"name\": \"DotNetCertificateHubCertificate\",\r\n \"type\": \"Microsoft.Devices/IotHubs/Certificates\",\r\n \"etag\": \"AAAADEo71Js=\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/DotNetCertificateHubRG/providers/Microsoft.Devices/IotHubs/DotNetCertificateHub/certificates?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Jlc291cmNlR3JvdXBzL0RvdE5ldENlcnRpZmljYXRlSHViUkcvcHJvdmlkZXJzL01pY3Jvc29mdC5EZXZpY2VzL0lvdEh1YnMvRG90TmV0Q2VydGlmaWNhdGVIdWIvY2VydGlmaWNhdGVzP2FwaS12ZXJzaW9uPTIwMjAtMDMtMDE=", + "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/DotNetCertificateHubRG/providers/Microsoft.Devices/IotHubs/DotNetCertificateHub/certificates?api-version=2021-03-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Jlc291cmNlR3JvdXBzL0RvdE5ldENlcnRpZmljYXRlSHViUkcvcHJvdmlkZXJzL01pY3Jvc29mdC5EZXZpY2VzL0lvdEh1YnMvRG90TmV0Q2VydGlmaWNhdGVIdWIvY2VydGlmaWNhdGVzP2FwaS12ZXJzaW9uPTIwMjEtMDMtMzE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c57bd21b-0160-43b8-8e0c-d44907d9b4fb" + "be770c99-5fb0-4cf1-b2d4-ec37e50f2d70" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.0.0.0" ] }, "ResponseHeaders": { @@ -711,16 +654,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11992" ], "x-ms-request-id": [ - "fd60e8d8-f3dc-4ec0-8d8b-a5a320840dbb" + "11ea1022-df75-4431-8869-21c770df82f2" ], "x-ms-correlation-request-id": [ - "fd60e8d8-f3dc-4ec0-8d8b-a5a320840dbb" + "11ea1022-df75-4431-8869-21c770df82f2" ], "x-ms-routing-request-id": [ - "WESTUS2:20210219T190225Z:fd60e8d8-f3dc-4ec0-8d8b-a5a320840dbb" + "WESTUS2:20210514T191451Z:11ea1022-df75-4431-8869-21c770df82f2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -729,7 +672,7 @@ "nosniff" ], "Date": [ - "Fri, 19 Feb 2021 19:02:25 GMT" + "Fri, 14 May 2021 19:14:50 GMT" ], "Content-Length": [ "12" @@ -745,22 +688,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/DotNetCertificateHubRG/providers/Microsoft.Devices/IotHubs/DotNetCertificateHub/certificates/DotNetCertificateHubCertificate?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Jlc291cmNlR3JvdXBzL0RvdE5ldENlcnRpZmljYXRlSHViUkcvcHJvdmlkZXJzL01pY3Jvc29mdC5EZXZpY2VzL0lvdEh1YnMvRG90TmV0Q2VydGlmaWNhdGVIdWIvY2VydGlmaWNhdGVzL0RvdE5ldENlcnRpZmljYXRlSHViQ2VydGlmaWNhdGU/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/DotNetCertificateHubRG/providers/Microsoft.Devices/IotHubs/DotNetCertificateHub/certificates/DotNetCertificateHubCertificate?api-version=2021-03-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Jlc291cmNlR3JvdXBzL0RvdE5ldENlcnRpZmljYXRlSHViUkcvcHJvdmlkZXJzL01pY3Jvc29mdC5EZXZpY2VzL0lvdEh1YnMvRG90TmV0Q2VydGlmaWNhdGVIdWIvY2VydGlmaWNhdGVzL0RvdE5ldENlcnRpZmljYXRlSHViQ2VydGlmaWNhdGU/YXBpLXZlcnNpb249MjAyMS0wMy0zMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ff314164-72ef-4182-beba-7f75c248593f" + "f7476e22-9b88-4c0c-96b2-994693ed26ef" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.0.0.0" ] }, "ResponseHeaders": { @@ -774,16 +717,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11993" ], "x-ms-request-id": [ - "77e7604c-40cd-4ad3-acea-bc93d1e05a9a" + "db106d31-4aed-41a9-a8df-124101ed4144" ], "x-ms-correlation-request-id": [ - "77e7604c-40cd-4ad3-acea-bc93d1e05a9a" + "db106d31-4aed-41a9-a8df-124101ed4144" ], "x-ms-routing-request-id": [ - "WESTUS2:20210219T190224Z:77e7604c-40cd-4ad3-acea-bc93d1e05a9a" + "WESTUS2:20210514T191450Z:db106d31-4aed-41a9-a8df-124101ed4144" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -792,10 +735,10 @@ "nosniff" ], "Date": [ - "Fri, 19 Feb 2021 19:02:24 GMT" + "Fri, 14 May 2021 19:14:49 GMT" ], "Content-Length": [ - "575" + "1173" ], "Content-Type": [ "application/json; charset=utf-8" @@ -804,29 +747,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"subject\": \"Azure IoT Root CA\",\r\n \"expiry\": \"Sun, 03 Dec 2017 21:02:47 GMT\",\r\n \"thumbprint\": \"9F0983E8F2DB2DB3582997FEF331247D872DEE32\",\r\n \"isVerified\": false,\r\n \"created\": \"Fri, 19 Feb 2021 19:02:23 GMT\",\r\n \"updated\": \"Fri, 19 Feb 2021 19:02:23 GMT\",\r\n \"certificate\": null\r\n },\r\n \"id\": \"/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/DotNetCertificateHubRG/providers/Microsoft.Devices/IotHubs/DotNetCertificateHub/certificates/DotNetCertificateHubCertificate\",\r\n \"name\": \"DotNetCertificateHubCertificate\",\r\n \"type\": \"Microsoft.Devices/IotHubs/Certificates\",\r\n \"etag\": \"AAAACmuxV6w=\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"subject\": \"Azure IoT Root CA\",\r\n \"expiry\": \"Sun, 03 Dec 2017 21:02:47 GMT\",\r\n \"thumbprint\": \"9F0983E8F2DB2DB3582997FEF331247D872DEE32\",\r\n \"isVerified\": false,\r\n \"created\": \"Fri, 14 May 2021 19:14:49 GMT\",\r\n \"updated\": \"Fri, 14 May 2021 19:14:49 GMT\",\r\n \"certificate\": \"MIIBvjCCAWOgAwIBAgIQG6PoBFT6GLJGNKn/EaxltTAKBggqhkjOPQQDAjAcMRowGAYDVQQDDBFBenVyZSBJb1QgUm9vdCBDQTAeFw0xNzExMDMyMDUyNDZaFw0xNzEyMDMyMTAyNDdaMBwxGjAYBgNVBAMMEUF6dXJlIElvVCBSb290IENBMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE+CgpnW3K+KRNIi/U6Zqe/Al9m8PExHX2KgakmGTfE04nNBwnSoygWb0ekqpT+Lm+OP56LMMe9ynVNryDEr9OSKOBhjCBgzAOBgNVHQ8BAf8EBAMCAgQwHQYDVR0lBBYwFAYIKwYBBQUHAwIGCCsGAQUFBwMBMB8GA1UdEQQYMBaCFENOPUF6dXJlIElvVCBSb290IENBMBIGA1UdEwEB/wQIMAYBAf8CAQwwHQYDVR0OBBYEFDjiklfHQzw1G0A33BcmRQTjAivTMAoGCCqGSM49BAMCA0kAMEYCIQCtjJ4bAvoYuDhwr92Kk+OkvpPF+qBFiRfrA/EC4YGtzQIhAO79WPtbUnBQ5fsQnW2aUAT4yJGWL+7l4/qfmqblb96n\"\r\n },\r\n \"id\": \"/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/DotNetCertificateHubRG/providers/Microsoft.Devices/IotHubs/DotNetCertificateHub/certificates/DotNetCertificateHubCertificate\",\r\n \"name\": \"DotNetCertificateHubCertificate\",\r\n \"type\": \"Microsoft.Devices/IotHubs/Certificates\",\r\n \"etag\": \"AAAADEo71Js=\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/DotNetCertificateHubRG/providers/Microsoft.Devices/IotHubs/DotNetCertificateHub/certificates/DotNetCertificateHubCertificate/generateVerificationCode?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Jlc291cmNlR3JvdXBzL0RvdE5ldENlcnRpZmljYXRlSHViUkcvcHJvdmlkZXJzL01pY3Jvc29mdC5EZXZpY2VzL0lvdEh1YnMvRG90TmV0Q2VydGlmaWNhdGVIdWIvY2VydGlmaWNhdGVzL0RvdE5ldENlcnRpZmljYXRlSHViQ2VydGlmaWNhdGUvZ2VuZXJhdGVWZXJpZmljYXRpb25Db2RlP2FwaS12ZXJzaW9uPTIwMjAtMDMtMDE=", + "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/DotNetCertificateHubRG/providers/Microsoft.Devices/IotHubs/DotNetCertificateHub/certificates/DotNetCertificateHubCertificate/generateVerificationCode?api-version=2021-03-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Jlc291cmNlR3JvdXBzL0RvdE5ldENlcnRpZmljYXRlSHViUkcvcHJvdmlkZXJzL01pY3Jvc29mdC5EZXZpY2VzL0lvdEh1YnMvRG90TmV0Q2VydGlmaWNhdGVIdWIvY2VydGlmaWNhdGVzL0RvdE5ldENlcnRpZmljYXRlSHViQ2VydGlmaWNhdGUvZ2VuZXJhdGVWZXJpZmljYXRpb25Db2RlP2FwaS12ZXJzaW9uPTIwMjEtMDMtMzE=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "77ff1d70-aea8-4b59-95c5-19c44b02cf64" + "7c116154-d462-4045-abfe-4c98205435e6" ], "If-Match": [ - "AAAACmuxV6w=" + "AAAADEo71Js=" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.0.0.0" ] }, "ResponseHeaders": { @@ -843,13 +786,13 @@ "1198" ], "x-ms-request-id": [ - "8806cc49-5ff6-4f73-b5b3-690467c8aa5f" + "a58e7af0-83b7-4100-a0e7-cb7bf20e6422" ], "x-ms-correlation-request-id": [ - "8806cc49-5ff6-4f73-b5b3-690467c8aa5f" + "a58e7af0-83b7-4100-a0e7-cb7bf20e6422" ], "x-ms-routing-request-id": [ - "WESTUS2:20210219T190225Z:8806cc49-5ff6-4f73-b5b3-690467c8aa5f" + "WESTUS2:20210514T191450Z:a58e7af0-83b7-4100-a0e7-cb7bf20e6422" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -858,7 +801,7 @@ "nosniff" ], "Date": [ - "Fri, 19 Feb 2021 19:02:24 GMT" + "Fri, 14 May 2021 19:14:49 GMT" ], "Content-Length": [ "1243" @@ -870,29 +813,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"verificationCode\": \"628D2CEA6DDB41F1D627CECE2A85D18CE5E76F9D6B9E0DB7\",\r\n \"subject\": \"Azure IoT Root CA\",\r\n \"expiry\": \"Sun, 03 Dec 2017 21:02:47 GMT\",\r\n \"thumbprint\": \"9F0983E8F2DB2DB3582997FEF331247D872DEE32\",\r\n \"isVerified\": false,\r\n \"created\": \"Fri, 19 Feb 2021 19:02:23 GMT\",\r\n \"updated\": \"Fri, 19 Feb 2021 19:02:24 GMT\",\r\n \"certificate\": \"MIIBvjCCAWOgAwIBAgIQG6PoBFT6GLJGNKn/EaxltTAKBggqhkjOPQQDAjAcMRowGAYDVQQDDBFBenVyZSBJb1QgUm9vdCBDQTAeFw0xNzExMDMyMDUyNDZaFw0xNzEyMDMyMTAyNDdaMBwxGjAYBgNVBAMMEUF6dXJlIElvVCBSb290IENBMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE+CgpnW3K+KRNIi/U6Zqe/Al9m8PExHX2KgakmGTfE04nNBwnSoygWb0ekqpT+Lm+OP56LMMe9ynVNryDEr9OSKOBhjCBgzAOBgNVHQ8BAf8EBAMCAgQwHQYDVR0lBBYwFAYIKwYBBQUHAwIGCCsGAQUFBwMBMB8GA1UdEQQYMBaCFENOPUF6dXJlIElvVCBSb290IENBMBIGA1UdEwEB/wQIMAYBAf8CAQwwHQYDVR0OBBYEFDjiklfHQzw1G0A33BcmRQTjAivTMAoGCCqGSM49BAMCA0kAMEYCIQCtjJ4bAvoYuDhwr92Kk+OkvpPF+qBFiRfrA/EC4YGtzQIhAO79WPtbUnBQ5fsQnW2aUAT4yJGWL+7l4/qfmqblb96n\"\r\n },\r\n \"id\": \"/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/DotNetCertificateHubRG/providers/Microsoft.Devices/IotHubs/DotNetCertificateHub/certificates/DotNetCertificateHubCertificate\",\r\n \"name\": \"DotNetCertificateHubCertificate\",\r\n \"type\": \"Microsoft.Devices/IotHubs/Certificates\",\r\n \"etag\": \"AAAACmuxV7M=\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"verificationCode\": \"3989FE54BCC56799DCC6E2AA5F79984DC5AE73D73E56893A\",\r\n \"subject\": \"Azure IoT Root CA\",\r\n \"expiry\": \"Sun, 03 Dec 2017 21:02:47 GMT\",\r\n \"thumbprint\": \"9F0983E8F2DB2DB3582997FEF331247D872DEE32\",\r\n \"isVerified\": false,\r\n \"created\": \"Fri, 14 May 2021 19:14:49 GMT\",\r\n \"updated\": \"Fri, 14 May 2021 19:14:50 GMT\",\r\n \"certificate\": \"MIIBvjCCAWOgAwIBAgIQG6PoBFT6GLJGNKn/EaxltTAKBggqhkjOPQQDAjAcMRowGAYDVQQDDBFBenVyZSBJb1QgUm9vdCBDQTAeFw0xNzExMDMyMDUyNDZaFw0xNzEyMDMyMTAyNDdaMBwxGjAYBgNVBAMMEUF6dXJlIElvVCBSb290IENBMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE+CgpnW3K+KRNIi/U6Zqe/Al9m8PExHX2KgakmGTfE04nNBwnSoygWb0ekqpT+Lm+OP56LMMe9ynVNryDEr9OSKOBhjCBgzAOBgNVHQ8BAf8EBAMCAgQwHQYDVR0lBBYwFAYIKwYBBQUHAwIGCCsGAQUFBwMBMB8GA1UdEQQYMBaCFENOPUF6dXJlIElvVCBSb290IENBMBIGA1UdEwEB/wQIMAYBAf8CAQwwHQYDVR0OBBYEFDjiklfHQzw1G0A33BcmRQTjAivTMAoGCCqGSM49BAMCA0kAMEYCIQCtjJ4bAvoYuDhwr92Kk+OkvpPF+qBFiRfrA/EC4YGtzQIhAO79WPtbUnBQ5fsQnW2aUAT4yJGWL+7l4/qfmqblb96n\"\r\n },\r\n \"id\": \"/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/DotNetCertificateHubRG/providers/Microsoft.Devices/IotHubs/DotNetCertificateHub/certificates/DotNetCertificateHubCertificate\",\r\n \"name\": \"DotNetCertificateHubCertificate\",\r\n \"type\": \"Microsoft.Devices/IotHubs/Certificates\",\r\n \"etag\": \"AAAADEo71KQ=\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/DotNetCertificateHubRG/providers/Microsoft.Devices/IotHubs/DotNetCertificateHub/certificates/DotNetCertificateHubCertificate?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Jlc291cmNlR3JvdXBzL0RvdE5ldENlcnRpZmljYXRlSHViUkcvcHJvdmlkZXJzL01pY3Jvc29mdC5EZXZpY2VzL0lvdEh1YnMvRG90TmV0Q2VydGlmaWNhdGVIdWIvY2VydGlmaWNhdGVzL0RvdE5ldENlcnRpZmljYXRlSHViQ2VydGlmaWNhdGU/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/DotNetCertificateHubRG/providers/Microsoft.Devices/IotHubs/DotNetCertificateHub/certificates/DotNetCertificateHubCertificate?api-version=2021-03-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Jlc291cmNlR3JvdXBzL0RvdE5ldENlcnRpZmljYXRlSHViUkcvcHJvdmlkZXJzL01pY3Jvc29mdC5EZXZpY2VzL0lvdEh1YnMvRG90TmV0Q2VydGlmaWNhdGVIdWIvY2VydGlmaWNhdGVzL0RvdE5ldENlcnRpZmljYXRlSHViQ2VydGlmaWNhdGU/YXBpLXZlcnNpb249MjAyMS0wMy0zMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ec34f714-3f1d-4bd1-9a7c-35ccbf2ddb10" + "b13eb926-67e1-4225-ac00-330455d3db79" ], "If-Match": [ - "AAAACmuxV7M=" + "AAAADEo71KQ=" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.0.0.0" ] }, "ResponseHeaders": { @@ -909,13 +852,13 @@ "14999" ], "x-ms-request-id": [ - "76320be4-1c43-4aa5-a052-51a30baa9477" + "aea0a32d-85c5-4099-ab34-83ec3ddfc945" ], "x-ms-correlation-request-id": [ - "76320be4-1c43-4aa5-a052-51a30baa9477" + "aea0a32d-85c5-4099-ab34-83ec3ddfc945" ], "x-ms-routing-request-id": [ - "WESTUS2:20210219T190225Z:76320be4-1c43-4aa5-a052-51a30baa9477" + "WESTUS2:20210514T191451Z:aea0a32d-85c5-4099-ab34-83ec3ddfc945" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -924,7 +867,7 @@ "nosniff" ], "Date": [ - "Fri, 19 Feb 2021 19:02:25 GMT" + "Fri, 14 May 2021 19:14:50 GMT" ], "Expires": [ "-1" diff --git a/sdk/iothub/Microsoft.Azure.Management.IotHub/tests/SessionRecords/IotHubClientTests/IotHubClient_HubCreate.json b/sdk/iothub/Microsoft.Azure.Management.IotHub/tests/SessionRecords/IotHubClientTests/IotHubClient_HubCreate.json index d153155bbb565..cadeeaeaee574 100644 --- a/sdk/iothub/Microsoft.Azure.Management.IotHub/tests/SessionRecords/IotHubClientTests/IotHubClient_HubCreate.json +++ b/sdk/iothub/Microsoft.Azure.Management.IotHub/tests/SessionRecords/IotHubClientTests/IotHubClient_HubCreate.json @@ -7,15 +7,15 @@ "RequestBody": "{\r\n \"location\": \"WestUS2\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "5dab05fc-ef0e-4e78-8922-78eaaa926c62" + "99147dc9-07a7-4c7a-ae63-7c14d8ac0ec3" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.19043.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" ], "Content-Type": [ @@ -36,13 +36,13 @@ "1199" ], "x-ms-request-id": [ - "758b6dd1-2e49-4b89-8678-036b37897152" + "abc7c757-6586-416d-8ac6-9742efc7e458" ], "x-ms-correlation-request-id": [ - "758b6dd1-2e49-4b89-8678-036b37897152" + "abc7c757-6586-416d-8ac6-9742efc7e458" ], "x-ms-routing-request-id": [ - "WESTUS2:20210219T191237Z:758b6dd1-2e49-4b89-8678-036b37897152" + "WESTUS2:20210514T173205Z:abc7c757-6586-416d-8ac6-9742efc7e458" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,7 +51,7 @@ "nosniff" ], "Date": [ - "Fri, 19 Feb 2021 19:12:37 GMT" + "Fri, 14 May 2021 17:32:05 GMT" ], "Content-Length": [ "176" @@ -64,25 +64,25 @@ ] }, "ResponseBody": "{\r\n \"id\": \"/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/DotNetHubRG\",\r\n \"name\": \"DotNetHubRG\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "StatusCode": 201 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/providers/Microsoft.Devices/checkNameAvailability?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9jaGVja05hbWVBdmFpbGFiaWxpdHk/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/providers/Microsoft.Devices/checkNameAvailability?api-version=2021-03-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9jaGVja05hbWVBdmFpbGFiaWxpdHk/YXBpLXZlcnNpb249MjAyMS0wMy0zMQ==", "RequestMethod": "POST", "RequestBody": "{\r\n \"name\": \"DotNetHub\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "feaa8b4c-b2a1-46db-9a1e-e20d244137d9" + "36792be0-52f0-45d5-b20e-65af8eb59ebb" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -105,13 +105,13 @@ "1199" ], "x-ms-request-id": [ - "3e43cb90-7ff6-416b-8d47-c2c104094776" + "c51dc597-8029-44ca-90b8-b2b387076481" ], "x-ms-correlation-request-id": [ - "3e43cb90-7ff6-416b-8d47-c2c104094776" + "c51dc597-8029-44ca-90b8-b2b387076481" ], "x-ms-routing-request-id": [ - "WESTUS2:20210219T191238Z:3e43cb90-7ff6-416b-8d47-c2c104094776" + "WESTUS2:20210514T173206Z:c51dc597-8029-44ca-90b8-b2b387076481" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -120,10 +120,10 @@ "nosniff" ], "Date": [ - "Fri, 19 Feb 2021 19:12:37 GMT" + "Fri, 14 May 2021 17:32:05 GMT" ], "Content-Length": [ - "56" + "101" ], "Content-Type": [ "application/json; charset=utf-8" @@ -132,32 +132,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"nameAvailable\": true,\r\n \"reason\": \"Invalid\",\r\n \"message\": null\r\n}", + "ResponseBody": "{\r\n \"nameAvailable\": false,\r\n \"reason\": \"AlreadyExists\",\r\n \"message\": \"IotHub name 'DotNetHub' is not available\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/DotNetHubRG/providers/Microsoft.EventHub/namespaces/iothubcsharpsdkehnamespacetest?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Jlc291cmNlR3JvdXBzL0RvdE5ldEh1YlJHL3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9pb3RodWJjc2hhcnBzZGtlaG5hbWVzcGFjZXRlc3Q/YXBpLXZlcnNpb249MjAxNS0wOC0wMQ==", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"WestUS2\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/providers/Microsoft.Devices/checkNameAvailability?api-version=2021-03-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9jaGVja05hbWVBdmFpbGFiaWxpdHk/YXBpLXZlcnNpb249MjAyMS0wMy0zMQ==", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"name\": \"DotNetHub\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "30674498-87a2-4576-9cd3-ea78db80c13f" + "dd2b2cf3-c4f2-4768-91fc-0a26585bf03e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "96" + "27" ] }, "ResponseHeaders": { @@ -167,24 +167,20 @@ "Pragma": [ "no-cache" ], - "x-ms-request-id": [ - "29ef3e07-a173-4b0d-a24d-295a27f56908_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" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-request-id": [ + "106a110b-d590-4394-af01-4d668ed7cc04" ], "x-ms-correlation-request-id": [ - "db822777-ee08-4f34-8336-079e172eff3d" + "106a110b-d590-4394-af01-4d668ed7cc04" ], "x-ms-routing-request-id": [ - "WESTUS2:20210219T191239Z:db822777-ee08-4f34-8336-079e172eff3d" + "WESTUS2:20210514T173223Z:106a110b-d590-4394-af01-4d668ed7cc04" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -193,10 +189,10 @@ "nosniff" ], "Date": [ - "Fri, 19 Feb 2021 19:12:39 GMT" + "Fri, 14 May 2021 17:32:22 GMT" ], "Content-Length": [ - "520" + "56" ], "Content-Type": [ "application/json; charset=utf-8" @@ -205,20 +201,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/DotNetHubRG/providers/Microsoft.EventHub/namespaces/iothubcsharpsdkehnamespacetest\",\r\n \"name\": \"iothubcsharpsdkehnamespacetest\",\r\n \"type\": \"Microsoft.EventHub/namespaces\",\r\n \"location\": \"West US 2\",\r\n \"kind\": \"EventHub\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Unknown\",\r\n \"metricId\": \"9dbb02fa-c9d2-4593-967e-ffc99c566c5c:iothubcsharpsdkehnamespacetest\",\r\n \"enabled\": false,\r\n \"namespaceType\": \"EventHub\",\r\n \"messagingSku\": 2\r\n }\r\n}", + "ResponseBody": "{\r\n \"nameAvailable\": true,\r\n \"reason\": \"Invalid\",\r\n \"message\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/DotNetHubRG/providers/Microsoft.EventHub/namespaces/iothubcsharpsdkehnamespacetest?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Jlc291cmNlR3JvdXBzL0RvdE5ldEh1YlJHL3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9pb3RodWJjc2hhcnBzZGtlaG5hbWVzcGFjZXRlc3Q/YXBpLXZlcnNpb249MjAxNS0wOC0wMQ==", - "RequestMethod": "GET", + "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/DotNetHubRG/providers/Microsoft.Devices/IotHubs/DotNetHub?api-version=2021-03-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Jlc291cmNlR3JvdXBzL0RvdE5ldEh1YlJHL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9Jb3RIdWJzL0RvdE5ldEh1Yj9hcGktdmVyc2lvbj0yMDIxLTAzLTMx", + "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "aaef9aae-ce0b-4151-9cfa-bde9e0771ce0" + ], + "Accept-Language": [ + "en-US" + ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.0.0.0" ] }, "ResponseHeaders": { @@ -228,24 +230,29 @@ "Pragma": [ "no-cache" ], - "x-ms-request-id": [ - "ddb17579-1a19-429b-b6f9-1f475d58400f_M3CH3_M3CH3" + "Location": [ + "https://management.azure.com/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/providers/Microsoft.Devices/operationResults/b3NfaWhfNTc5YjAxZjUtY2VlYy00ZDMwLWFjNmEtZTdkMjExOTNjZTI0?api-version=2021-03-31&operationSource=os_ih" ], - "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Retry-After": [ + "15" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/providers/Microsoft.Devices/operationResults/b3NfaWhfNTc5YjAxZjUtY2VlYy00ZDMwLWFjNmEtZTdkMjExOTNjZTI0?api-version=2021-03-31&operationSource=os_ih&asyncinfo" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-request-id": [ + "94994ec7-8426-4262-974f-b2f9f52d84ab" ], "x-ms-correlation-request-id": [ - "6dd5f318-7f7e-4034-8137-db95c110be85" + "94994ec7-8426-4262-974f-b2f9f52d84ab" ], "x-ms-routing-request-id": [ - "WESTUS2:20210219T191310Z:6dd5f318-7f7e-4034-8137-db95c110be85" + "WESTUS2:20210514T173207Z:94994ec7-8426-4262-974f-b2f9f52d84ab" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -254,10 +261,10 @@ "nosniff" ], "Date": [ - "Fri, 19 Feb 2021 19:13:10 GMT" + "Fri, 14 May 2021 17:32:07 GMT" ], "Content-Length": [ - "757" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -266,20 +273,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/DotNetHubRG/providers/Microsoft.EventHub/namespaces/iothubcsharpsdkehnamespacetest\",\r\n \"name\": \"iothubcsharpsdkehnamespacetest\",\r\n \"type\": \"Microsoft.EventHub/namespaces\",\r\n \"location\": \"West US 2\",\r\n \"kind\": \"EventHub\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Created\",\r\n \"metricId\": \"9dbb02fa-c9d2-4593-967e-ffc99c566c5c:iothubcsharpsdkehnamespacetest\",\r\n \"status\": \"Created\",\r\n \"createdAt\": \"2021-02-19T19:12:39.277Z\",\r\n \"serviceBusEndpoint\": \"https://iothubcsharpsdkehnamespacetest.servicebus.windows.net:443/\",\r\n \"enabled\": true,\r\n \"critical\": false,\r\n \"updatedAt\": \"2021-02-19T19:12:39.277Z\",\r\n \"eventHubEnabled\": true,\r\n \"namespaceType\": \"EventHub\",\r\n \"messagingSku\": 2\r\n }\r\n}", - "StatusCode": 200 + "ResponseBody": "null", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/DotNetHubRG/providers/Microsoft.EventHub/namespaces/iothubcsharpsdkehnamespacetest?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Jlc291cmNlR3JvdXBzL0RvdE5ldEh1YlJHL3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9pb3RodWJjc2hhcnBzZGtlaG5hbWVzcGFjZXRlc3Q/YXBpLXZlcnNpb249MjAxNS0wOC0wMQ==", + "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/providers/Microsoft.Devices/operationResults/b3NfaWhfNTc5YjAxZjUtY2VlYy00ZDMwLWFjNmEtZTdkMjExOTNjZTI0?api-version=2021-03-31&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTlRjNVlqQXhaalV0WTJWbFl5MDBaRE13TFdGak5tRXRaVGRrTWpFeE9UTmpaVEkwP2FwaS12ZXJzaW9uPTIwMjEtMDMtMzEmb3BlcmF0aW9uU291cmNlPW9zX2loJmFzeW5jaW5mbw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.0.0.0" ] }, "ResponseHeaders": { @@ -289,24 +296,20 @@ "Pragma": [ "no-cache" ], - "x-ms-request-id": [ - "513d2f52-83fc-4c76-846d-268fd936b267_M8SN1_M8SN1" - ], - "Server-SB": [ - "Service-Bus-Resource-Provider/SN1" - ], "Server": [ - "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11999" + ], + "x-ms-request-id": [ + "f7df63b5-2eeb-4c57-ada9-a2d8b4ca816a" ], "x-ms-correlation-request-id": [ - "2961dec2-6f33-4794-93dd-e9a1f5619ad9" + "f7df63b5-2eeb-4c57-ada9-a2d8b4ca816a" ], "x-ms-routing-request-id": [ - "WESTUS2:20210219T191340Z:2961dec2-6f33-4794-93dd-e9a1f5619ad9" + "WESTUS2:20210514T173222Z:f7df63b5-2eeb-4c57-ada9-a2d8b4ca816a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -315,10 +318,10 @@ "nosniff" ], "Date": [ - "Fri, 19 Feb 2021 19:13:40 GMT" + "Fri, 14 May 2021 17:32:22 GMT" ], "Content-Length": [ - "757" + "22" ], "Content-Type": [ "application/json; charset=utf-8" @@ -327,20 +330,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/DotNetHubRG/providers/Microsoft.EventHub/namespaces/iothubcsharpsdkehnamespacetest\",\r\n \"name\": \"iothubcsharpsdkehnamespacetest\",\r\n \"type\": \"Microsoft.EventHub/namespaces\",\r\n \"location\": \"West US 2\",\r\n \"kind\": \"EventHub\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Created\",\r\n \"metricId\": \"9dbb02fa-c9d2-4593-967e-ffc99c566c5c:iothubcsharpsdkehnamespacetest\",\r\n \"status\": \"Created\",\r\n \"createdAt\": \"2021-02-19T19:12:39.277Z\",\r\n \"serviceBusEndpoint\": \"https://iothubcsharpsdkehnamespacetest.servicebus.windows.net:443/\",\r\n \"enabled\": true,\r\n \"critical\": false,\r\n \"updatedAt\": \"2021-02-19T19:12:39.277Z\",\r\n \"eventHubEnabled\": true,\r\n \"namespaceType\": \"EventHub\",\r\n \"messagingSku\": 2\r\n }\r\n}", + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/DotNetHubRG/providers/Microsoft.EventHub/namespaces/iothubcsharpsdkehnamespacetest?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Jlc291cmNlR3JvdXBzL0RvdE5ldEh1YlJHL3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9pb3RodWJjc2hhcnBzZGtlaG5hbWVzcGFjZXRlc3Q/YXBpLXZlcnNpb249MjAxNS0wOC0wMQ==", + "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/providers/Microsoft.Devices/operationResults/b3NfaWhfNTc5YjAxZjUtY2VlYy00ZDMwLWFjNmEtZTdkMjExOTNjZTI0?api-version=2021-03-31&operationSource=os_ih", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTlRjNVlqQXhaalV0WTJWbFl5MDBaRE13TFdGak5tRXRaVGRrTWpFeE9UTmpaVEkwP2FwaS12ZXJzaW9uPTIwMjEtMDMtMzEmb3BlcmF0aW9uU291cmNlPW9zX2lo", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.0.0.0" ] }, "ResponseHeaders": { @@ -350,24 +353,26 @@ "Pragma": [ "no-cache" ], - "x-ms-request-id": [ - "4c30c27a-2cbd-4051-8997-3a9288452fe3_M2SN1_M2SN1" + "Location": [ + "https://management.azure.com/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/providers/Microsoft.Devices/operationResults/b3NfaWhfNTc5YjAxZjUtY2VlYy00ZDMwLWFjNmEtZTdkMjExOTNjZTI0?api-version=2021-03-31&operationSource=os_ih" ], - "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-reads": [ - "11997" + "11998" + ], + "x-ms-request-id": [ + "c8303294-01f0-4ab8-ba36-5cc54f8928c7" ], "x-ms-correlation-request-id": [ - "c6193bf3-12c3-4f7e-bc56-f998240f1e90" + "c8303294-01f0-4ab8-ba36-5cc54f8928c7" ], "x-ms-routing-request-id": [ - "WESTUS2:20210219T191410Z:c6193bf3-12c3-4f7e-bc56-f998240f1e90" + "WESTUS2:20210514T173223Z:c8303294-01f0-4ab8-ba36-5cc54f8928c7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -376,32 +381,41 @@ "nosniff" ], "Date": [ - "Fri, 19 Feb 2021 19:14:09 GMT" - ], - "Content-Length": [ - "757" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "Fri, 14 May 2021 17:32:22 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/DotNetHubRG/providers/Microsoft.EventHub/namespaces/iothubcsharpsdkehnamespacetest\",\r\n \"name\": \"iothubcsharpsdkehnamespacetest\",\r\n \"type\": \"Microsoft.EventHub/namespaces\",\r\n \"location\": \"West US 2\",\r\n \"kind\": \"EventHub\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Created\",\r\n \"metricId\": \"9dbb02fa-c9d2-4593-967e-ffc99c566c5c:iothubcsharpsdkehnamespacetest\",\r\n \"status\": \"Created\",\r\n \"createdAt\": \"2021-02-19T19:12:39.277Z\",\r\n \"serviceBusEndpoint\": \"https://iothubcsharpsdkehnamespacetest.servicebus.windows.net:443/\",\r\n \"enabled\": true,\r\n \"critical\": false,\r\n \"updatedAt\": \"2021-02-19T19:12:39.277Z\",\r\n \"eventHubEnabled\": true,\r\n \"namespaceType\": \"EventHub\",\r\n \"messagingSku\": 2\r\n }\r\n}", + "ResponseBody": "", "StatusCode": 200 }, { "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/DotNetHubRG/providers/Microsoft.EventHub/namespaces/iothubcsharpsdkehnamespacetest?api-version=2015-08-01", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Jlc291cmNlR3JvdXBzL0RvdE5ldEh1YlJHL3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9pb3RodWJjc2hhcnBzZGtlaG5hbWVzcGFjZXRlc3Q/YXBpLXZlcnNpb249MjAxNS0wOC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"WestUS2\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "RequestHeaders": { + "x-ms-client-request-id": [ + "6bce3804-3c82-42a2-aaba-e3ebde79a674" + ], + "Accept-Language": [ + "en-US" + ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.19043.", "Microsoft.Azure.Management.EventHub.EventHubManagementClient/1.2.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "96" ] }, "ResponseHeaders": { @@ -412,23 +426,23 @@ "no-cache" ], "x-ms-request-id": [ - "b920e9d6-175a-438a-90ae-1d14746b860a_M2SN1_M2SN1" + "ca37615c-5019-4179-9861-80f5ea5166ea_M9CH3_M9CH3" ], "Server-SB": [ - "Service-Bus-Resource-Provider/SN1" + "Service-Bus-Resource-Provider/CH3" ], "Server": [ - "Service-Bus-Resource-Provider/SN1", + "Service-Bus-Resource-Provider/CH3", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "49" ], "x-ms-correlation-request-id": [ - "ef50fadd-5e85-44ce-bd7a-e1e9acf87a28" + "5505736b-e8de-4b83-9bf7-ae4b44987b3b" ], "x-ms-routing-request-id": [ - "WESTUS2:20210219T191440Z:ef50fadd-5e85-44ce-bd7a-e1e9acf87a28" + "WESTUS2:20210514T173225Z:5505736b-e8de-4b83-9bf7-ae4b44987b3b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -437,10 +451,10 @@ "nosniff" ], "Date": [ - "Fri, 19 Feb 2021 19:14:40 GMT" + "Fri, 14 May 2021 17:32:24 GMT" ], "Content-Length": [ - "757" + "520" ], "Content-Type": [ "application/json; charset=utf-8" @@ -449,7 +463,7 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/DotNetHubRG/providers/Microsoft.EventHub/namespaces/iothubcsharpsdkehnamespacetest\",\r\n \"name\": \"iothubcsharpsdkehnamespacetest\",\r\n \"type\": \"Microsoft.EventHub/namespaces\",\r\n \"location\": \"West US 2\",\r\n \"kind\": \"EventHub\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Created\",\r\n \"metricId\": \"9dbb02fa-c9d2-4593-967e-ffc99c566c5c:iothubcsharpsdkehnamespacetest\",\r\n \"status\": \"Created\",\r\n \"createdAt\": \"2021-02-19T19:12:39.277Z\",\r\n \"serviceBusEndpoint\": \"https://iothubcsharpsdkehnamespacetest.servicebus.windows.net:443/\",\r\n \"enabled\": true,\r\n \"critical\": false,\r\n \"updatedAt\": \"2021-02-19T19:12:39.277Z\",\r\n \"eventHubEnabled\": true,\r\n \"namespaceType\": \"EventHub\",\r\n \"messagingSku\": 2\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/DotNetHubRG/providers/Microsoft.EventHub/namespaces/iothubcsharpsdkehnamespacetest\",\r\n \"name\": \"iothubcsharpsdkehnamespacetest\",\r\n \"type\": \"Microsoft.EventHub/namespaces\",\r\n \"location\": \"West US 2\",\r\n \"kind\": \"EventHub\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Unknown\",\r\n \"metricId\": \"9dbb02fa-c9d2-4593-967e-ffc99c566c5c:iothubcsharpsdkehnamespacetest\",\r\n \"enabled\": false,\r\n \"namespaceType\": \"EventHub\",\r\n \"messagingSku\": 2\r\n }\r\n}", "StatusCode": 200 }, { @@ -459,9 +473,9 @@ "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.19043.", "Microsoft.Azure.Management.EventHub.EventHubManagementClient/1.2.0.0" ] }, @@ -473,23 +487,23 @@ "no-cache" ], "x-ms-request-id": [ - "84358d59-7ed8-4176-a2c2-d15f312b9982_M3SN1_M3SN1" + "d607f8c5-2323-4ae1-a843-c9acd7e946f5_M10CH3_M10CH3" ], "Server-SB": [ - "Service-Bus-Resource-Provider/SN1" + "Service-Bus-Resource-Provider/CH3" ], "Server": [ - "Service-Bus-Resource-Provider/SN1", + "Service-Bus-Resource-Provider/CH3", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11999" ], "x-ms-correlation-request-id": [ - "2790de64-88a9-47dc-992a-9f24a27b5171" + "6eec484a-e455-4815-ba76-265b2e15f49b" ], "x-ms-routing-request-id": [ - "WESTUS2:20210219T191510Z:2790de64-88a9-47dc-992a-9f24a27b5171" + "WESTUS2:20210514T173255Z:6eec484a-e455-4815-ba76-265b2e15f49b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -498,7 +512,7 @@ "nosniff" ], "Date": [ - "Fri, 19 Feb 2021 19:15:09 GMT" + "Fri, 14 May 2021 17:32:55 GMT" ], "Content-Length": [ "757" @@ -510,7 +524,7 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/DotNetHubRG/providers/Microsoft.EventHub/namespaces/iothubcsharpsdkehnamespacetest\",\r\n \"name\": \"iothubcsharpsdkehnamespacetest\",\r\n \"type\": \"Microsoft.EventHub/namespaces\",\r\n \"location\": \"West US 2\",\r\n \"kind\": \"EventHub\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Created\",\r\n \"metricId\": \"9dbb02fa-c9d2-4593-967e-ffc99c566c5c:iothubcsharpsdkehnamespacetest\",\r\n \"status\": \"Created\",\r\n \"createdAt\": \"2021-02-19T19:12:39.277Z\",\r\n \"serviceBusEndpoint\": \"https://iothubcsharpsdkehnamespacetest.servicebus.windows.net:443/\",\r\n \"enabled\": true,\r\n \"critical\": false,\r\n \"updatedAt\": \"2021-02-19T19:12:39.277Z\",\r\n \"eventHubEnabled\": true,\r\n \"namespaceType\": \"EventHub\",\r\n \"messagingSku\": 2\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/DotNetHubRG/providers/Microsoft.EventHub/namespaces/iothubcsharpsdkehnamespacetest\",\r\n \"name\": \"iothubcsharpsdkehnamespacetest\",\r\n \"type\": \"Microsoft.EventHub/namespaces\",\r\n \"location\": \"West US 2\",\r\n \"kind\": \"EventHub\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Created\",\r\n \"metricId\": \"9dbb02fa-c9d2-4593-967e-ffc99c566c5c:iothubcsharpsdkehnamespacetest\",\r\n \"status\": \"Created\",\r\n \"createdAt\": \"2021-05-14T17:32:24.727Z\",\r\n \"serviceBusEndpoint\": \"https://iothubcsharpsdkehnamespacetest.servicebus.windows.net:443/\",\r\n \"enabled\": true,\r\n \"critical\": false,\r\n \"updatedAt\": \"2021-05-14T17:32:24.727Z\",\r\n \"eventHubEnabled\": true,\r\n \"namespaceType\": \"EventHub\",\r\n \"messagingSku\": 2\r\n }\r\n}", "StatusCode": 200 }, { @@ -520,9 +534,9 @@ "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.19043.", "Microsoft.Azure.Management.EventHub.EventHubManagementClient/1.2.0.0" ] }, @@ -534,23 +548,23 @@ "no-cache" ], "x-ms-request-id": [ - "6a46719f-a755-43b3-ac10-e3eac7cb61b6_M3SN1_M3SN1" + "23bbe5ee-9494-4338-a43a-06688e294fe0_M2CH3_M2CH3" ], "Server-SB": [ - "Service-Bus-Resource-Provider/SN1" + "Service-Bus-Resource-Provider/CH3" ], "Server": [ - "Service-Bus-Resource-Provider/SN1", + "Service-Bus-Resource-Provider/CH3", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11998" ], "x-ms-correlation-request-id": [ - "0450a5ba-459d-4390-90e9-506e4631ae82" + "804cbe39-26e3-4a59-9873-8f9e12e83811" ], "x-ms-routing-request-id": [ - "WESTUS2:20210219T191541Z:0450a5ba-459d-4390-90e9-506e4631ae82" + "WESTUS2:20210514T173326Z:804cbe39-26e3-4a59-9873-8f9e12e83811" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -559,10 +573,10 @@ "nosniff" ], "Date": [ - "Fri, 19 Feb 2021 19:15:40 GMT" + "Fri, 14 May 2021 17:33:25 GMT" ], "Content-Length": [ - "757" + "758" ], "Content-Type": [ "application/json; charset=utf-8" @@ -571,20 +585,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/DotNetHubRG/providers/Microsoft.EventHub/namespaces/iothubcsharpsdkehnamespacetest\",\r\n \"name\": \"iothubcsharpsdkehnamespacetest\",\r\n \"type\": \"Microsoft.EventHub/namespaces\",\r\n \"location\": \"West US 2\",\r\n \"kind\": \"EventHub\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Created\",\r\n \"metricId\": \"9dbb02fa-c9d2-4593-967e-ffc99c566c5c:iothubcsharpsdkehnamespacetest\",\r\n \"status\": \"Created\",\r\n \"createdAt\": \"2021-02-19T19:12:39.277Z\",\r\n \"serviceBusEndpoint\": \"https://iothubcsharpsdkehnamespacetest.servicebus.windows.net:443/\",\r\n \"enabled\": true,\r\n \"critical\": false,\r\n \"updatedAt\": \"2021-02-19T19:12:39.277Z\",\r\n \"eventHubEnabled\": true,\r\n \"namespaceType\": \"EventHub\",\r\n \"messagingSku\": 2\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/DotNetHubRG/providers/Microsoft.EventHub/namespaces/iothubcsharpsdkehnamespacetest\",\r\n \"name\": \"iothubcsharpsdkehnamespacetest\",\r\n \"type\": \"Microsoft.EventHub/namespaces\",\r\n \"location\": \"West US 2\",\r\n \"kind\": \"EventHub\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"9dbb02fa-c9d2-4593-967e-ffc99c566c5c:iothubcsharpsdkehnamespacetest\",\r\n \"status\": \"Active\",\r\n \"createdAt\": \"2021-05-14T17:32:24.727Z\",\r\n \"serviceBusEndpoint\": \"https://iothubcsharpsdkehnamespacetest.servicebus.windows.net:443/\",\r\n \"enabled\": true,\r\n \"critical\": false,\r\n \"updatedAt\": \"2021-05-14T17:33:15.907Z\",\r\n \"eventHubEnabled\": true,\r\n \"namespaceType\": \"EventHub\",\r\n \"messagingSku\": 2\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/DotNetHubRG/providers/Microsoft.EventHub/namespaces/iothubcsharpsdkehnamespacetest?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Jlc291cmNlR3JvdXBzL0RvdE5ldEh1YlJHL3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9pb3RodWJjc2hhcnBzZGtlaG5hbWVzcGFjZXRlc3Q/YXBpLXZlcnNpb249MjAxNS0wOC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/DotNetHubRG/providers/Microsoft.EventHub/namespaces/iothubcsharpsdkehnamespacetest/eventhubs/iothubcsharpsdkehtest?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Jlc291cmNlR3JvdXBzL0RvdE5ldEh1YlJHL3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9pb3RodWJjc2hhcnBzZGtlaG5hbWVzcGFjZXRlc3QvZXZlbnRodWJzL2lvdGh1YmNzaGFycHNka2VodGVzdD9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"WestUS2\"\r\n}", "RequestHeaders": { + "x-ms-client-request-id": [ + "5b92bf68-c417-47a0-96d8-9ed171c941d4" + ], + "Accept-Language": [ + "en-US" + ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.19043.", "Microsoft.Azure.Management.EventHub.EventHubManagementClient/1.2.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "29" ] }, "ResponseHeaders": { @@ -595,23 +621,23 @@ "no-cache" ], "x-ms-request-id": [ - "a43ebefc-5f69-431e-9ca9-9cf087429320_M3SN1_M3SN1" + "723a2ede-218e-4eab-93b6-cd58295cf01a_M2CH3_M2CH3" ], "Server-SB": [ - "Service-Bus-Resource-Provider/SN1" + "Service-Bus-Resource-Provider/CH3" ], "Server": [ - "Service-Bus-Resource-Provider/SN1", + "Service-Bus-Resource-Provider/CH3", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" ], "x-ms-correlation-request-id": [ - "49e7ed43-491f-4df2-bce5-e65b5c221ee6" + "f3cc04b7-b198-495e-a948-2d212890de34" ], "x-ms-routing-request-id": [ - "WESTUS2:20210219T191611Z:49e7ed43-491f-4df2-bce5-e65b5c221ee6" + "WESTUS2:20210514T173333Z:f3cc04b7-b198-495e-a948-2d212890de34" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -620,10 +646,10 @@ "nosniff" ], "Date": [ - "Fri, 19 Feb 2021 19:16:10 GMT" + "Fri, 14 May 2021 17:33:33 GMT" ], "Content-Length": [ - "757" + "513" ], "Content-Type": [ "application/json; charset=utf-8" @@ -632,20 +658,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/DotNetHubRG/providers/Microsoft.EventHub/namespaces/iothubcsharpsdkehnamespacetest\",\r\n \"name\": \"iothubcsharpsdkehnamespacetest\",\r\n \"type\": \"Microsoft.EventHub/namespaces\",\r\n \"location\": \"West US 2\",\r\n \"kind\": \"EventHub\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Created\",\r\n \"metricId\": \"9dbb02fa-c9d2-4593-967e-ffc99c566c5c:iothubcsharpsdkehnamespacetest\",\r\n \"status\": \"Created\",\r\n \"createdAt\": \"2021-02-19T19:12:39.277Z\",\r\n \"serviceBusEndpoint\": \"https://iothubcsharpsdkehnamespacetest.servicebus.windows.net:443/\",\r\n \"enabled\": true,\r\n \"critical\": false,\r\n \"updatedAt\": \"2021-02-19T19:12:39.277Z\",\r\n \"eventHubEnabled\": true,\r\n \"namespaceType\": \"EventHub\",\r\n \"messagingSku\": 2\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/DotNetHubRG/providers/Microsoft.EventHub/namespaces/iothubcsharpsdkehnamespacetest/eventhubs/iothubcsharpsdkehtest\",\r\n \"name\": \"iothubcsharpsdkehtest\",\r\n \"type\": \"Microsoft.EventHub/EventHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"path\": \"iothubcsharpsdkehtest\",\r\n \"messageRetentionInDays\": 7,\r\n \"status\": \"Active\",\r\n \"createdAt\": \"2021-05-14T17:33:27.903Z\",\r\n \"updatedAt\": \"2021-05-14T17:33:28.1Z\",\r\n \"partitionCount\": 4,\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/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/DotNetHubRG/providers/Microsoft.EventHub/namespaces/iothubcsharpsdkehnamespacetest?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Jlc291cmNlR3JvdXBzL0RvdE5ldEh1YlJHL3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9pb3RodWJjc2hhcnBzZGtlaG5hbWVzcGFjZXRlc3Q/YXBpLXZlcnNpb249MjAxNS0wOC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/DotNetHubRG/providers/Microsoft.EventHub/namespaces/iothubcsharpsdkehnamespacetest/eventhubs/iothubcsharpsdkehtest/authorizationRules/iothubcsharpsdkehtestrule?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Jlc291cmNlR3JvdXBzL0RvdE5ldEh1YlJHL3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9pb3RodWJjc2hhcnBzZGtlaG5hbWVzcGFjZXRlc3QvZXZlbnRodWJzL2lvdGh1YmNzaGFycHNka2VodGVzdC9hdXRob3JpemF0aW9uUnVsZXMvaW90aHViY3NoYXJwc2RrZWh0ZXN0cnVsZT9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"WestUS2\",\r\n \"properties\": {\r\n \"rights\": [\r\n \"Send\",\r\n \"Listen\"\r\n ]\r\n }\r\n}", "RequestHeaders": { + "x-ms-client-request-id": [ + "670b9d4a-8e20-4231-afa5-8ed77316a3b6" + ], + "Accept-Language": [ + "en-US" + ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.19043.", "Microsoft.Azure.Management.EventHub.EventHubManagementClient/1.2.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "109" ] }, "ResponseHeaders": { @@ -656,23 +694,23 @@ "no-cache" ], "x-ms-request-id": [ - "74b1f7f5-bc9d-4caf-98f8-0d050d76d43e_M3SN1_M3SN1" + "22f83fd7-6e9b-4f55-9484-5ad1461b81dc_M2CH3_M2CH3" ], "Server-SB": [ - "Service-Bus-Resource-Provider/SN1" + "Service-Bus-Resource-Provider/CH3" ], "Server": [ - "Service-Bus-Resource-Provider/SN1", + "Service-Bus-Resource-Provider/CH3", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" ], "x-ms-correlation-request-id": [ - "368e3c0d-7401-4154-aacb-3900157ba417" + "18038abb-198b-4e60-a1da-d3090e59c538" ], "x-ms-routing-request-id": [ - "WESTUS2:20210219T191641Z:368e3c0d-7401-4154-aacb-3900157ba417" + "WESTUS2:20210514T173339Z:18038abb-198b-4e60-a1da-d3090e59c538" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -681,10 +719,10 @@ "nosniff" ], "Date": [ - "Fri, 19 Feb 2021 19:16:40 GMT" + "Fri, 14 May 2021 17:33:39 GMT" ], "Content-Length": [ - "757" + "394" ], "Content-Type": [ "application/json; charset=utf-8" @@ -693,19 +731,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/DotNetHubRG/providers/Microsoft.EventHub/namespaces/iothubcsharpsdkehnamespacetest\",\r\n \"name\": \"iothubcsharpsdkehnamespacetest\",\r\n \"type\": \"Microsoft.EventHub/namespaces\",\r\n \"location\": \"West US 2\",\r\n \"kind\": \"EventHub\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Created\",\r\n \"metricId\": \"9dbb02fa-c9d2-4593-967e-ffc99c566c5c:iothubcsharpsdkehnamespacetest\",\r\n \"status\": \"Created\",\r\n \"createdAt\": \"2021-02-19T19:12:39.277Z\",\r\n \"serviceBusEndpoint\": \"https://iothubcsharpsdkehnamespacetest.servicebus.windows.net:443/\",\r\n \"enabled\": true,\r\n \"critical\": false,\r\n \"updatedAt\": \"2021-02-19T19:12:39.277Z\",\r\n \"eventHubEnabled\": true,\r\n \"namespaceType\": \"EventHub\",\r\n \"messagingSku\": 2\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/DotNetHubRG/providers/Microsoft.EventHub/namespaces/iothubcsharpsdkehnamespacetest/eventhubs/iothubcsharpsdkehtest/authorizationRules/iothubcsharpsdkehtestrule\",\r\n \"name\": \"iothubcsharpsdkehtestrule\",\r\n \"type\": \"Microsoft.EventHub/AuthorizationRules\",\r\n \"location\": \"West US 2\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"rights\": [\r\n \"Send\",\r\n \"Listen\"\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/DotNetHubRG/providers/Microsoft.EventHub/namespaces/iothubcsharpsdkehnamespacetest?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Jlc291cmNlR3JvdXBzL0RvdE5ldEh1YlJHL3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9pb3RodWJjc2hhcnBzZGtlaG5hbWVzcGFjZXRlc3Q/YXBpLXZlcnNpb249MjAxNS0wOC0wMQ==", - "RequestMethod": "GET", + "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/DotNetHubRG/providers/Microsoft.EventHub/namespaces/iothubcsharpsdkehnamespacetest/eventhubs/iothubcsharpsdkehtest/authorizationRules/iothubcsharpsdkehtestrule/ListKeys?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Jlc291cmNlR3JvdXBzL0RvdE5ldEh1YlJHL3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9pb3RodWJjc2hhcnBzZGtlaG5hbWVzcGFjZXRlc3QvZXZlbnRodWJzL2lvdGh1YmNzaGFycHNka2VodGVzdC9hdXRob3JpemF0aW9uUnVsZXMvaW90aHViY3NoYXJwc2RrZWh0ZXN0cnVsZS9MaXN0S2V5cz9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "ed4ab787-338f-425a-b06d-16ffa213afd8" + ], + "Accept-Language": [ + "en-US" + ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.19043.", "Microsoft.Azure.Management.EventHub.EventHubManagementClient/1.2.0.0" ] }, @@ -717,23 +761,23 @@ "no-cache" ], "x-ms-request-id": [ - "652e6594-2583-4031-a9ef-0b11e1bd5b43_M3SN1_M3SN1" + "2815f21d-7b60-4bad-92ed-e90aba38bff5_M2CH3_M2CH3" ], "Server-SB": [ - "Service-Bus-Resource-Provider/SN1" + "Service-Bus-Resource-Provider/CH3" ], "Server": [ - "Service-Bus-Resource-Provider/SN1", + "Service-Bus-Resource-Provider/CH3", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" ], "x-ms-correlation-request-id": [ - "0f1d4298-4986-4de7-becf-44ca20cf5f4e" + "593b9c4b-640d-4245-a667-d3e5b60f726f" ], "x-ms-routing-request-id": [ - "WESTUS2:20210219T191711Z:0f1d4298-4986-4de7-becf-44ca20cf5f4e" + "WESTUS2:20210514T173339Z:593b9c4b-640d-4245-a667-d3e5b60f726f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -742,10 +786,10 @@ "nosniff" ], "Date": [ - "Fri, 19 Feb 2021 19:17:10 GMT" + "Fri, 14 May 2021 17:33:39 GMT" ], "Content-Length": [ - "757" + "637" ], "Content-Type": [ "application/json; charset=utf-8" @@ -754,20 +798,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/DotNetHubRG/providers/Microsoft.EventHub/namespaces/iothubcsharpsdkehnamespacetest\",\r\n \"name\": \"iothubcsharpsdkehnamespacetest\",\r\n \"type\": \"Microsoft.EventHub/namespaces\",\r\n \"location\": \"West US 2\",\r\n \"kind\": \"EventHub\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Created\",\r\n \"metricId\": \"9dbb02fa-c9d2-4593-967e-ffc99c566c5c:iothubcsharpsdkehnamespacetest\",\r\n \"status\": \"Created\",\r\n \"createdAt\": \"2021-02-19T19:12:39.277Z\",\r\n \"serviceBusEndpoint\": \"https://iothubcsharpsdkehnamespacetest.servicebus.windows.net:443/\",\r\n \"enabled\": true,\r\n \"critical\": false,\r\n \"updatedAt\": \"2021-02-19T19:12:39.277Z\",\r\n \"eventHubEnabled\": true,\r\n \"namespaceType\": \"EventHub\",\r\n \"messagingSku\": 2\r\n }\r\n}", + "ResponseBody": "{\r\n \"primaryConnectionString\": \"Endpoint=sb://iothubcsharpsdkehnamespacetest.servicebus.windows.net/;SharedAccessKeyName=iothubcsharpsdkehtestrule;SharedAccessKey=YZl8B0smIdmChbljOV0oz1SGdtGga9u0XDlJ6euh/8w=;EntityPath=iothubcsharpsdkehtest\",\r\n \"secondaryConnectionString\": \"Endpoint=sb://iothubcsharpsdkehnamespacetest.servicebus.windows.net/;SharedAccessKeyName=iothubcsharpsdkehtestrule;SharedAccessKey=Yr7hcqgEgRBmgxijMZ1ekaGHFUZAI6kJCj2Vz1EPtM4=;EntityPath=iothubcsharpsdkehtest\",\r\n \"primaryKey\": \"YZl8B0smIdmChbljOV0oz1SGdtGga9u0XDlJ6euh/8w=\",\r\n \"secondaryKey\": \"Yr7hcqgEgRBmgxijMZ1ekaGHFUZAI6kJCj2Vz1EPtM4=\",\r\n \"keyName\": \"iothubcsharpsdkehtestrule\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/DotNetHubRG/providers/Microsoft.EventHub/namespaces/iothubcsharpsdkehnamespacetest?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Jlc291cmNlR3JvdXBzL0RvdE5ldEh1YlJHL3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9pb3RodWJjc2hhcnBzZGtlaG5hbWVzcGFjZXRlc3Q/YXBpLXZlcnNpb249MjAxNS0wOC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/DotNetHubRG/providers/Microsoft.ServiceBus/namespaces/iotHubCSharpSDKSBNamespaceTest?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Jlc291cmNlR3JvdXBzL0RvdE5ldEh1YlJHL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUJ1cy9uYW1lc3BhY2VzL2lvdEh1YkNTaGFycFNES1NCTmFtZXNwYWNlVGVzdD9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"WestUS2\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "RequestHeaders": { + "x-ms-client-request-id": [ + "a95014f4-cfe8-42f7-bf7f-65867a81987d" + ], + "Accept-Language": [ + "en-US" + ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.ServiceBus.ServiceBusManagementClient/0.2.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "96" ] }, "ResponseHeaders": { @@ -778,7 +834,7 @@ "no-cache" ], "x-ms-request-id": [ - "de99aa4c-bd12-4890-9681-3f4fd3ae0734_M4SN1_M4SN1" + "a4e2c204-e1fa-4953-b5b8-dc6015370db7_M3SN1_M3SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" @@ -787,14 +843,14 @@ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" ], "x-ms-correlation-request-id": [ - "fc6ff1c0-0788-4b3c-9c42-e7f149276368" + "7e69cc83-ffb5-4993-8807-183edce1eddf" ], "x-ms-routing-request-id": [ - "WESTUS2:20210219T191741Z:fc6ff1c0-0788-4b3c-9c42-e7f149276368" + "WESTUS2:20210514T173340Z:7e69cc83-ffb5-4993-8807-183edce1eddf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -803,10 +859,10 @@ "nosniff" ], "Date": [ - "Fri, 19 Feb 2021 19:17:40 GMT" + "Fri, 14 May 2021 17:33:40 GMT" ], "Content-Length": [ - "758" + "526" ], "Content-Type": [ "application/json; charset=utf-8" @@ -815,305 +871,19 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/DotNetHubRG/providers/Microsoft.EventHub/namespaces/iothubcsharpsdkehnamespacetest\",\r\n \"name\": \"iothubcsharpsdkehnamespacetest\",\r\n \"type\": \"Microsoft.EventHub/namespaces\",\r\n \"location\": \"West US 2\",\r\n \"kind\": \"EventHub\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"9dbb02fa-c9d2-4593-967e-ffc99c566c5c:iothubcsharpsdkehnamespacetest\",\r\n \"status\": \"Active\",\r\n \"createdAt\": \"2021-02-19T19:12:39.277Z\",\r\n \"serviceBusEndpoint\": \"https://iothubcsharpsdkehnamespacetest.servicebus.windows.net:443/\",\r\n \"enabled\": true,\r\n \"critical\": false,\r\n \"updatedAt\": \"2021-02-19T19:17:26.303Z\",\r\n \"eventHubEnabled\": true,\r\n \"namespaceType\": \"EventHub\",\r\n \"messagingSku\": 2\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/DotNetHubRG/providers/Microsoft.ServiceBus/namespaces/iotHubCSharpSDKSBNamespaceTest\",\r\n \"name\": \"iotHubCSharpSDKSBNamespaceTest\",\r\n \"type\": \"Microsoft.ServiceBus/namespaces\",\r\n \"location\": \"West US 2\",\r\n \"kind\": \"Messaging\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Unknown\",\r\n \"metricId\": \"9dbb02fa-c9d2-4593-967e-ffc99c566c5c:iothubcsharpsdksbnamespacetest\",\r\n \"enabled\": false,\r\n \"namespaceType\": \"Messaging\",\r\n \"messagingSku\": 2\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/DotNetHubRG/providers/Microsoft.EventHub/namespaces/iothubcsharpsdkehnamespacetest/eventhubs/iothubcsharpsdkehtest?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Jlc291cmNlR3JvdXBzL0RvdE5ldEh1YlJHL3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9pb3RodWJjc2hhcnBzZGtlaG5hbWVzcGFjZXRlc3QvZXZlbnRodWJzL2lvdGh1YmNzaGFycHNka2VodGVzdD9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"WestUS2\"\r\n}", + "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/DotNetHubRG/providers/Microsoft.ServiceBus/namespaces/iotHubCSharpSDKSBNamespaceTest?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Jlc291cmNlR3JvdXBzL0RvdE5ldEh1YlJHL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUJ1cy9uYW1lc3BhY2VzL2lvdEh1YkNTaGFycFNES1NCTmFtZXNwYWNlVGVzdD9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "29bfae29-515c-493f-b4c3-49620f8d37fe" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29719.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/1.2.0.0" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "29" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "97f4596b-49d7-4b38-81ea-8af75e73a2df_M4SN1_M4SN1" - ], - "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": [ - "df1fb9a0-eb19-4376-b77b-df79ae16bafa" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20210219T191748Z:df1fb9a0-eb19-4376-b77b-df79ae16bafa" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 19 Feb 2021 19:17:48 GMT" - ], - "Content-Length": [ - "514" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/DotNetHubRG/providers/Microsoft.EventHub/namespaces/iothubcsharpsdkehnamespacetest/eventhubs/iothubcsharpsdkehtest\",\r\n \"name\": \"iothubcsharpsdkehtest\",\r\n \"type\": \"Microsoft.EventHub/EventHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"path\": \"iothubcsharpsdkehtest\",\r\n \"messageRetentionInDays\": 7,\r\n \"status\": \"Active\",\r\n \"createdAt\": \"2021-02-19T19:17:43.023Z\",\r\n \"updatedAt\": \"2021-02-19T19:17:43.25Z\",\r\n \"partitionCount\": 4,\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/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/DotNetHubRG/providers/Microsoft.EventHub/namespaces/iothubcsharpsdkehnamespacetest/eventhubs/iothubcsharpsdkehtest/authorizationRules/iothubcsharpsdkehtestrule?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Jlc291cmNlR3JvdXBzL0RvdE5ldEh1YlJHL3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9pb3RodWJjc2hhcnBzZGtlaG5hbWVzcGFjZXRlc3QvZXZlbnRodWJzL2lvdGh1YmNzaGFycHNka2VodGVzdC9hdXRob3JpemF0aW9uUnVsZXMvaW90aHViY3NoYXJwc2RrZWh0ZXN0cnVsZT9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"WestUS2\",\r\n \"properties\": {\r\n \"rights\": [\r\n \"Send\",\r\n \"Listen\"\r\n ]\r\n }\r\n}", - "RequestHeaders": { - "x-ms-client-request-id": [ - "a4f93846-3342-47d0-85a7-dc2491fb862d" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29719.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/1.2.0.0" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "109" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "8c4492d2-d98d-4d27-977f-e144f202ab06_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": [ - "1198" - ], - "x-ms-correlation-request-id": [ - "96700c6f-0709-4307-aa73-8217f39e1100" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20210219T191754Z:96700c6f-0709-4307-aa73-8217f39e1100" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 19 Feb 2021 19:17:53 GMT" - ], - "Content-Length": [ - "394" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/DotNetHubRG/providers/Microsoft.EventHub/namespaces/iothubcsharpsdkehnamespacetest/eventhubs/iothubcsharpsdkehtest/authorizationRules/iothubcsharpsdkehtestrule\",\r\n \"name\": \"iothubcsharpsdkehtestrule\",\r\n \"type\": \"Microsoft.EventHub/AuthorizationRules\",\r\n \"location\": \"West US 2\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"rights\": [\r\n \"Send\",\r\n \"Listen\"\r\n ]\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/DotNetHubRG/providers/Microsoft.EventHub/namespaces/iothubcsharpsdkehnamespacetest/eventhubs/iothubcsharpsdkehtest/authorizationRules/iothubcsharpsdkehtestrule/ListKeys?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Jlc291cmNlR3JvdXBzL0RvdE5ldEh1YlJHL3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9pb3RodWJjc2hhcnBzZGtlaG5hbWVzcGFjZXRlc3QvZXZlbnRodWJzL2lvdGh1YmNzaGFycHNka2VodGVzdC9hdXRob3JpemF0aW9uUnVsZXMvaW90aHViY3NoYXJwc2RrZWh0ZXN0cnVsZS9MaXN0S2V5cz9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", - "RequestMethod": "POST", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "3c628361-fd5b-4589-9588-4df51d508826" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29719.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/1.2.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "b8d89e33-db85-41d7-9131-93bf6f525170_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": [ - "519f7725-9f72-4f82-ba26-4a34030ab44c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20210219T191755Z:519f7725-9f72-4f82-ba26-4a34030ab44c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 19 Feb 2021 19:17:54 GMT" - ], - "Content-Length": [ - "637" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"primaryConnectionString\": \"Endpoint=sb://iothubcsharpsdkehnamespacetest.servicebus.windows.net/;SharedAccessKeyName=iothubcsharpsdkehtestrule;SharedAccessKey=ow2dQOXm1n6cSzEMqnn78zbIjMPcO+2NBOmvVfcqdgM=;EntityPath=iothubcsharpsdkehtest\",\r\n \"secondaryConnectionString\": \"Endpoint=sb://iothubcsharpsdkehnamespacetest.servicebus.windows.net/;SharedAccessKeyName=iothubcsharpsdkehtestrule;SharedAccessKey=1WZWbSwf/JEH6YFp/4+X+72bLzfhx/Qtvmvo8GlqoFc=;EntityPath=iothubcsharpsdkehtest\",\r\n \"primaryKey\": \"ow2dQOXm1n6cSzEMqnn78zbIjMPcO+2NBOmvVfcqdgM=\",\r\n \"secondaryKey\": \"1WZWbSwf/JEH6YFp/4+X+72bLzfhx/Qtvmvo8GlqoFc=\",\r\n \"keyName\": \"iothubcsharpsdkehtestrule\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/DotNetHubRG/providers/Microsoft.ServiceBus/namespaces/iotHubCSharpSDKSBNamespaceTest?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Jlc291cmNlR3JvdXBzL0RvdE5ldEh1YlJHL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUJ1cy9uYW1lc3BhY2VzL2lvdEh1YkNTaGFycFNES1NCTmFtZXNwYWNlVGVzdD9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"WestUS2\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", - "RequestHeaders": { - "x-ms-client-request-id": [ - "d73b1625-463b-41eb-a801-9286643d8a43" - ], - "Accept-Language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.ServiceBus.ServiceBusManagementClient/0.2.0.0" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "96" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "782f56ea-cb7b-43e6-8859-aac6c322ba1a_M7SN1_M7SN1" - ], - "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": [ - "cb04364a-9198-4c8d-bd0c-953540e849c6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20210219T191756Z:cb04364a-9198-4c8d-bd0c-953540e849c6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 19 Feb 2021 19:17:56 GMT" - ], - "Content-Length": [ - "526" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/DotNetHubRG/providers/Microsoft.ServiceBus/namespaces/iotHubCSharpSDKSBNamespaceTest\",\r\n \"name\": \"iotHubCSharpSDKSBNamespaceTest\",\r\n \"type\": \"Microsoft.ServiceBus/namespaces\",\r\n \"location\": \"West US 2\",\r\n \"kind\": \"Messaging\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Unknown\",\r\n \"metricId\": \"9dbb02fa-c9d2-4593-967e-ffc99c566c5c:iothubcsharpsdksbnamespacetest\",\r\n \"enabled\": false,\r\n \"namespaceType\": \"Messaging\",\r\n \"messagingSku\": 2\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/DotNetHubRG/providers/Microsoft.ServiceBus/namespaces/iotHubCSharpSDKSBNamespaceTest?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Jlc291cmNlR3JvdXBzL0RvdE5ldEh1YlJHL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUJ1cy9uYW1lc3BhY2VzL2lvdEh1YkNTaGFycFNES1NCTmFtZXNwYWNlVGVzdD9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29719.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.19043.", "Microsoft.Azure.Management.ServiceBus.ServiceBusManagementClient/0.2.0.0" ] }, @@ -1125,7 +895,7 @@ "no-cache" ], "x-ms-request-id": [ - "7b8655fb-f031-4809-a341-e91ffff242af_M0SN1_M0SN1" + "b985a05c-b2f0-40a8-9066-cbba5b655908_M5SN1_M5SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" @@ -1138,10 +908,10 @@ "11999" ], "x-ms-correlation-request-id": [ - "9329d17f-a6ba-4aeb-9536-0711247d009a" + "bbba8fcf-0059-49f1-80d9-79a621a3057c" ], "x-ms-routing-request-id": [ - "WESTUS2:20210219T191826Z:9329d17f-a6ba-4aeb-9536-0711247d009a" + "WESTUS2:20210514T173410Z:bbba8fcf-0059-49f1-80d9-79a621a3057c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1150,10 +920,10 @@ "nosniff" ], "Date": [ - "Fri, 19 Feb 2021 19:18:26 GMT" + "Fri, 14 May 2021 17:34:10 GMT" ], "Content-Length": [ - "740" + "738" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1162,7 +932,7 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/DotNetHubRG/providers/Microsoft.ServiceBus/namespaces/iotHubCSharpSDKSBNamespaceTest\",\r\n \"name\": \"iotHubCSharpSDKSBNamespaceTest\",\r\n \"type\": \"Microsoft.ServiceBus/namespaces\",\r\n \"location\": \"West US 2\",\r\n \"kind\": \"Messaging\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Created\",\r\n \"metricId\": \"9dbb02fa-c9d2-4593-967e-ffc99c566c5c:iothubcsharpsdksbnamespacetest\",\r\n \"status\": \"Created\",\r\n \"createdAt\": \"2021-02-19T19:17:55.797Z\",\r\n \"serviceBusEndpoint\": \"https://iotHubCSharpSDKSBNamespaceTest.servicebus.windows.net:443/\",\r\n \"enabled\": true,\r\n \"critical\": false,\r\n \"updatedAt\": \"2021-02-19T19:17:55.797Z\",\r\n \"namespaceType\": \"Messaging\",\r\n \"messagingSku\": 2\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/DotNetHubRG/providers/Microsoft.ServiceBus/namespaces/iotHubCSharpSDKSBNamespaceTest\",\r\n \"name\": \"iotHubCSharpSDKSBNamespaceTest\",\r\n \"type\": \"Microsoft.ServiceBus/namespaces\",\r\n \"location\": \"West US 2\",\r\n \"kind\": \"Messaging\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Created\",\r\n \"metricId\": \"9dbb02fa-c9d2-4593-967e-ffc99c566c5c:iothubcsharpsdksbnamespacetest\",\r\n \"status\": \"Created\",\r\n \"createdAt\": \"2021-05-14T17:33:40.16Z\",\r\n \"serviceBusEndpoint\": \"https://iotHubCSharpSDKSBNamespaceTest.servicebus.windows.net:443/\",\r\n \"enabled\": true,\r\n \"critical\": false,\r\n \"updatedAt\": \"2021-05-14T17:33:40.16Z\",\r\n \"namespaceType\": \"Messaging\",\r\n \"messagingSku\": 2\r\n }\r\n}", "StatusCode": 200 }, { @@ -1172,9 +942,9 @@ "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.19043.", "Microsoft.Azure.Management.ServiceBus.ServiceBusManagementClient/0.2.0.0" ] }, @@ -1186,7 +956,7 @@ "no-cache" ], "x-ms-request-id": [ - "dc480554-35c1-4f6f-a2a3-f296edffcaea_M11SN1_M11SN1" + "24c3bb4a-e91a-4572-94c7-1ea27deda92e_M4SN1_M4SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" @@ -1199,10 +969,10 @@ "11998" ], "x-ms-correlation-request-id": [ - "4cb71253-4f45-4580-a3e6-1addbc670f2f" + "2d693f06-5b01-4f82-8eee-5f405dd3c8bd" ], "x-ms-routing-request-id": [ - "WESTUS2:20210219T191856Z:4cb71253-4f45-4580-a3e6-1addbc670f2f" + "WESTUS2:20210514T173441Z:2d693f06-5b01-4f82-8eee-5f405dd3c8bd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1211,10 +981,10 @@ "nosniff" ], "Date": [ - "Fri, 19 Feb 2021 19:18:56 GMT" + "Fri, 14 May 2021 17:34:40 GMT" ], "Content-Length": [ - "741" + "739" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1223,7 +993,7 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/DotNetHubRG/providers/Microsoft.ServiceBus/namespaces/iotHubCSharpSDKSBNamespaceTest\",\r\n \"name\": \"iotHubCSharpSDKSBNamespaceTest\",\r\n \"type\": \"Microsoft.ServiceBus/namespaces\",\r\n \"location\": \"West US 2\",\r\n \"kind\": \"Messaging\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"9dbb02fa-c9d2-4593-967e-ffc99c566c5c:iothubcsharpsdksbnamespacetest\",\r\n \"status\": \"Active\",\r\n \"createdAt\": \"2021-02-19T19:17:55.797Z\",\r\n \"serviceBusEndpoint\": \"https://iotHubCSharpSDKSBNamespaceTest.servicebus.windows.net:443/\",\r\n \"enabled\": true,\r\n \"critical\": false,\r\n \"updatedAt\": \"2021-02-19T19:18:41.903Z\",\r\n \"namespaceType\": \"Messaging\",\r\n \"messagingSku\": 2\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/DotNetHubRG/providers/Microsoft.ServiceBus/namespaces/iotHubCSharpSDKSBNamespaceTest\",\r\n \"name\": \"iotHubCSharpSDKSBNamespaceTest\",\r\n \"type\": \"Microsoft.ServiceBus/namespaces\",\r\n \"location\": \"West US 2\",\r\n \"kind\": \"Messaging\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"9dbb02fa-c9d2-4593-967e-ffc99c566c5c:iothubcsharpsdksbnamespacetest\",\r\n \"status\": \"Active\",\r\n \"createdAt\": \"2021-05-14T17:33:40.16Z\",\r\n \"serviceBusEndpoint\": \"https://iotHubCSharpSDKSBNamespaceTest.servicebus.windows.net:443/\",\r\n \"enabled\": true,\r\n \"critical\": false,\r\n \"updatedAt\": \"2021-05-14T17:34:22.61Z\",\r\n \"namespaceType\": \"Messaging\",\r\n \"messagingSku\": 2\r\n }\r\n}", "StatusCode": 200 }, { @@ -1233,15 +1003,15 @@ "RequestBody": "{\r\n \"location\": \"WestUS2\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "8e9d9d6f-c2f9-4b43-868d-cee81b6237f5" + "c7cfd8c5-ae4b-4d1c-a500-10c24b1e0ac0" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.19043.", "Microsoft.Azure.Management.ServiceBus.ServiceBusManagementClient/0.2.0.0" ], "Content-Type": [ @@ -1259,7 +1029,7 @@ "no-cache" ], "x-ms-request-id": [ - "bd66e65f-4e97-42f2-bd5d-1affbdfcd1a9_M11SN1_M11SN1" + "47bb4939-fd63-4ae9-8829-c91cfd9e1dbd_M4SN1_M4SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" @@ -1272,10 +1042,10 @@ "1198" ], "x-ms-correlation-request-id": [ - "8b1841d1-b828-4c82-9669-b227ee2aaa02" + "818e7361-f685-440c-ae22-93a0f41296e4" ], "x-ms-routing-request-id": [ - "WESTUS2:20210219T191859Z:8b1841d1-b828-4c82-9669-b227ee2aaa02" + "WESTUS2:20210514T173443Z:818e7361-f685-440c-ae22-93a0f41296e4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1284,7 +1054,7 @@ "nosniff" ], "Date": [ - "Fri, 19 Feb 2021 19:18:59 GMT" + "Fri, 14 May 2021 17:34:43 GMT" ], "Content-Length": [ "964" @@ -1296,7 +1066,7 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/DotNetHubRG/providers/Microsoft.ServiceBus/namespaces/iotHubCSharpSDKSBNamespaceTest/queues/iotHubCSharpSDKSBTest\",\r\n \"name\": \"iotHubCSharpSDKSBTest\",\r\n \"type\": \"Microsoft.ServiceBus/Queues\",\r\n \"location\": \"West US 2\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"path\": \"iotHubCSharpSDKSBTest\",\r\n \"lockDuration\": \"00:01:00\",\r\n \"maxSizeInMegabytes\": 1024,\r\n \"requiresDuplicateDetection\": false,\r\n \"requiresSession\": false,\r\n \"defaultMessageTimeToLive\": \"10675199.02:48:05.4775807\",\r\n \"deadLetteringOnMessageExpiration\": false,\r\n \"duplicateDetectionHistoryTimeWindow\": \"00:10:00\",\r\n \"maxDeliveryCount\": 10,\r\n \"enableBatchedOperations\": true,\r\n \"sizeInBytes\": 0,\r\n \"messageCount\": 0,\r\n \"isAnonymousAccessible\": false,\r\n \"status\": \"Active\",\r\n \"createdAt\": \"2021-02-19T19:18:58.693Z\",\r\n \"updatedAt\": \"2021-02-19T19:18:58.743Z\",\r\n \"supportOrdering\": true,\r\n \"autoDeleteOnIdle\": \"10675199.02:48:05.4775807\",\r\n \"enablePartitioning\": false,\r\n \"entityAvailabilityStatus\": \"Available\",\r\n \"enableExpress\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/DotNetHubRG/providers/Microsoft.ServiceBus/namespaces/iotHubCSharpSDKSBNamespaceTest/queues/iotHubCSharpSDKSBTest\",\r\n \"name\": \"iotHubCSharpSDKSBTest\",\r\n \"type\": \"Microsoft.ServiceBus/Queues\",\r\n \"location\": \"West US 2\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"path\": \"iotHubCSharpSDKSBTest\",\r\n \"lockDuration\": \"00:01:00\",\r\n \"maxSizeInMegabytes\": 1024,\r\n \"requiresDuplicateDetection\": false,\r\n \"requiresSession\": false,\r\n \"defaultMessageTimeToLive\": \"10675199.02:48:05.4775807\",\r\n \"deadLetteringOnMessageExpiration\": false,\r\n \"duplicateDetectionHistoryTimeWindow\": \"00:10:00\",\r\n \"maxDeliveryCount\": 10,\r\n \"enableBatchedOperations\": true,\r\n \"sizeInBytes\": 0,\r\n \"messageCount\": 0,\r\n \"isAnonymousAccessible\": false,\r\n \"status\": \"Active\",\r\n \"createdAt\": \"2021-05-14T17:34:43.097Z\",\r\n \"updatedAt\": \"2021-05-14T17:34:43.347Z\",\r\n \"supportOrdering\": true,\r\n \"autoDeleteOnIdle\": \"10675199.02:48:05.4775807\",\r\n \"enablePartitioning\": false,\r\n \"entityAvailabilityStatus\": \"Available\",\r\n \"enableExpress\": false\r\n }\r\n}", "StatusCode": 200 }, { @@ -1306,15 +1076,15 @@ "RequestBody": "{\r\n \"location\": \"WestUS2\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "15982f39-7a5c-4ea2-b93f-6a2c4b903db8" + "dcd7c4e9-1a48-4a97-b547-ff144cc1c554" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.19043.", "Microsoft.Azure.Management.ServiceBus.ServiceBusManagementClient/0.2.0.0" ], "Content-Type": [ @@ -1332,7 +1102,7 @@ "no-cache" ], "x-ms-request-id": [ - "14c93ee0-50ca-4946-977f-aaa9a0313ace_M11SN1_M11SN1" + "115ec5d2-7d50-476b-9075-55dbab647b63_M4SN1_M4SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" @@ -1345,10 +1115,10 @@ "1197" ], "x-ms-correlation-request-id": [ - "31aea35a-b3ae-4d72-9fb3-d121e8827815" + "a77e9255-7318-420f-9c6c-e3fb784e23e0" ], "x-ms-routing-request-id": [ - "WESTUS2:20210219T191909Z:31aea35a-b3ae-4d72-9fb3-d121e8827815" + "WESTUS2:20210514T173446Z:a77e9255-7318-420f-9c6c-e3fb784e23e0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1357,10 +1127,10 @@ "nosniff" ], "Date": [ - "Fri, 19 Feb 2021 19:19:09 GMT" + "Fri, 14 May 2021 17:34:45 GMT" ], "Content-Length": [ - "921" + "922" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1369,7 +1139,7 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/DotNetHubRG/providers/Microsoft.ServiceBus/namespaces/iotHubCSharpSDKSBNamespaceTest/topics/iotHubCSharpSDKTopicTest\",\r\n \"name\": \"iotHubCSharpSDKTopicTest\",\r\n \"type\": \"Microsoft.ServiceBus/Topic\",\r\n \"location\": \"West US 2\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"path\": \"iotHubCSharpSDKTopicTest\",\r\n \"defaultMessageTimeToLive\": \"10675199.02:48:05.4775807\",\r\n \"maxSizeInMegabytes\": 1024,\r\n \"requiresDuplicateDetection\": false,\r\n \"duplicateDetectionHistoryTimeWindow\": \"00:10:00\",\r\n \"enableBatchedOperations\": true,\r\n \"sizeInBytes\": 0,\r\n \"filteringMessagesBeforePublishing\": false,\r\n \"isAnonymousAccessible\": false,\r\n \"status\": \"Active\",\r\n \"createdAt\": \"2021-02-19T19:19:00.91Z\",\r\n \"updatedAt\": \"2021-02-19T19:19:09.07Z\",\r\n \"supportOrdering\": true,\r\n \"autoDeleteOnIdle\": \"10675199.02:48:05.4775807\",\r\n \"enablePartitioning\": false,\r\n \"entityAvailabilityStatus\": \"Available\",\r\n \"enableSubscriptionPartitioning\": false,\r\n \"enableExpress\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/DotNetHubRG/providers/Microsoft.ServiceBus/namespaces/iotHubCSharpSDKSBNamespaceTest/topics/iotHubCSharpSDKTopicTest\",\r\n \"name\": \"iotHubCSharpSDKTopicTest\",\r\n \"type\": \"Microsoft.ServiceBus/Topic\",\r\n \"location\": \"West US 2\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"path\": \"iotHubCSharpSDKTopicTest\",\r\n \"defaultMessageTimeToLive\": \"10675199.02:48:05.4775807\",\r\n \"maxSizeInMegabytes\": 1024,\r\n \"requiresDuplicateDetection\": false,\r\n \"duplicateDetectionHistoryTimeWindow\": \"00:10:00\",\r\n \"enableBatchedOperations\": true,\r\n \"sizeInBytes\": 0,\r\n \"filteringMessagesBeforePublishing\": false,\r\n \"isAnonymousAccessible\": false,\r\n \"status\": \"Active\",\r\n \"createdAt\": \"2021-05-14T17:34:45.673Z\",\r\n \"updatedAt\": \"2021-05-14T17:34:45.71Z\",\r\n \"supportOrdering\": true,\r\n \"autoDeleteOnIdle\": \"10675199.02:48:05.4775807\",\r\n \"enablePartitioning\": false,\r\n \"entityAvailabilityStatus\": \"Available\",\r\n \"enableSubscriptionPartitioning\": false,\r\n \"enableExpress\": false\r\n }\r\n}", "StatusCode": 200 }, { @@ -1379,15 +1149,15 @@ "RequestBody": "{\r\n \"location\": \"WestUS2\",\r\n \"properties\": {\r\n \"rights\": [\r\n \"Send\",\r\n \"Listen\"\r\n ]\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "61bd00eb-2060-41da-aceb-ea2d760ad599" + "1c07d934-6104-481b-88e7-484eb31ff0ea" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.19043.", "Microsoft.Azure.Management.ServiceBus.ServiceBusManagementClient/0.2.0.0" ], "Content-Type": [ @@ -1405,7 +1175,7 @@ "no-cache" ], "x-ms-request-id": [ - "d5b258f0-0804-4132-af42-279338cf3ecf_M11SN1_M11SN1" + "a6167763-2bd0-4372-a2c4-d1b00dfbcbf1_M4SN1_M4SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" @@ -1418,10 +1188,10 @@ "1196" ], "x-ms-correlation-request-id": [ - "0e0da583-60ac-498a-a904-1ac39f3a3c1f" + "619dc4e7-d0de-44cf-86d4-46437e56bcd3" ], "x-ms-routing-request-id": [ - "WESTUS2:20210219T191915Z:0e0da583-60ac-498a-a904-1ac39f3a3c1f" + "WESTUS2:20210514T173452Z:619dc4e7-d0de-44cf-86d4-46437e56bcd3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1430,7 +1200,7 @@ "nosniff" ], "Date": [ - "Fri, 19 Feb 2021 19:19:14 GMT" + "Fri, 14 May 2021 17:34:51 GMT" ], "Content-Length": [ "405" @@ -1442,527 +1212,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/DotNetHubRG/providers/Microsoft.ServiceBus/namespaces/iotHubCSharpSDKSBNamespaceTest/queues/iotHubCSharpSDKSBTest/authorizationRules/iotHubCSharpSDKSBTopicTestRule\",\r\n \"name\": \"iotHubCSharpSDKSBTopicTestRule\",\r\n \"type\": \"Microsoft.ServiceBus/AuthorizationRules\",\r\n \"location\": \"West US 2\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"rights\": [\r\n \"Send\",\r\n \"Listen\"\r\n ]\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/DotNetHubRG/providers/Microsoft.ServiceBus/namespaces/iotHubCSharpSDKSBNamespaceTest/topics/iotHubCSharpSDKTopicTest/authorizationRules/iotHubCSharpSDKSBTopicTestRule?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Jlc291cmNlR3JvdXBzL0RvdE5ldEh1YlJHL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUJ1cy9uYW1lc3BhY2VzL2lvdEh1YkNTaGFycFNES1NCTmFtZXNwYWNlVGVzdC90b3BpY3MvaW90SHViQ1NoYXJwU0RLVG9waWNUZXN0L2F1dGhvcml6YXRpb25SdWxlcy9pb3RIdWJDU2hhcnBTREtTQlRvcGljVGVzdFJ1bGU/YXBpLXZlcnNpb249MjAxNS0wOC0wMQ==", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"WestUS2\",\r\n \"properties\": {\r\n \"rights\": [\r\n \"Send\",\r\n \"Listen\"\r\n ]\r\n }\r\n}", - "RequestHeaders": { - "x-ms-client-request-id": [ - "f83dc4bf-9162-49dc-a603-6aa238c99c6b" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29719.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.ServiceBus.ServiceBusManagementClient/0.2.0.0" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "109" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "2ec66648-c021-433a-9689-ab858128e3aa_M11SN1_M11SN1" - ], - "Server-SB": [ - "Service-Bus-Resource-Provider/SN1" - ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" - ], - "x-ms-correlation-request-id": [ - "e703de71-07da-411a-b42a-37936df2e6d1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20210219T191921Z:e703de71-07da-411a-b42a-37936df2e6d1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 19 Feb 2021 19:19:20 GMT" - ], - "Content-Length": [ - "408" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/DotNetHubRG/providers/Microsoft.ServiceBus/namespaces/iotHubCSharpSDKSBNamespaceTest/topics/iotHubCSharpSDKTopicTest/authorizationRules/iotHubCSharpSDKSBTopicTestRule\",\r\n \"name\": \"iotHubCSharpSDKSBTopicTestRule\",\r\n \"type\": \"Microsoft.ServiceBus/AuthorizationRules\",\r\n \"location\": \"West US 2\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"rights\": [\r\n \"Send\",\r\n \"Listen\"\r\n ]\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/DotNetHubRG/providers/Microsoft.ServiceBus/namespaces/iotHubCSharpSDKSBNamespaceTest/queues/iotHubCSharpSDKSBTest/authorizationRules/iotHubCSharpSDKSBTopicTestRule/ListKeys?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Jlc291cmNlR3JvdXBzL0RvdE5ldEh1YlJHL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUJ1cy9uYW1lc3BhY2VzL2lvdEh1YkNTaGFycFNES1NCTmFtZXNwYWNlVGVzdC9xdWV1ZXMvaW90SHViQ1NoYXJwU0RLU0JUZXN0L2F1dGhvcml6YXRpb25SdWxlcy9pb3RIdWJDU2hhcnBTREtTQlRvcGljVGVzdFJ1bGUvTGlzdEtleXM/YXBpLXZlcnNpb249MjAxNS0wOC0wMQ==", - "RequestMethod": "POST", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "aadc8505-df1f-400d-bcbb-e300ad5de36b" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29719.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.ServiceBus.ServiceBusManagementClient/0.2.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "e5aeb4b9-a2d8-4362-8713-ad3157795d3d_M11SN1_M11SN1" - ], - "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": [ - "67ee5500-cafe-4c87-95e5-728ba0dc6771" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20210219T191921Z:67ee5500-cafe-4c87-95e5-728ba0dc6771" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 19 Feb 2021 19:19:21 GMT" - ], - "Content-Length": [ - "652" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"primaryConnectionString\": \"Endpoint=sb://iothubcsharpsdksbnamespacetest.servicebus.windows.net/;SharedAccessKeyName=iotHubCSharpSDKSBTopicTestRule;SharedAccessKey=w5gO36Y+LTs4xRecen14lij/xUC/HZqot5WrwP+fGt0=;EntityPath=iotHubCSharpSDKSBTest\",\r\n \"secondaryConnectionString\": \"Endpoint=sb://iothubcsharpsdksbnamespacetest.servicebus.windows.net/;SharedAccessKeyName=iotHubCSharpSDKSBTopicTestRule;SharedAccessKey=/woWfw/HMNBJKIrB6H/WidKkl0n752w/TE0aMbJBGiI=;EntityPath=iotHubCSharpSDKSBTest\",\r\n \"primaryKey\": \"w5gO36Y+LTs4xRecen14lij/xUC/HZqot5WrwP+fGt0=\",\r\n \"secondaryKey\": \"/woWfw/HMNBJKIrB6H/WidKkl0n752w/TE0aMbJBGiI=\",\r\n \"keyName\": \"iotHubCSharpSDKSBTopicTestRule\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/DotNetHubRG/providers/Microsoft.ServiceBus/namespaces/iotHubCSharpSDKSBNamespaceTest/queues/iotHubCSharpSDKTopicTest/authorizationRules/iotHubCSharpSDKSBTopicTestRule/ListKeys?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Jlc291cmNlR3JvdXBzL0RvdE5ldEh1YlJHL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUJ1cy9uYW1lc3BhY2VzL2lvdEh1YkNTaGFycFNES1NCTmFtZXNwYWNlVGVzdC9xdWV1ZXMvaW90SHViQ1NoYXJwU0RLVG9waWNUZXN0L2F1dGhvcml6YXRpb25SdWxlcy9pb3RIdWJDU2hhcnBTREtTQlRvcGljVGVzdFJ1bGUvTGlzdEtleXM/YXBpLXZlcnNpb249MjAxNS0wOC0wMQ==", - "RequestMethod": "POST", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "fed6715e-4511-4813-b907-691e016e5159" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29719.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.ServiceBus.ServiceBusManagementClient/0.2.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "60d11ef2-5285-4ceb-96b2-a2095bfcbd1f_M11SN1_M11SN1" - ], - "Server-SB": [ - "Service-Bus-Resource-Provider/SN1" - ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" - ], - "x-ms-correlation-request-id": [ - "2be850ae-7348-4c19-aaaf-440b51fad7e9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20210219T191921Z:2be850ae-7348-4c19-aaaf-440b51fad7e9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 19 Feb 2021 19:19:21 GMT" - ], - "Content-Length": [ - "658" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"primaryConnectionString\": \"Endpoint=sb://iothubcsharpsdksbnamespacetest.servicebus.windows.net/;SharedAccessKeyName=iotHubCSharpSDKSBTopicTestRule;SharedAccessKey=wr2U4zvi4tQVT+G033u0+tVfw0Zd/uTPpPX07lQyTF8=;EntityPath=iotHubCSharpSDKTopicTest\",\r\n \"secondaryConnectionString\": \"Endpoint=sb://iothubcsharpsdksbnamespacetest.servicebus.windows.net/;SharedAccessKeyName=iotHubCSharpSDKSBTopicTestRule;SharedAccessKey=jbg80rgTmV7uvZKe5h1zyFBTRFuwCsdGp4X2YfKkqvM=;EntityPath=iotHubCSharpSDKTopicTest\",\r\n \"primaryKey\": \"wr2U4zvi4tQVT+G033u0+tVfw0Zd/uTPpPX07lQyTF8=\",\r\n \"secondaryKey\": \"jbg80rgTmV7uvZKe5h1zyFBTRFuwCsdGp4X2YfKkqvM=\",\r\n \"keyName\": \"iotHubCSharpSDKSBTopicTestRule\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/DotNetHubRG/providers/Microsoft.Devices/IotHubs/DotNetHub?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Jlc291cmNlR3JvdXBzL0RvdE5ldEh1YlJHL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9Jb3RIdWJzL0RvdE5ldEh1Yj9hcGktdmVyc2lvbj0yMDIwLTAzLTAx", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://iothubcsharpsdksbnamespacetest.servicebus.windows.net/;SharedAccessKeyName=iotHubCSharpSDKSBTopicTestRule;SharedAccessKey=w5gO36Y+LTs4xRecen14lij/xUC/HZqot5WrwP+fGt0=;EntityPath=iotHubCSharpSDKSBTest\",\r\n \"name\": \"sb1\"\r\n }\r\n ],\r\n \"serviceBusTopics\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://iothubcsharpsdksbnamespacetest.servicebus.windows.net/;SharedAccessKeyName=iotHubCSharpSDKSBTopicTestRule;SharedAccessKey=wr2U4zvi4tQVT+G033u0+tVfw0Zd/uTPpPX07lQyTF8=;EntityPath=iotHubCSharpSDKTopicTest\",\r\n \"name\": \"tp1\"\r\n }\r\n ],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://iothubcsharpsdkehnamespacetest.servicebus.windows.net/;SharedAccessKeyName=iothubcsharpsdkehtestrule;SharedAccessKey=ow2dQOXm1n6cSzEMqnn78zbIjMPcO+2NBOmvVfcqdgM=;EntityPath=iothubcsharpsdkehtest\",\r\n \"name\": \"eh1\"\r\n }\r\n ]\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route1\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route2\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route3\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"sb1\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route4\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"tp1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ]\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"WestUS2\"\r\n}", - "RequestHeaders": { - "x-ms-client-request-id": [ - "7e5e7c76-7901-40ac-aa59-b3e8d5500aff" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29719.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "2085" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/providers/Microsoft.Devices/operationResults/b3NfaWhfNTE3N2M2MDItNDgyOS00M2FkLWExZDQtY2VjMzIzOGQ5NzQ4?api-version=2020-03-01&operationSource=os_ih&asyncinfo" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "4999" - ], - "x-ms-request-id": [ - "da626718-8afb-4a0a-a6ea-9bb309b97bf2" - ], - "x-ms-correlation-request-id": [ - "da626718-8afb-4a0a-a6ea-9bb309b97bf2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20210219T191927Z:da626718-8afb-4a0a-a6ea-9bb309b97bf2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 19 Feb 2021 19:19:27 GMT" - ], - "Content-Length": [ - "2205" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/DotNetHubRG/providers/Microsoft.Devices/IotHubs/DotNetHub\",\r\n \"name\": \"DotNetHub\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"WestUS2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"9dbb02fa-c9d2-4593-967e-ffc99c566c5c\",\r\n \"resourcegroup\": \"DotNetHubRG\",\r\n \"properties\": {\r\n \"state\": \"Activating\",\r\n \"provisioningState\": \"Accepted\",\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://iothubcsharpsdksbnamespacetest.servicebus.windows.net/;SharedAccessKeyName=iotHubCSharpSDKSBTopicTestRule;SharedAccessKey=w5gO36Y+LTs4xRecen14lij/xUC/HZqot5WrwP+fGt0=;EntityPath=iotHubCSharpSDKSBTest\",\r\n \"name\": \"sb1\",\r\n \"id\": \"c2be8e83-d23a-42be-bc02-85995a9ee1f5\"\r\n }\r\n ],\r\n \"serviceBusTopics\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://iothubcsharpsdksbnamespacetest.servicebus.windows.net/;SharedAccessKeyName=iotHubCSharpSDKSBTopicTestRule;SharedAccessKey=wr2U4zvi4tQVT+G033u0+tVfw0Zd/uTPpPX07lQyTF8=;EntityPath=iotHubCSharpSDKTopicTest\",\r\n \"name\": \"tp1\",\r\n \"id\": \"9550567e-70e4-4027-8a2b-7c2dacac4db5\"\r\n }\r\n ],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://iothubcsharpsdkehnamespacetest.servicebus.windows.net/;SharedAccessKeyName=iothubcsharpsdkehtestrule;SharedAccessKey=ow2dQOXm1n6cSzEMqnn78zbIjMPcO+2NBOmvVfcqdgM=;EntityPath=iothubcsharpsdkehtest\",\r\n \"name\": \"eh1\",\r\n \"id\": \"0823573b-d260-4fcf-9036-1677c613303d\"\r\n }\r\n ],\r\n \"storageContainers\": [],\r\n \"cosmosDBSqlCollections\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route1\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route2\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route3\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"sb1\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route4\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"tp1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", - "StatusCode": 201 - }, - { - "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/providers/Microsoft.Devices/operationResults/b3NfaWhfNTE3N2M2MDItNDgyOS00M2FkLWExZDQtY2VjMzIzOGQ5NzQ4?api-version=2020-03-01&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTlRFM04yTTJNREl0TkRneU9TMDBNMkZrTFdFeFpEUXRZMlZqTXpJek9HUTVOelE0P2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEmb3BlcmF0aW9uU291cmNlPW9zX2loJmFzeW5jaW5mbw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29719.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" - ], - "x-ms-request-id": [ - "f974b9ef-1e3b-4dc8-86cf-a348c3a4cceb" - ], - "x-ms-correlation-request-id": [ - "f974b9ef-1e3b-4dc8-86cf-a348c3a4cceb" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20210219T191957Z:f974b9ef-1e3b-4dc8-86cf-a348c3a4cceb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 19 Feb 2021 19:19:57 GMT" - ], - "Content-Length": [ - "20" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"Running\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/providers/Microsoft.Devices/operationResults/b3NfaWhfNTE3N2M2MDItNDgyOS00M2FkLWExZDQtY2VjMzIzOGQ5NzQ4?api-version=2020-03-01&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTlRFM04yTTJNREl0TkRneU9TMDBNMkZrTFdFeFpEUXRZMlZqTXpJek9HUTVOelE0P2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEmb3BlcmF0aW9uU291cmNlPW9zX2loJmFzeW5jaW5mbw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29719.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" - ], - "x-ms-request-id": [ - "057d749c-ee9a-4923-90aa-e98a50a82a00" - ], - "x-ms-correlation-request-id": [ - "057d749c-ee9a-4923-90aa-e98a50a82a00" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20210219T192027Z:057d749c-ee9a-4923-90aa-e98a50a82a00" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 19 Feb 2021 19:20:27 GMT" - ], - "Content-Length": [ - "20" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"Running\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/providers/Microsoft.Devices/operationResults/b3NfaWhfNTE3N2M2MDItNDgyOS00M2FkLWExZDQtY2VjMzIzOGQ5NzQ4?api-version=2020-03-01&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTlRFM04yTTJNREl0TkRneU9TMDBNMkZrTFdFeFpEUXRZMlZqTXpJek9HUTVOelE0P2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEmb3BlcmF0aW9uU291cmNlPW9zX2loJmFzeW5jaW5mbw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29719.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" - ], - "x-ms-request-id": [ - "2f8cc578-ba65-4f67-ac70-56877b514b3b" - ], - "x-ms-correlation-request-id": [ - "2f8cc578-ba65-4f67-ac70-56877b514b3b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20210219T192058Z:2f8cc578-ba65-4f67-ac70-56877b514b3b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 19 Feb 2021 19:20:57 GMT" - ], - "Content-Length": [ - "20" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"Running\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/providers/Microsoft.Devices/operationResults/b3NfaWhfNTE3N2M2MDItNDgyOS00M2FkLWExZDQtY2VjMzIzOGQ5NzQ4?api-version=2020-03-01&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTlRFM04yTTJNREl0TkRneU9TMDBNMkZrTFdFeFpEUXRZMlZqTXpJek9HUTVOelE0P2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEmb3BlcmF0aW9uU291cmNlPW9zX2loJmFzeW5jaW5mbw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29719.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" - ], - "x-ms-request-id": [ - "3f34327f-7abb-42e2-94a5-82b41497baac" - ], - "x-ms-correlation-request-id": [ - "3f34327f-7abb-42e2-94a5-82b41497baac" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20210219T192128Z:3f34327f-7abb-42e2-94a5-82b41497baac" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 19 Feb 2021 19:21:28 GMT" - ], - "Content-Length": [ - "20" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"Running\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/DotNetHubRG/providers/Microsoft.ServiceBus/namespaces/iotHubCSharpSDKSBNamespaceTest/queues/iotHubCSharpSDKSBTest/authorizationRules/iotHubCSharpSDKSBTopicTestRule\",\r\n \"name\": \"iotHubCSharpSDKSBTopicTestRule\",\r\n \"type\": \"Microsoft.ServiceBus/AuthorizationRules\",\r\n \"location\": \"West US 2\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"rights\": [\r\n \"Send\",\r\n \"Listen\"\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/providers/Microsoft.Devices/operationResults/b3NfaWhfNTE3N2M2MDItNDgyOS00M2FkLWExZDQtY2VjMzIzOGQ5NzQ4?api-version=2020-03-01&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTlRFM04yTTJNREl0TkRneU9TMDBNMkZrTFdFeFpEUXRZMlZqTXpJek9HUTVOelE0P2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEmb3BlcmF0aW9uU291cmNlPW9zX2loJmFzeW5jaW5mbw==", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/DotNetHubRG/providers/Microsoft.ServiceBus/namespaces/iotHubCSharpSDKSBNamespaceTest/topics/iotHubCSharpSDKTopicTest/authorizationRules/iotHubCSharpSDKSBTopicTestRule?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Jlc291cmNlR3JvdXBzL0RvdE5ldEh1YlJHL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUJ1cy9uYW1lc3BhY2VzL2lvdEh1YkNTaGFycFNES1NCTmFtZXNwYWNlVGVzdC90b3BpY3MvaW90SHViQ1NoYXJwU0RLVG9waWNUZXN0L2F1dGhvcml6YXRpb25SdWxlcy9pb3RIdWJDU2hhcnBTREtTQlRvcGljVGVzdFJ1bGU/YXBpLXZlcnNpb249MjAxNS0wOC0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"WestUS2\",\r\n \"properties\": {\r\n \"rights\": [\r\n \"Send\",\r\n \"Listen\"\r\n ]\r\n }\r\n}", "RequestHeaders": { + "x-ms-client-request-id": [ + "7b59e3eb-3831-4bdd-80c0-f90f615ddbcc" + ], + "Accept-Language": [ + "en-US" + ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.ServiceBus.ServiceBusManagementClient/0.2.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "109" ] }, "ResponseHeaders": { @@ -1972,20 +1247,24 @@ "Pragma": [ "no-cache" ], + "x-ms-request-id": [ + "8cf36ac7-cef3-44f1-b789-ae6a4e614f99_M4SN1_M4SN1" + ], + "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-request-id": [ - "6a9cfe22-846a-4165-9f76-e3cbefb8876b" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1195" ], "x-ms-correlation-request-id": [ - "6a9cfe22-846a-4165-9f76-e3cbefb8876b" + "24c4e6aa-8229-47aa-92d5-0044974fe2f2" ], "x-ms-routing-request-id": [ - "WESTUS2:20210219T192158Z:6a9cfe22-846a-4165-9f76-e3cbefb8876b" + "WESTUS2:20210514T173458Z:24c4e6aa-8229-47aa-92d5-0044974fe2f2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1994,10 +1273,10 @@ "nosniff" ], "Date": [ - "Fri, 19 Feb 2021 19:21:57 GMT" + "Fri, 14 May 2021 17:34:57 GMT" ], "Content-Length": [ - "20" + "408" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2006,20 +1285,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"status\": \"Running\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/DotNetHubRG/providers/Microsoft.ServiceBus/namespaces/iotHubCSharpSDKSBNamespaceTest/topics/iotHubCSharpSDKTopicTest/authorizationRules/iotHubCSharpSDKSBTopicTestRule\",\r\n \"name\": \"iotHubCSharpSDKSBTopicTestRule\",\r\n \"type\": \"Microsoft.ServiceBus/AuthorizationRules\",\r\n \"location\": \"West US 2\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"rights\": [\r\n \"Send\",\r\n \"Listen\"\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/providers/Microsoft.Devices/operationResults/b3NfaWhfNTE3N2M2MDItNDgyOS00M2FkLWExZDQtY2VjMzIzOGQ5NzQ4?api-version=2020-03-01&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTlRFM04yTTJNREl0TkRneU9TMDBNMkZrTFdFeFpEUXRZMlZqTXpJek9HUTVOelE0P2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEmb3BlcmF0aW9uU291cmNlPW9zX2loJmFzeW5jaW5mbw==", - "RequestMethod": "GET", + "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/DotNetHubRG/providers/Microsoft.ServiceBus/namespaces/iotHubCSharpSDKSBNamespaceTest/queues/iotHubCSharpSDKSBTest/authorizationRules/iotHubCSharpSDKSBTopicTestRule/ListKeys?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Jlc291cmNlR3JvdXBzL0RvdE5ldEh1YlJHL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUJ1cy9uYW1lc3BhY2VzL2lvdEh1YkNTaGFycFNES1NCTmFtZXNwYWNlVGVzdC9xdWV1ZXMvaW90SHViQ1NoYXJwU0RLU0JUZXN0L2F1dGhvcml6YXRpb25SdWxlcy9pb3RIdWJDU2hhcnBTREtTQlRvcGljVGVzdFJ1bGUvTGlzdEtleXM/YXBpLXZlcnNpb249MjAxNS0wOC0wMQ==", + "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "e0554533-42e6-4b4b-9a13-b057ba8c4e61" + ], + "Accept-Language": [ + "en-US" + ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.ServiceBus.ServiceBusManagementClient/0.2.0.0" ] }, "ResponseHeaders": { @@ -2029,20 +1314,24 @@ "Pragma": [ "no-cache" ], + "x-ms-request-id": [ + "1af7ef77-0355-40f5-9296-c51c03f66897_M4SN1_M4SN1" + ], + "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-request-id": [ - "56d49489-4749-46f3-9f12-7aef47aeb735" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" ], "x-ms-correlation-request-id": [ - "56d49489-4749-46f3-9f12-7aef47aeb735" + "17706177-15c6-4bfa-b7da-d149fa1ba119" ], "x-ms-routing-request-id": [ - "WESTUS2:20210219T192228Z:56d49489-4749-46f3-9f12-7aef47aeb735" + "WESTUS2:20210514T173458Z:17706177-15c6-4bfa-b7da-d149fa1ba119" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2051,10 +1340,10 @@ "nosniff" ], "Date": [ - "Fri, 19 Feb 2021 19:22:27 GMT" + "Fri, 14 May 2021 17:34:57 GMT" ], "Content-Length": [ - "20" + "652" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2063,20 +1352,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"status\": \"Running\"\r\n}", + "ResponseBody": "{\r\n \"primaryConnectionString\": \"Endpoint=sb://iothubcsharpsdksbnamespacetest.servicebus.windows.net/;SharedAccessKeyName=iotHubCSharpSDKSBTopicTestRule;SharedAccessKey=U4hAS/CIKjK2fsXS7JjoEN7MEdP+fHbLBTxx7rBGkPM=;EntityPath=iotHubCSharpSDKSBTest\",\r\n \"secondaryConnectionString\": \"Endpoint=sb://iothubcsharpsdksbnamespacetest.servicebus.windows.net/;SharedAccessKeyName=iotHubCSharpSDKSBTopicTestRule;SharedAccessKey=zkqd6GjdklxesVkPTArTAwd0qPKYeQtU4qUXl9zlnmI=;EntityPath=iotHubCSharpSDKSBTest\",\r\n \"primaryKey\": \"U4hAS/CIKjK2fsXS7JjoEN7MEdP+fHbLBTxx7rBGkPM=\",\r\n \"secondaryKey\": \"zkqd6GjdklxesVkPTArTAwd0qPKYeQtU4qUXl9zlnmI=\",\r\n \"keyName\": \"iotHubCSharpSDKSBTopicTestRule\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/providers/Microsoft.Devices/operationResults/b3NfaWhfNTE3N2M2MDItNDgyOS00M2FkLWExZDQtY2VjMzIzOGQ5NzQ4?api-version=2020-03-01&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTlRFM04yTTJNREl0TkRneU9TMDBNMkZrTFdFeFpEUXRZMlZqTXpJek9HUTVOelE0P2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEmb3BlcmF0aW9uU291cmNlPW9zX2loJmFzeW5jaW5mbw==", - "RequestMethod": "GET", + "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/DotNetHubRG/providers/Microsoft.ServiceBus/namespaces/iotHubCSharpSDKSBNamespaceTest/queues/iotHubCSharpSDKTopicTest/authorizationRules/iotHubCSharpSDKSBTopicTestRule/ListKeys?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Jlc291cmNlR3JvdXBzL0RvdE5ldEh1YlJHL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUJ1cy9uYW1lc3BhY2VzL2lvdEh1YkNTaGFycFNES1NCTmFtZXNwYWNlVGVzdC9xdWV1ZXMvaW90SHViQ1NoYXJwU0RLVG9waWNUZXN0L2F1dGhvcml6YXRpb25SdWxlcy9pb3RIdWJDU2hhcnBTREtTQlRvcGljVGVzdFJ1bGUvTGlzdEtleXM/YXBpLXZlcnNpb249MjAxNS0wOC0wMQ==", + "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "db16dace-1f26-4197-89d5-cc4e091e3cec" + ], + "Accept-Language": [ + "en-US" + ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.ServiceBus.ServiceBusManagementClient/0.2.0.0" ] }, "ResponseHeaders": { @@ -2086,20 +1381,24 @@ "Pragma": [ "no-cache" ], + "x-ms-request-id": [ + "9c8bd255-ba07-4d20-ba86-1fe1ef035f10_M4SN1_M4SN1" + ], + "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-request-id": [ - "ffc1a2ff-c15d-4f3e-9f65-47bdcb70b85e" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" ], "x-ms-correlation-request-id": [ - "ffc1a2ff-c15d-4f3e-9f65-47bdcb70b85e" + "1d562ecb-60b0-4928-9ed6-bfd516ec2f78" ], "x-ms-routing-request-id": [ - "WESTUS2:20210219T192258Z:ffc1a2ff-c15d-4f3e-9f65-47bdcb70b85e" + "WESTUS2:20210514T173458Z:1d562ecb-60b0-4928-9ed6-bfd516ec2f78" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2108,10 +1407,10 @@ "nosniff" ], "Date": [ - "Fri, 19 Feb 2021 19:22:58 GMT" + "Fri, 14 May 2021 17:34:57 GMT" ], "Content-Length": [ - "22" + "658" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2120,20 +1419,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"primaryConnectionString\": \"Endpoint=sb://iothubcsharpsdksbnamespacetest.servicebus.windows.net/;SharedAccessKeyName=iotHubCSharpSDKSBTopicTestRule;SharedAccessKey=AbFPKt869OgdLhEFR7u60WBJLYwPJnLlpCj/nhuFUZY=;EntityPath=iotHubCSharpSDKTopicTest\",\r\n \"secondaryConnectionString\": \"Endpoint=sb://iothubcsharpsdksbnamespacetest.servicebus.windows.net/;SharedAccessKeyName=iotHubCSharpSDKSBTopicTestRule;SharedAccessKey=y3qVppAOJqbrU+KVLrKzdM0D8QWM8nToGzOnhx0k1LY=;EntityPath=iotHubCSharpSDKTopicTest\",\r\n \"primaryKey\": \"AbFPKt869OgdLhEFR7u60WBJLYwPJnLlpCj/nhuFUZY=\",\r\n \"secondaryKey\": \"y3qVppAOJqbrU+KVLrKzdM0D8QWM8nToGzOnhx0k1LY=\",\r\n \"keyName\": \"iotHubCSharpSDKSBTopicTestRule\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/DotNetHubRG/providers/Microsoft.Devices/IotHubs/DotNetHub?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Jlc291cmNlR3JvdXBzL0RvdE5ldEh1YlJHL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9Jb3RIdWJzL0RvdE5ldEh1Yj9hcGktdmVyc2lvbj0yMDIwLTAzLTAx", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/DotNetHubRG/providers/Microsoft.Devices/IotHubs/DotNetHub?api-version=2021-03-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Jlc291cmNlR3JvdXBzL0RvdE5ldEh1YlJHL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9Jb3RIdWJzL0RvdE5ldEh1Yj9hcGktdmVyc2lvbj0yMDIxLTAzLTMx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://iothubcsharpsdksbnamespacetest.servicebus.windows.net/;SharedAccessKeyName=iotHubCSharpSDKSBTopicTestRule;SharedAccessKey=U4hAS/CIKjK2fsXS7JjoEN7MEdP+fHbLBTxx7rBGkPM=;EntityPath=iotHubCSharpSDKSBTest\",\r\n \"name\": \"sb1\"\r\n }\r\n ],\r\n \"serviceBusTopics\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://iothubcsharpsdksbnamespacetest.servicebus.windows.net/;SharedAccessKeyName=iotHubCSharpSDKSBTopicTestRule;SharedAccessKey=AbFPKt869OgdLhEFR7u60WBJLYwPJnLlpCj/nhuFUZY=;EntityPath=iotHubCSharpSDKTopicTest\",\r\n \"name\": \"tp1\"\r\n }\r\n ],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://iothubcsharpsdkehnamespacetest.servicebus.windows.net/;SharedAccessKeyName=iothubcsharpsdkehtestrule;SharedAccessKey=YZl8B0smIdmChbljOV0oz1SGdtGga9u0XDlJ6euh/8w=;EntityPath=iothubcsharpsdkehtest\",\r\n \"name\": \"eh1\"\r\n }\r\n ]\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route1\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route2\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route3\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"sb1\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route4\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"tp1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ]\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"WestUS2\"\r\n}", "RequestHeaders": { + "x-ms-client-request-id": [ + "0696d767-eb34-438d-9208-300e53281dd4" + ], + "Accept-Language": [ + "en-US" + ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "2085" ] }, "ResponseHeaders": { @@ -2143,20 +1454,23 @@ "Pragma": [ "no-cache" ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/providers/Microsoft.Devices/operationResults/b3NfaWhfNTJlNjI2ZDYtOTU2ZS00NTEyLWE4ZTktZGI4NTY2OGRlZDEw?api-version=2021-03-31&operationSource=os_ih&asyncinfo" + ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "4999" ], "x-ms-request-id": [ - "19a8d39d-d6a4-4da9-81db-7e5c740e6aaf" + "d0372018-eae3-477c-8d03-7a652d3fa62d" ], "x-ms-correlation-request-id": [ - "19a8d39d-d6a4-4da9-81db-7e5c740e6aaf" + "d0372018-eae3-477c-8d03-7a652d3fa62d" ], "x-ms-routing-request-id": [ - "WESTUS2:20210219T192259Z:19a8d39d-d6a4-4da9-81db-7e5c740e6aaf" + "WESTUS2:20210514T173503Z:d0372018-eae3-477c-8d03-7a652d3fa62d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2165,10 +1479,10 @@ "nosniff" ], "Date": [ - "Fri, 19 Feb 2021 19:22:59 GMT" + "Fri, 14 May 2021 17:35:02 GMT" ], "Content-Length": [ - "2713" + "2205" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2177,26 +1491,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/DotNetHubRG/providers/Microsoft.Devices/IotHubs/DotNetHub\",\r\n \"name\": \"DotNetHub\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"WestUS2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"9dbb02fa-c9d2-4593-967e-ffc99c566c5c\",\r\n \"resourcegroup\": \"DotNetHubRG\",\r\n \"etag\": \"AAAACmvvNVQ=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"DotNetHub.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"dotnethub\",\r\n \"endpoint\": \"sb://iothub-ns-dotnethub-8263637-0241c17d2d.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://iothubcsharpsdksbnamespacetest.servicebus.windows.net:5671/;SharedAccessKeyName=iotHubCSharpSDKSBTopicTestRule;SharedAccessKey=****;EntityPath=iotHubCSharpSDKSBTest\",\r\n \"name\": \"sb1\",\r\n \"id\": \"c2be8e83-d23a-42be-bc02-85995a9ee1f5\"\r\n }\r\n ],\r\n \"serviceBusTopics\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://iothubcsharpsdksbnamespacetest.servicebus.windows.net:5671/;SharedAccessKeyName=iotHubCSharpSDKSBTopicTestRule;SharedAccessKey=****;EntityPath=iotHubCSharpSDKTopicTest\",\r\n \"name\": \"tp1\",\r\n \"id\": \"9550567e-70e4-4027-8a2b-7c2dacac4db5\"\r\n }\r\n ],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://iothubcsharpsdkehnamespacetest.servicebus.windows.net:5671/;SharedAccessKeyName=iothubcsharpsdkehtestrule;SharedAccessKey=****;EntityPath=iothubcsharpsdkehtest\",\r\n \"name\": \"eh1\",\r\n \"id\": \"0823573b-d260-4fcf-9036-1677c613303d\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route1\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route2\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route3\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"sb1\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route4\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"tp1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", - "StatusCode": 200 + "ResponseBody": "{\r\n \"id\": \"/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/DotNetHubRG/providers/Microsoft.Devices/IotHubs/DotNetHub\",\r\n \"name\": \"DotNetHub\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"WestUS2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"9dbb02fa-c9d2-4593-967e-ffc99c566c5c\",\r\n \"resourcegroup\": \"DotNetHubRG\",\r\n \"properties\": {\r\n \"state\": \"Activating\",\r\n \"provisioningState\": \"Accepted\",\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://iothubcsharpsdksbnamespacetest.servicebus.windows.net/;SharedAccessKeyName=iotHubCSharpSDKSBTopicTestRule;SharedAccessKey=U4hAS/CIKjK2fsXS7JjoEN7MEdP+fHbLBTxx7rBGkPM=;EntityPath=iotHubCSharpSDKSBTest\",\r\n \"name\": \"sb1\",\r\n \"id\": \"a65009ad-72ae-456a-9f8e-d2cc615f8e1f\"\r\n }\r\n ],\r\n \"serviceBusTopics\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://iothubcsharpsdksbnamespacetest.servicebus.windows.net/;SharedAccessKeyName=iotHubCSharpSDKSBTopicTestRule;SharedAccessKey=AbFPKt869OgdLhEFR7u60WBJLYwPJnLlpCj/nhuFUZY=;EntityPath=iotHubCSharpSDKTopicTest\",\r\n \"name\": \"tp1\",\r\n \"id\": \"9c24ed09-bf75-4b62-853f-b849840cd898\"\r\n }\r\n ],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://iothubcsharpsdkehnamespacetest.servicebus.windows.net/;SharedAccessKeyName=iothubcsharpsdkehtestrule;SharedAccessKey=YZl8B0smIdmChbljOV0oz1SGdtGga9u0XDlJ6euh/8w=;EntityPath=iothubcsharpsdkehtest\",\r\n \"name\": \"eh1\",\r\n \"id\": \"08900ee2-4931-48c3-9693-a18e25d6ce31\"\r\n }\r\n ],\r\n \"storageContainers\": [],\r\n \"cosmosDBSqlCollections\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route1\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route2\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route3\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"sb1\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route4\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"tp1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", + "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/DotNetHubRG/providers/Microsoft.Devices/IotHubs/DotNetHub?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Jlc291cmNlR3JvdXBzL0RvdE5ldEh1YlJHL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9Jb3RIdWJzL0RvdE5ldEh1Yj9hcGktdmVyc2lvbj0yMDIwLTAzLTAx", + "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/providers/Microsoft.Devices/operationResults/b3NfaWhfNTJlNjI2ZDYtOTU2ZS00NTEyLWE4ZTktZGI4NTY2OGRlZDEw?api-version=2021-03-31&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTlRKbE5qSTJaRFl0T1RVMlpTMDBOVEV5TFdFNFpUa3RaR0k0TlRZMk9HUmxaREV3P2FwaS12ZXJzaW9uPTIwMjEtMDMtMzEmb3BlcmF0aW9uU291cmNlPW9zX2loJmFzeW5jaW5mbw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "ec47b4a1-c2b4-4724-a792-b21c4cc91317" - ], - "Accept-Language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.0.0.0" ] }, "ResponseHeaders": { @@ -2210,16 +1518,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11982" + "11999" ], "x-ms-request-id": [ - "e48770ac-1ec9-4e75-b076-13f4fe03eacb" + "176bee1c-f273-4346-ae6f-622117de21e8" ], "x-ms-correlation-request-id": [ - "e48770ac-1ec9-4e75-b076-13f4fe03eacb" + "176bee1c-f273-4346-ae6f-622117de21e8" ], "x-ms-routing-request-id": [ - "WESTUS2:20210219T192309Z:e48770ac-1ec9-4e75-b076-13f4fe03eacb" + "WESTUS2:20210514T173534Z:176bee1c-f273-4346-ae6f-622117de21e8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2228,10 +1536,10 @@ "nosniff" ], "Date": [ - "Fri, 19 Feb 2021 19:23:09 GMT" + "Fri, 14 May 2021 17:35:33 GMT" ], "Content-Length": [ - "2744" + "20" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2240,26 +1548,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/DotNetHubRG/providers/Microsoft.Devices/IotHubs/DotNetHub\",\r\n \"name\": \"DotNetHub\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"WestUS2\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"subscriptionid\": \"9dbb02fa-c9d2-4593-967e-ffc99c566c5c\",\r\n \"resourcegroup\": \"DotNetHubRG\",\r\n \"etag\": \"AAAACmvwsEk=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"DotNetHub.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"dotnethub\",\r\n \"endpoint\": \"sb://iothub-ns-dotnethub-8263637-0241c17d2d.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://iothubcsharpsdksbnamespacetest.servicebus.windows.net:5671/;SharedAccessKeyName=iotHubCSharpSDKSBTopicTestRule;SharedAccessKey=****;EntityPath=iotHubCSharpSDKSBTest\",\r\n \"name\": \"sb1\",\r\n \"id\": \"c2be8e83-d23a-42be-bc02-85995a9ee1f5\"\r\n }\r\n ],\r\n \"serviceBusTopics\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://iothubcsharpsdksbnamespacetest.servicebus.windows.net:5671/;SharedAccessKeyName=iotHubCSharpSDKSBTopicTestRule;SharedAccessKey=****;EntityPath=iotHubCSharpSDKTopicTest\",\r\n \"name\": \"tp1\",\r\n \"id\": \"9550567e-70e4-4027-8a2b-7c2dacac4db5\"\r\n }\r\n ],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://iothubcsharpsdkehnamespacetest.servicebus.windows.net:5671/;SharedAccessKeyName=iothubcsharpsdkehtestrule;SharedAccessKey=****;EntityPath=iothubcsharpsdkehtest\",\r\n \"name\": \"eh1\",\r\n \"id\": \"0823573b-d260-4fcf-9036-1677c613303d\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route1\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route2\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route3\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"sb1\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route4\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"tp1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"status\": \"Running\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/DotNetHubRG/providers/Microsoft.Devices/IotHubs/DotNetHub?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Jlc291cmNlR3JvdXBzL0RvdE5ldEh1YlJHL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9Jb3RIdWJzL0RvdE5ldEh1Yj9hcGktdmVyc2lvbj0yMDIwLTAzLTAx", + "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/providers/Microsoft.Devices/operationResults/b3NfaWhfNTJlNjI2ZDYtOTU2ZS00NTEyLWE4ZTktZGI4NTY2OGRlZDEw?api-version=2021-03-31&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTlRKbE5qSTJaRFl0T1RVMlpTMDBOVEV5TFdFNFpUa3RaR0k0TlRZMk9HUmxaREV3P2FwaS12ZXJzaW9uPTIwMjEtMDMtMzEmb3BlcmF0aW9uU291cmNlPW9zX2loJmFzeW5jaW5mbw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "e21c4131-2b59-47ac-a3f9-5b21f5628f9a" - ], - "Accept-Language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.0.0.0" ] }, "ResponseHeaders": { @@ -2273,16 +1575,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11939" + "11998" ], "x-ms-request-id": [ - "d0d230f1-ac51-45fb-94fe-8703547536a8" + "e35abc94-5e19-45b7-821a-e34c6a377346" ], "x-ms-correlation-request-id": [ - "d0d230f1-ac51-45fb-94fe-8703547536a8" + "e35abc94-5e19-45b7-821a-e34c6a377346" ], "x-ms-routing-request-id": [ - "WESTUS2:20210219T193348Z:d0d230f1-ac51-45fb-94fe-8703547536a8" + "WESTUS2:20210514T173604Z:e35abc94-5e19-45b7-821a-e34c6a377346" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2291,10 +1593,10 @@ "nosniff" ], "Date": [ - "Fri, 19 Feb 2021 19:33:48 GMT" + "Fri, 14 May 2021 17:36:03 GMT" ], "Content-Length": [ - "2744" + "20" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2303,32 +1605,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/DotNetHubRG/providers/Microsoft.Devices/IotHubs/DotNetHub\",\r\n \"name\": \"DotNetHub\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"WestUS2\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"subscriptionid\": \"9dbb02fa-c9d2-4593-967e-ffc99c566c5c\",\r\n \"resourcegroup\": \"DotNetHubRG\",\r\n \"etag\": \"AAAACmwSJFA=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"DotNetHub.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"dotnethub\",\r\n \"endpoint\": \"sb://iothub-ns-dotnethub-8263637-294754e11f.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://iothubcsharpsdksbnamespacetest.servicebus.windows.net:5671/;SharedAccessKeyName=iotHubCSharpSDKSBTopicTestRule;SharedAccessKey=****;EntityPath=iotHubCSharpSDKSBTest\",\r\n \"name\": \"sb1\",\r\n \"id\": \"c2be8e83-d23a-42be-bc02-85995a9ee1f5\"\r\n }\r\n ],\r\n \"serviceBusTopics\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://iothubcsharpsdksbnamespacetest.servicebus.windows.net:5671/;SharedAccessKeyName=iotHubCSharpSDKSBTopicTestRule;SharedAccessKey=****;EntityPath=iotHubCSharpSDKTopicTest\",\r\n \"name\": \"tp1\",\r\n \"id\": \"9550567e-70e4-4027-8a2b-7c2dacac4db5\"\r\n }\r\n ],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://iothubcsharpsdkehnamespacetest.servicebus.windows.net:5671/;SharedAccessKeyName=iothubcsharpsdkehtestrule;SharedAccessKey=****;EntityPath=iothubcsharpsdkehtest\",\r\n \"name\": \"eh1\",\r\n \"id\": \"0823573b-d260-4fcf-9036-1677c613303d\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route1\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route2\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route3\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"sb1\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route4\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"tp1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"status\": \"Running\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/DotNetHubRG/providers/Microsoft.Devices/IotHubs/DotNetHub?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Jlc291cmNlR3JvdXBzL0RvdE5ldEh1YlJHL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9Jb3RIdWJzL0RvdE5ldEh1Yj9hcGktdmVyc2lvbj0yMDIwLTAzLTAx", - "RequestMethod": "PATCH", - "RequestBody": "{\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n }\r\n}", + "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/providers/Microsoft.Devices/operationResults/b3NfaWhfNTJlNjI2ZDYtOTU2ZS00NTEyLWE4ZTktZGI4NTY2OGRlZDEw?api-version=2021-03-31&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTlRKbE5qSTJaRFl0T1RVMlpTMDBOVEV5TFdFNFpUa3RaR0k0TlRZMk9HUmxaREV3P2FwaS12ZXJzaW9uPTIwMjEtMDMtMzEmb3BlcmF0aW9uU291cmNlPW9zX2loJmFzeW5jaW5mbw==", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "3b561951-a818-416f-98e2-24325db89301" - ], - "Accept-Language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "67" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.0.0.0" ] }, "ResponseHeaders": { @@ -2341,17 +1631,17 @@ "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "4998" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" ], "x-ms-request-id": [ - "323f584c-27a0-4e6e-ad74-4174bbf87990" + "56258808-40d4-40ca-a0ce-130aef82bcd2" ], "x-ms-correlation-request-id": [ - "323f584c-27a0-4e6e-ad74-4174bbf87990" + "56258808-40d4-40ca-a0ce-130aef82bcd2" ], "x-ms-routing-request-id": [ - "WESTUS2:20210219T192300Z:323f584c-27a0-4e6e-ad74-4174bbf87990" + "WESTUS2:20210514T173634Z:56258808-40d4-40ca-a0ce-130aef82bcd2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2360,10 +1650,10 @@ "nosniff" ], "Date": [ - "Fri, 19 Feb 2021 19:23:00 GMT" + "Fri, 14 May 2021 17:36:33 GMT" ], "Content-Length": [ - "2732" + "20" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2372,26 +1662,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/DotNetHubRG/providers/Microsoft.Devices/IotHubs/DotNetHub\",\r\n \"name\": \"DotNetHub\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"WestUS2\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"subscriptionid\": \"9dbb02fa-c9d2-4593-967e-ffc99c566c5c\",\r\n \"resourcegroup\": \"DotNetHubRG\",\r\n \"etag\": \"\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"DotNetHub.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"dotnethub\",\r\n \"endpoint\": \"sb://iothub-ns-dotnethub-8263637-0241c17d2d.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://iothubcsharpsdksbnamespacetest.servicebus.windows.net:5671/;SharedAccessKeyName=iotHubCSharpSDKSBTopicTestRule;SharedAccessKey=****;EntityPath=iotHubCSharpSDKSBTest\",\r\n \"name\": \"sb1\",\r\n \"id\": \"c2be8e83-d23a-42be-bc02-85995a9ee1f5\"\r\n }\r\n ],\r\n \"serviceBusTopics\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://iothubcsharpsdksbnamespacetest.servicebus.windows.net:5671/;SharedAccessKeyName=iotHubCSharpSDKSBTopicTestRule;SharedAccessKey=****;EntityPath=iotHubCSharpSDKTopicTest\",\r\n \"name\": \"tp1\",\r\n \"id\": \"9550567e-70e4-4027-8a2b-7c2dacac4db5\"\r\n }\r\n ],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://iothubcsharpsdkehnamespacetest.servicebus.windows.net:5671/;SharedAccessKeyName=iothubcsharpsdkehtestrule;SharedAccessKey=****;EntityPath=iothubcsharpsdkehtest\",\r\n \"name\": \"eh1\",\r\n \"id\": \"0823573b-d260-4fcf-9036-1677c613303d\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route1\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route2\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route3\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"sb1\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route4\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"tp1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"status\": \"Running\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/providers/Microsoft.Devices/usages?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy91c2FnZXM/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/providers/Microsoft.Devices/operationResults/b3NfaWhfNTJlNjI2ZDYtOTU2ZS00NTEyLWE4ZTktZGI4NTY2OGRlZDEw?api-version=2021-03-31&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTlRKbE5qSTJaRFl0T1RVMlpTMDBOVEV5TFdFNFpUa3RaR0k0TlRZMk9HUmxaREV3P2FwaS12ZXJzaW9uPTIwMjEtMDMtMzEmb3BlcmF0aW9uU291cmNlPW9zX2loJmFzeW5jaW5mbw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "ee8e1a7d-b712-4640-864a-782ee5ec3a87" - ], - "Accept-Language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.0.0.0" ] }, "ResponseHeaders": { @@ -2405,16 +1689,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11996" ], "x-ms-request-id": [ - "427b8f0e-2d00-4913-8c44-51f27fdc8fc1" + "d6c6de8a-2ccd-461f-be0a-bb14a42e1e00" ], "x-ms-correlation-request-id": [ - "427b8f0e-2d00-4913-8c44-51f27fdc8fc1" + "d6c6de8a-2ccd-461f-be0a-bb14a42e1e00" ], "x-ms-routing-request-id": [ - "WESTUS2:20210219T192301Z:427b8f0e-2d00-4913-8c44-51f27fdc8fc1" + "WESTUS2:20210514T173704Z:d6c6de8a-2ccd-461f-be0a-bb14a42e1e00" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2423,10 +1707,10 @@ "nosniff" ], "Date": [ - "Fri, 19 Feb 2021 19:23:01 GMT" + "Fri, 14 May 2021 17:37:04 GMT" ], "Content-Length": [ - "290" + "20" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2435,26 +1719,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": null,\r\n \"type\": null,\r\n \"unit\": \"count\",\r\n \"currentValue\": 0,\r\n \"limit\": 1,\r\n \"name\": {\r\n \"value\": \"freeIotHubCount\",\r\n \"localizedValue\": \"Free Iot Hub Count\"\r\n }\r\n },\r\n {\r\n \"id\": null,\r\n \"type\": null,\r\n \"unit\": \"count\",\r\n \"currentValue\": 3,\r\n \"limit\": 50,\r\n \"name\": {\r\n \"value\": \"paidIotHubCount\",\r\n \"localizedValue\": \"Paid Iot Hub Count\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"status\": \"Running\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/DotNetHubRG/providers/Microsoft.Devices/IotHubs/DotNetHub/routingEndpointsHealth?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Jlc291cmNlR3JvdXBzL0RvdE5ldEh1YlJHL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9Jb3RIdWJzL0RvdE5ldEh1Yi9yb3V0aW5nRW5kcG9pbnRzSGVhbHRoP2FwaS12ZXJzaW9uPTIwMjAtMDMtMDE=", + "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/providers/Microsoft.Devices/operationResults/b3NfaWhfNTJlNjI2ZDYtOTU2ZS00NTEyLWE4ZTktZGI4NTY2OGRlZDEw?api-version=2021-03-31&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTlRKbE5qSTJaRFl0T1RVMlpTMDBOVEV5TFdFNFpUa3RaR0k0TlRZMk9HUmxaREV3P2FwaS12ZXJzaW9uPTIwMjEtMDMtMzEmb3BlcmF0aW9uU291cmNlPW9zX2loJmFzeW5jaW5mbw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "cb4d91d9-8815-4691-bbc9-861cc78bfb0b" - ], - "Accept-Language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.0.0.0" ] }, "ResponseHeaders": { @@ -2468,16 +1746,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11995" ], "x-ms-request-id": [ - "8cbf6f01-5f31-412a-ad52-556a3e459742" + "1b592a80-3c50-4b40-85e3-00df35e599f4" ], "x-ms-correlation-request-id": [ - "8cbf6f01-5f31-412a-ad52-556a3e459742" + "1b592a80-3c50-4b40-85e3-00df35e599f4" ], "x-ms-routing-request-id": [ - "WESTUS2:20210219T192302Z:8cbf6f01-5f31-412a-ad52-556a3e459742" + "WESTUS2:20210514T173734Z:1b592a80-3c50-4b40-85e3-00df35e599f4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2486,10 +1764,10 @@ "nosniff" ], "Date": [ - "Fri, 19 Feb 2021 19:23:01 GMT" + "Fri, 14 May 2021 17:37:34 GMT" ], "Content-Length": [ - "297" + "22" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2498,32 +1776,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"endpointId\": \"9550567e-70e4-4027-8a2b-7c2dacac4db5\",\r\n \"healthStatus\": \"unknown\"\r\n },\r\n {\r\n \"endpointId\": \"0823573b-d260-4fcf-9036-1677c613303d\",\r\n \"healthStatus\": \"unknown\"\r\n },\r\n {\r\n \"endpointId\": \"c2be8e83-d23a-42be-bc02-85995a9ee1f5\",\r\n \"healthStatus\": \"unknown\"\r\n },\r\n {\r\n \"endpointId\": \"events\",\r\n \"healthStatus\": \"unknown\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/DotNetHubRG/providers/Microsoft.Devices/IotHubs/DotNetHub/routing/routes/$testall?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Jlc291cmNlR3JvdXBzL0RvdE5ldEh1YlJHL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9Jb3RIdWJzL0RvdE5ldEh1Yi9yb3V0aW5nL3JvdXRlcy8kdGVzdGFsbD9hcGktdmVyc2lvbj0yMDIwLTAzLTAx", - "RequestMethod": "POST", - "RequestBody": "{\r\n \"routingSource\": \"DeviceMessages\",\r\n \"message\": {},\r\n \"twin\": {}\r\n}", + "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/DotNetHubRG/providers/Microsoft.Devices/IotHubs/DotNetHub?api-version=2021-03-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Jlc291cmNlR3JvdXBzL0RvdE5ldEh1YlJHL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9Jb3RIdWJzL0RvdE5ldEh1Yj9hcGktdmVyc2lvbj0yMDIxLTAzLTMx", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "46de6602-5d8c-44e3-a527-a0ce546070dd" - ], - "Accept-Language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "74" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.0.0.0" ] }, "ResponseHeaders": { @@ -2536,17 +1802,17 @@ "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" ], "x-ms-request-id": [ - "a50f18b0-1174-4d91-b8d7-44301de4413e" + "c4e68146-b210-41e0-811f-7d981354d51e" ], "x-ms-correlation-request-id": [ - "a50f18b0-1174-4d91-b8d7-44301de4413e" + "c4e68146-b210-41e0-811f-7d981354d51e" ], "x-ms-routing-request-id": [ - "WESTUS2:20210219T192302Z:a50f18b0-1174-4d91-b8d7-44301de4413e" + "WESTUS2:20210514T173735Z:c4e68146-b210-41e0-811f-7d981354d51e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2555,10 +1821,10 @@ "nosniff" ], "Date": [ - "Fri, 19 Feb 2021 19:23:02 GMT" + "Fri, 14 May 2021 17:37:34 GMT" ], "Content-Length": [ - "491" + "2714" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2567,32 +1833,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"routes\": [\r\n {\r\n \"properties\": {\r\n \"name\": \"route4\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"tp1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n {\r\n \"properties\": {\r\n \"name\": \"route1\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n {\r\n \"properties\": {\r\n \"name\": \"route3\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"sb1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n {\r\n \"properties\": {\r\n \"name\": \"route2\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/DotNetHubRG/providers/Microsoft.Devices/IotHubs/DotNetHub\",\r\n \"name\": \"DotNetHub\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"WestUS2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"9dbb02fa-c9d2-4593-967e-ffc99c566c5c\",\r\n \"resourcegroup\": \"DotNetHubRG\",\r\n \"etag\": \"AAAADEo5qJg=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"DotNetHub.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"dotnethub\",\r\n \"endpoint\": \"sb://iothub-ns-dotnethub-10941889-d04f193c96.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://iothubcsharpsdksbnamespacetest.servicebus.windows.net:5671/;SharedAccessKeyName=iotHubCSharpSDKSBTopicTestRule;SharedAccessKey=****;EntityPath=iotHubCSharpSDKSBTest\",\r\n \"name\": \"sb1\",\r\n \"id\": \"a65009ad-72ae-456a-9f8e-d2cc615f8e1f\"\r\n }\r\n ],\r\n \"serviceBusTopics\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://iothubcsharpsdksbnamespacetest.servicebus.windows.net:5671/;SharedAccessKeyName=iotHubCSharpSDKSBTopicTestRule;SharedAccessKey=****;EntityPath=iotHubCSharpSDKTopicTest\",\r\n \"name\": \"tp1\",\r\n \"id\": \"9c24ed09-bf75-4b62-853f-b849840cd898\"\r\n }\r\n ],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://iothubcsharpsdkehnamespacetest.servicebus.windows.net:5671/;SharedAccessKeyName=iothubcsharpsdkehtestrule;SharedAccessKey=****;EntityPath=iothubcsharpsdkehtest\",\r\n \"name\": \"eh1\",\r\n \"id\": \"08900ee2-4931-48c3-9693-a18e25d6ce31\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route1\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route2\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route3\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"sb1\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route4\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"tp1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/DotNetHubRG/providers/Microsoft.Devices/IotHubs/DotNetHub/routing/routes/$testnew?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Jlc291cmNlR3JvdXBzL0RvdE5ldEh1YlJHL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9Jb3RIdWJzL0RvdE5ldEh1Yi9yb3V0aW5nL3JvdXRlcy8kdGVzdG5ldz9hcGktdmVyc2lvbj0yMDIwLTAzLTAx", - "RequestMethod": "POST", - "RequestBody": "{\r\n \"message\": {},\r\n \"route\": {\r\n \"name\": \"route1\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n \"twin\": {}\r\n}", + "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/DotNetHubRG/providers/Microsoft.Devices/IotHubs/DotNetHub?api-version=2021-03-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Jlc291cmNlR3JvdXBzL0RvdE5ldEh1YlJHL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9Jb3RIdWJzL0RvdE5ldEh1Yj9hcGktdmVyc2lvbj0yMDIxLTAzLTMx", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "73b01aeb-117b-488b-8814-ba860bf368d8" + "4ca38ce6-8997-479f-b671-c5470b707d43" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "209" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.0.0.0" ] }, "ResponseHeaders": { @@ -2605,17 +1865,17 @@ "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11984" ], "x-ms-request-id": [ - "034db30e-11d3-40e7-8feb-abb62e3ee304" + "2c3543e6-d8d6-49a8-bea8-88edfc2e332e" ], "x-ms-correlation-request-id": [ - "034db30e-11d3-40e7-8feb-abb62e3ee304" + "2c3543e6-d8d6-49a8-bea8-88edfc2e332e" ], "x-ms-routing-request-id": [ - "WESTUS2:20210219T192302Z:034db30e-11d3-40e7-8feb-abb62e3ee304" + "WESTUS2:20210514T173745Z:2c3543e6-d8d6-49a8-bea8-88edfc2e332e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2624,10 +1884,10 @@ "nosniff" ], "Date": [ - "Fri, 19 Feb 2021 19:23:02 GMT" + "Fri, 14 May 2021 17:37:44 GMT" ], "Content-Length": [ - "17" + "2745" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2636,26 +1896,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"result\": \"true\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/DotNetHubRG/providers/Microsoft.Devices/IotHubs/DotNetHub\",\r\n \"name\": \"DotNetHub\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"WestUS2\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"subscriptionid\": \"9dbb02fa-c9d2-4593-967e-ffc99c566c5c\",\r\n \"resourcegroup\": \"DotNetHubRG\",\r\n \"etag\": \"AAAADEo5qp0=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"DotNetHub.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"dotnethub\",\r\n \"endpoint\": \"sb://iothub-ns-dotnethub-10941889-d04f193c96.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://iothubcsharpsdksbnamespacetest.servicebus.windows.net:5671/;SharedAccessKeyName=iotHubCSharpSDKSBTopicTestRule;SharedAccessKey=****;EntityPath=iotHubCSharpSDKSBTest\",\r\n \"name\": \"sb1\",\r\n \"id\": \"a65009ad-72ae-456a-9f8e-d2cc615f8e1f\"\r\n }\r\n ],\r\n \"serviceBusTopics\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://iothubcsharpsdksbnamespacetest.servicebus.windows.net:5671/;SharedAccessKeyName=iotHubCSharpSDKSBTopicTestRule;SharedAccessKey=****;EntityPath=iotHubCSharpSDKTopicTest\",\r\n \"name\": \"tp1\",\r\n \"id\": \"9c24ed09-bf75-4b62-853f-b849840cd898\"\r\n }\r\n ],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://iothubcsharpsdkehnamespacetest.servicebus.windows.net:5671/;SharedAccessKeyName=iothubcsharpsdkehtestrule;SharedAccessKey=****;EntityPath=iothubcsharpsdkehtest\",\r\n \"name\": \"eh1\",\r\n \"id\": \"08900ee2-4931-48c3-9693-a18e25d6ce31\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route1\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route2\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route3\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"sb1\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route4\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"tp1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/DotNetHubRG/providers/Microsoft.Devices/IotHubs/DotNetHub/quotaMetrics?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Jlc291cmNlR3JvdXBzL0RvdE5ldEh1YlJHL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9Jb3RIdWJzL0RvdE5ldEh1Yi9xdW90YU1ldHJpY3M/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/DotNetHubRG/providers/Microsoft.Devices/IotHubs/DotNetHub?api-version=2021-03-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Jlc291cmNlR3JvdXBzL0RvdE5ldEh1YlJHL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9Jb3RIdWJzL0RvdE5ldEh1Yj9hcGktdmVyc2lvbj0yMDIxLTAzLTMx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7991a090-633a-4e06-9cbf-b9d49f3767f6" + "826709f9-f0fb-4358-923a-d056e7b9e492" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.0.0.0" ] }, "ResponseHeaders": { @@ -2669,16 +1929,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11947" ], "x-ms-request-id": [ - "0556ccb5-f579-4e24-a6f4-9fabc4adfd49" + "26630f3b-cf59-47ae-9c42-9f56bab08956" ], "x-ms-correlation-request-id": [ - "0556ccb5-f579-4e24-a6f4-9fabc4adfd49" + "26630f3b-cf59-47ae-9c42-9f56bab08956" ], "x-ms-routing-request-id": [ - "WESTUS2:20210219T192303Z:0556ccb5-f579-4e24-a6f4-9fabc4adfd49" + "WESTUS2:20210514T174640Z:26630f3b-cf59-47ae-9c42-9f56bab08956" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2687,10 +1947,10 @@ "nosniff" ], "Date": [ - "Fri, 19 Feb 2021 19:23:02 GMT" + "Fri, 14 May 2021 17:46:39 GMT" ], "Content-Length": [ - "135" + "2745" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2699,26 +1959,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"TotalMessages\",\r\n \"currentValue\": 0,\r\n \"maxValue\": 400000\r\n },\r\n {\r\n \"name\": \"TotalDeviceCount\",\r\n \"currentValue\": 0,\r\n \"maxValue\": 1000000\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/DotNetHubRG/providers/Microsoft.Devices/IotHubs/DotNetHub\",\r\n \"name\": \"DotNetHub\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"WestUS2\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"subscriptionid\": \"9dbb02fa-c9d2-4593-967e-ffc99c566c5c\",\r\n \"resourcegroup\": \"DotNetHubRG\",\r\n \"etag\": \"AAAADEo53nk=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"DotNetHub.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"dotnethub\",\r\n \"endpoint\": \"sb://iothub-ns-dotnethub-10941889-d0b5f8f118.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://iothubcsharpsdksbnamespacetest.servicebus.windows.net:5671/;SharedAccessKeyName=iotHubCSharpSDKSBTopicTestRule;SharedAccessKey=****;EntityPath=iotHubCSharpSDKSBTest\",\r\n \"name\": \"sb1\",\r\n \"id\": \"a65009ad-72ae-456a-9f8e-d2cc615f8e1f\"\r\n }\r\n ],\r\n \"serviceBusTopics\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://iothubcsharpsdksbnamespacetest.servicebus.windows.net:5671/;SharedAccessKeyName=iotHubCSharpSDKSBTopicTestRule;SharedAccessKey=****;EntityPath=iotHubCSharpSDKTopicTest\",\r\n \"name\": \"tp1\",\r\n \"id\": \"9c24ed09-bf75-4b62-853f-b849840cd898\"\r\n }\r\n ],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://iothubcsharpsdkehnamespacetest.servicebus.windows.net:5671/;SharedAccessKeyName=iothubcsharpsdkehtestrule;SharedAccessKey=****;EntityPath=iothubcsharpsdkehtest\",\r\n \"name\": \"eh1\",\r\n \"id\": \"08900ee2-4931-48c3-9693-a18e25d6ce31\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route1\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route2\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route3\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"sb1\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route4\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"tp1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/DotNetHubRG/providers/Microsoft.Devices/IotHubs?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Jlc291cmNlR3JvdXBzL0RvdE5ldEh1YlJHL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9Jb3RIdWJzP2FwaS12ZXJzaW9uPTIwMjAtMDMtMDE=", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/DotNetHubRG/providers/Microsoft.Devices/IotHubs/DotNetHub?api-version=2021-03-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Jlc291cmNlR3JvdXBzL0RvdE5ldEh1YlJHL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9Jb3RIdWJzL0RvdE5ldEh1Yj9hcGktdmVyc2lvbj0yMDIxLTAzLTMx", + "RequestMethod": "PATCH", + "RequestBody": "{\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "65687a5f-e11e-495d-b97c-e02dffd95520" + "39c93db9-eb76-459c-a659-6e32be0496b0" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "67" ] }, "ResponseHeaders": { @@ -2731,17 +1997,17 @@ "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "4998" ], "x-ms-request-id": [ - "e61d6c05-3365-4731-89f5-3f7a219285ff" + "dbfc559e-3793-4bde-b22d-c7c9f230be78" ], "x-ms-correlation-request-id": [ - "e61d6c05-3365-4731-89f5-3f7a219285ff" + "dbfc559e-3793-4bde-b22d-c7c9f230be78" ], "x-ms-routing-request-id": [ - "WESTUS2:20210219T192303Z:e61d6c05-3365-4731-89f5-3f7a219285ff" + "WESTUS2:20210514T173736Z:dbfc559e-3793-4bde-b22d-c7c9f230be78" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2750,10 +2016,10 @@ "nosniff" ], "Date": [ - "Fri, 19 Feb 2021 19:23:02 GMT" + "Fri, 14 May 2021 17:37:35 GMT" ], "Content-Length": [ - "2756" + "2733" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2762,26 +2028,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/DotNetHubRG/providers/Microsoft.Devices/IotHubs/DotNetHub\",\r\n \"name\": \"DotNetHub\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"WestUS2\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"subscriptionid\": \"9dbb02fa-c9d2-4593-967e-ffc99c566c5c\",\r\n \"resourcegroup\": \"DotNetHubRG\",\r\n \"etag\": \"AAAACmvwsEk=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"DotNetHub.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"dotnethub\",\r\n \"endpoint\": \"sb://iothub-ns-dotnethub-8263637-0241c17d2d.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://iothubcsharpsdksbnamespacetest.servicebus.windows.net:5671/;SharedAccessKeyName=iotHubCSharpSDKSBTopicTestRule;SharedAccessKey=****;EntityPath=iotHubCSharpSDKSBTest\",\r\n \"name\": \"sb1\",\r\n \"id\": \"c2be8e83-d23a-42be-bc02-85995a9ee1f5\"\r\n }\r\n ],\r\n \"serviceBusTopics\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://iothubcsharpsdksbnamespacetest.servicebus.windows.net:5671/;SharedAccessKeyName=iotHubCSharpSDKSBTopicTestRule;SharedAccessKey=****;EntityPath=iotHubCSharpSDKTopicTest\",\r\n \"name\": \"tp1\",\r\n \"id\": \"9550567e-70e4-4027-8a2b-7c2dacac4db5\"\r\n }\r\n ],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://iothubcsharpsdkehnamespacetest.servicebus.windows.net:5671/;SharedAccessKeyName=iothubcsharpsdkehtestrule;SharedAccessKey=****;EntityPath=iothubcsharpsdkehtest\",\r\n \"name\": \"eh1\",\r\n \"id\": \"0823573b-d260-4fcf-9036-1677c613303d\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route1\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route2\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route3\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"sb1\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route4\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"tp1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/DotNetHubRG/providers/Microsoft.Devices/IotHubs/DotNetHub\",\r\n \"name\": \"DotNetHub\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"WestUS2\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"subscriptionid\": \"9dbb02fa-c9d2-4593-967e-ffc99c566c5c\",\r\n \"resourcegroup\": \"DotNetHubRG\",\r\n \"etag\": \"\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"DotNetHub.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"dotnethub\",\r\n \"endpoint\": \"sb://iothub-ns-dotnethub-10941889-d04f193c96.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://iothubcsharpsdksbnamespacetest.servicebus.windows.net:5671/;SharedAccessKeyName=iotHubCSharpSDKSBTopicTestRule;SharedAccessKey=****;EntityPath=iotHubCSharpSDKSBTest\",\r\n \"name\": \"sb1\",\r\n \"id\": \"a65009ad-72ae-456a-9f8e-d2cc615f8e1f\"\r\n }\r\n ],\r\n \"serviceBusTopics\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://iothubcsharpsdksbnamespacetest.servicebus.windows.net:5671/;SharedAccessKeyName=iotHubCSharpSDKSBTopicTestRule;SharedAccessKey=****;EntityPath=iotHubCSharpSDKTopicTest\",\r\n \"name\": \"tp1\",\r\n \"id\": \"9c24ed09-bf75-4b62-853f-b849840cd898\"\r\n }\r\n ],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://iothubcsharpsdkehnamespacetest.servicebus.windows.net:5671/;SharedAccessKeyName=iothubcsharpsdkehtestrule;SharedAccessKey=****;EntityPath=iothubcsharpsdkehtest\",\r\n \"name\": \"eh1\",\r\n \"id\": \"08900ee2-4931-48c3-9693-a18e25d6ce31\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route1\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route2\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route3\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"sb1\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route4\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"tp1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/providers/Microsoft.Devices/IotHubs?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9Jb3RIdWJzP2FwaS12ZXJzaW9uPTIwMjAtMDMtMDE=", + "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/providers/Microsoft.Devices/usages?api-version=2021-03-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy91c2FnZXM/YXBpLXZlcnNpb249MjAyMS0wMy0zMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9e805d9f-35c4-428f-a899-9136a134aad0" + "98915844-f565-46d8-b732-ab1cef5851ff" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.0.0.0" ] }, "ResponseHeaders": { @@ -2795,16 +2061,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11993" ], "x-ms-request-id": [ - "d49d4ce3-a484-489e-9313-a63dfb5bcdb6" + "29d72583-0999-401c-9d3f-c42e3b5cf23d" ], "x-ms-correlation-request-id": [ - "d49d4ce3-a484-489e-9313-a63dfb5bcdb6" + "29d72583-0999-401c-9d3f-c42e3b5cf23d" ], "x-ms-routing-request-id": [ - "WESTUS2:20210219T192304Z:d49d4ce3-a484-489e-9313-a63dfb5bcdb6" + "WESTUS2:20210514T173737Z:29d72583-0999-401c-9d3f-c42e3b5cf23d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2813,10 +2079,10 @@ "nosniff" ], "Date": [ - "Fri, 19 Feb 2021 19:23:03 GMT" + "Fri, 14 May 2021 17:37:36 GMT" ], "Content-Length": [ - "6104" + "290" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2825,26 +2091,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/drwHub210204/providers/Microsoft.Devices/IotHubs/drwHub210204-hubfar\",\r\n \"name\": \"drwHub210204-hubfar\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"9dbb02fa-c9d2-4593-967e-ffc99c566c5c\",\r\n \"resourcegroup\": \"drwHub210204\",\r\n \"etag\": \"AAAACWdBwIY=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East Asia\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"drwHub210204-hubfar.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"drwhub210204-hubfar\",\r\n \"endpoint\": \"sb://iothub-ns-drwhub2102-7850425-a63c5b3ddb.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/drwHub210204/providers/Microsoft.Devices/IotHubs/drwHub210204-hub\",\r\n \"name\": \"drwHub210204-hub\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"9dbb02fa-c9d2-4593-967e-ffc99c566c5c\",\r\n \"resourcegroup\": \"drwHub210204\",\r\n \"etag\": \"AAAACWdB7xE=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"drwHub210204-hub.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 10,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\",\r\n \"4\",\r\n \"5\",\r\n \"6\",\r\n \"7\",\r\n \"8\",\r\n \"9\"\r\n ],\r\n \"path\": \"drwhub210204-hub\",\r\n \"endpoint\": \"sb://iothub-ns-drwhub2102-7850431-8b6074c696.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;AccountName=drwhub210204sa;AccountKey=****\",\r\n \"containerName\": \"fileupload\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT5S\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 100\r\n }\r\n },\r\n \"enableFileUploadNotifications\": true,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 100,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT5S\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 100\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"91f8cc73-42d5-445d-a3dc-f7baa361a367\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/DotNetHubRG/providers/Microsoft.Devices/IotHubs/DotNetHub\",\r\n \"name\": \"DotNetHub\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"WestUS2\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"subscriptionid\": \"9dbb02fa-c9d2-4593-967e-ffc99c566c5c\",\r\n \"resourcegroup\": \"DotNetHubRG\",\r\n \"etag\": \"AAAACmvwsEk=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"DotNetHub.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"dotnethub\",\r\n \"endpoint\": \"sb://iothub-ns-dotnethub-8263637-0241c17d2d.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://iothubcsharpsdksbnamespacetest.servicebus.windows.net:5671/;SharedAccessKeyName=iotHubCSharpSDKSBTopicTestRule;SharedAccessKey=****;EntityPath=iotHubCSharpSDKSBTest\",\r\n \"name\": \"sb1\",\r\n \"id\": \"c2be8e83-d23a-42be-bc02-85995a9ee1f5\"\r\n }\r\n ],\r\n \"serviceBusTopics\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://iothubcsharpsdksbnamespacetest.servicebus.windows.net:5671/;SharedAccessKeyName=iotHubCSharpSDKSBTopicTestRule;SharedAccessKey=****;EntityPath=iotHubCSharpSDKTopicTest\",\r\n \"name\": \"tp1\",\r\n \"id\": \"9550567e-70e4-4027-8a2b-7c2dacac4db5\"\r\n }\r\n ],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://iothubcsharpsdkehnamespacetest.servicebus.windows.net:5671/;SharedAccessKeyName=iothubcsharpsdkehtestrule;SharedAccessKey=****;EntityPath=iothubcsharpsdkehtest\",\r\n \"name\": \"eh1\",\r\n \"id\": \"0823573b-d260-4fcf-9036-1677c613303d\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route1\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route2\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route3\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"sb1\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route4\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"tp1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": null,\r\n \"type\": null,\r\n \"unit\": \"count\",\r\n \"currentValue\": 0,\r\n \"limit\": 1,\r\n \"name\": {\r\n \"value\": \"freeIotHubCount\",\r\n \"localizedValue\": \"Free Iot Hub Count\"\r\n }\r\n },\r\n {\r\n \"id\": null,\r\n \"type\": null,\r\n \"unit\": \"count\",\r\n \"currentValue\": 3,\r\n \"limit\": 50,\r\n \"name\": {\r\n \"value\": \"paidIotHubCount\",\r\n \"localizedValue\": \"Paid Iot Hub Count\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/DotNetHubRG/providers/Microsoft.Devices/IotHubs/DotNetHub/IotHubStats?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Jlc291cmNlR3JvdXBzL0RvdE5ldEh1YlJHL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9Jb3RIdWJzL0RvdE5ldEh1Yi9Jb3RIdWJTdGF0cz9hcGktdmVyc2lvbj0yMDIwLTAzLTAx", + "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/DotNetHubRG/providers/Microsoft.Devices/IotHubs/DotNetHub/routingEndpointsHealth?api-version=2021-03-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Jlc291cmNlR3JvdXBzL0RvdE5ldEh1YlJHL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9Jb3RIdWJzL0RvdE5ldEh1Yi9yb3V0aW5nRW5kcG9pbnRzSGVhbHRoP2FwaS12ZXJzaW9uPTIwMjEtMDMtMzE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "399f6739-b93a-4071-aa06-98be87d271ba" + "2849a4ca-b429-4f5c-9d33-c4534e6aa881" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.0.0.0" ] }, "ResponseHeaders": { @@ -2858,16 +2124,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11992" ], "x-ms-request-id": [ - "5fa9d231-55d5-4321-8547-b7661fb60524" + "74d18c99-e0bc-4b2a-9a9b-40fc95c45fa6" ], "x-ms-correlation-request-id": [ - "5fa9d231-55d5-4321-8547-b7661fb60524" + "74d18c99-e0bc-4b2a-9a9b-40fc95c45fa6" ], "x-ms-routing-request-id": [ - "WESTUS2:20210219T192304Z:5fa9d231-55d5-4321-8547-b7661fb60524" + "WESTUS2:20210514T173737Z:74d18c99-e0bc-4b2a-9a9b-40fc95c45fa6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2876,10 +2142,10 @@ "nosniff" ], "Date": [ - "Fri, 19 Feb 2021 19:23:04 GMT" + "Fri, 14 May 2021 17:37:36 GMT" ], "Content-Length": [ - "69" + "297" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2888,26 +2154,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"totalDeviceCount\": 0,\r\n \"enabledDeviceCount\": 0,\r\n \"disabledDeviceCount\": 0\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"endpointId\": \"a65009ad-72ae-456a-9f8e-d2cc615f8e1f\",\r\n \"healthStatus\": \"unknown\"\r\n },\r\n {\r\n \"endpointId\": \"08900ee2-4931-48c3-9693-a18e25d6ce31\",\r\n \"healthStatus\": \"unknown\"\r\n },\r\n {\r\n \"endpointId\": \"9c24ed09-bf75-4b62-853f-b849840cd898\",\r\n \"healthStatus\": \"unknown\"\r\n },\r\n {\r\n \"endpointId\": \"events\",\r\n \"healthStatus\": \"unknown\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/DotNetHubRG/providers/Microsoft.Devices/IotHubs/DotNetHub/skus?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Jlc291cmNlR3JvdXBzL0RvdE5ldEh1YlJHL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9Jb3RIdWJzL0RvdE5ldEh1Yi9za3VzP2FwaS12ZXJzaW9uPTIwMjAtMDMtMDE=", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/DotNetHubRG/providers/Microsoft.Devices/IotHubs/DotNetHub/routing/routes/$testall?api-version=2021-03-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Jlc291cmNlR3JvdXBzL0RvdE5ldEh1YlJHL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9Jb3RIdWJzL0RvdE5ldEh1Yi9yb3V0aW5nL3JvdXRlcy8kdGVzdGFsbD9hcGktdmVyc2lvbj0yMDIxLTAzLTMx", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"routingSource\": \"DeviceMessages\",\r\n \"message\": {},\r\n \"twin\": {}\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "6a1e431b-0824-4051-8901-329e6363bf70" + "c1dd3363-52af-42bb-9760-a826fd844f28" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "74" ] }, "ResponseHeaders": { @@ -2920,17 +2192,17 @@ "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" ], "x-ms-request-id": [ - "3043718f-9f91-444d-b411-c9a84dbd9433" + "49b0a9df-6391-4a38-85f2-c7f2d5b201e5" ], "x-ms-correlation-request-id": [ - "3043718f-9f91-444d-b411-c9a84dbd9433" + "49b0a9df-6391-4a38-85f2-c7f2d5b201e5" ], "x-ms-routing-request-id": [ - "WESTUS2:20210219T192305Z:3043718f-9f91-444d-b411-c9a84dbd9433" + "WESTUS2:20210514T173737Z:49b0a9df-6391-4a38-85f2-c7f2d5b201e5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2939,10 +2211,10 @@ "nosniff" ], "Date": [ - "Fri, 19 Feb 2021 19:23:04 GMT" + "Fri, 14 May 2021 17:37:37 GMT" ], "Content-Length": [ - "475" + "491" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2951,26 +2223,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"resourceType\": \"Microsoft.Devices/IotHubs\",\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"capacity\": {\r\n \"minimum\": 1,\r\n \"maximum\": 200,\r\n \"default\": 1,\r\n \"scaleType\": \"Manual\"\r\n }\r\n },\r\n {\r\n \"resourceType\": \"Microsoft.Devices/IotHubs\",\r\n \"sku\": {\r\n \"name\": \"S2\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"capacity\": {\r\n \"minimum\": 1,\r\n \"maximum\": 200,\r\n \"default\": 1,\r\n \"scaleType\": \"Manual\"\r\n }\r\n },\r\n {\r\n \"resourceType\": \"Microsoft.Devices/IotHubs\",\r\n \"sku\": {\r\n \"name\": \"S3\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"capacity\": {\r\n \"minimum\": 1,\r\n \"maximum\": 10,\r\n \"default\": 1,\r\n \"scaleType\": \"Manual\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"routes\": [\r\n {\r\n \"properties\": {\r\n \"name\": \"route3\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"sb1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n {\r\n \"properties\": {\r\n \"name\": \"route1\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n {\r\n \"properties\": {\r\n \"name\": \"route4\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"tp1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n {\r\n \"properties\": {\r\n \"name\": \"route2\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/DotNetHubRG/providers/Microsoft.Devices/IotHubs/DotNetHub/listkeys?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Jlc291cmNlR3JvdXBzL0RvdE5ldEh1YlJHL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9Jb3RIdWJzL0RvdE5ldEh1Yi9saXN0a2V5cz9hcGktdmVyc2lvbj0yMDIwLTAzLTAx", + "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/DotNetHubRG/providers/Microsoft.Devices/IotHubs/DotNetHub/routing/routes/$testnew?api-version=2021-03-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Jlc291cmNlR3JvdXBzL0RvdE5ldEh1YlJHL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9Jb3RIdWJzL0RvdE5ldEh1Yi9yb3V0aW5nL3JvdXRlcy8kdGVzdG5ldz9hcGktdmVyc2lvbj0yMDIxLTAzLTMx", "RequestMethod": "POST", - "RequestBody": "", + "RequestBody": "{\r\n \"message\": {},\r\n \"route\": {\r\n \"name\": \"route1\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n \"twin\": {}\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "836c4b09-bab9-4ade-8dc8-8876681786a7" + "86e98851-23a3-485f-aa7c-679cffbd23ef" ], "Accept-Language": [ "en-US" ], - "User-Agent": [ - "FxVersion/4.6.29719.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "User-Agent": [ + "FxVersion/4.6.30015.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "209" ] }, "ResponseHeaders": { @@ -2984,16 +2262,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1198" ], "x-ms-request-id": [ - "b2fd29de-19da-443e-9520-8d1bdc721fb9" + "9af679ab-f83f-4742-90a7-1d8bb9cf70c7" ], "x-ms-correlation-request-id": [ - "b2fd29de-19da-443e-9520-8d1bdc721fb9" + "9af679ab-f83f-4742-90a7-1d8bb9cf70c7" ], "x-ms-routing-request-id": [ - "WESTUS2:20210219T192305Z:b2fd29de-19da-443e-9520-8d1bdc721fb9" + "WESTUS2:20210514T173738Z:9af679ab-f83f-4742-90a7-1d8bb9cf70c7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3002,10 +2280,10 @@ "nosniff" ], "Date": [ - "Fri, 19 Feb 2021 19:23:04 GMT" + "Fri, 14 May 2021 17:37:37 GMT" ], "Content-Length": [ - "905" + "17" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3014,26 +2292,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"ilTr8276br73JnQYICiXxYKliI25hLHPMT9AGbl+p88=\",\r\n \"secondaryKey\": \"0QUwrwMI8g3PiknRuYLpCu/2Q5k8WU7I+6lqpqUbQPM=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"tnJSJIunxkrwhCson8n3/yf+R1Yt5E/gRDS0/s4HlP4=\",\r\n \"secondaryKey\": \"seT9PSRWnXFVzibVvpiE7pHFZ9yQrFyq3Pl6SvM450Q=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"LndBb5dxAUzgg+w/siXYqOCqRX3JFw1e0TDFTmYZ9sg=\",\r\n \"secondaryKey\": \"U2oi8SwXkcyLV4Ct++Ay6QFn0nPxUP2wz4HjNzJymx8=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"cSfAcFkjaWJiknWt2vRnjbFaAkHWhomrjmVfGqN1oeo=\",\r\n \"secondaryKey\": \"WERSzOzw5iFUgMz//0vXrKhKxXh9PFGzpLUEPt8GNbU=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"7ItYgvanPObPkj6KRgp4knc4/UieWKfFUe1zvGmMr/Q=\",\r\n \"secondaryKey\": \"qpu9OXp8WWYO1xXYFJWmyMwioRtUH/xgfpgKcc7rv0c=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"result\": \"true\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/DotNetHubRG/providers/Microsoft.Devices/IotHubs/DotNetHub/IotHubKeys/iothubowner/listkeys?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Jlc291cmNlR3JvdXBzL0RvdE5ldEh1YlJHL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9Jb3RIdWJzL0RvdE5ldEh1Yi9Jb3RIdWJLZXlzL2lvdGh1Ym93bmVyL2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMjAtMDMtMDE=", - "RequestMethod": "POST", + "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/DotNetHubRG/providers/Microsoft.Devices/IotHubs/DotNetHub/quotaMetrics?api-version=2021-03-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Jlc291cmNlR3JvdXBzL0RvdE5ldEh1YlJHL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9Jb3RIdWJzL0RvdE5ldEh1Yi9xdW90YU1ldHJpY3M/YXBpLXZlcnNpb249MjAyMS0wMy0zMQ==", + "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ed09fe17-20da-49eb-80c7-85f2081dc850" + "c1b1182f-ce4f-4eca-a6e4-50c9cd3428cf" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.0.0.0" ] }, "ResponseHeaders": { @@ -3046,17 +2324,17 @@ "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11991" ], "x-ms-request-id": [ - "16b21adc-eaea-4976-94eb-013ae3ed0284" + "05078832-49bb-4cf9-8d0b-72225d3e0260" ], "x-ms-correlation-request-id": [ - "16b21adc-eaea-4976-94eb-013ae3ed0284" + "05078832-49bb-4cf9-8d0b-72225d3e0260" ], "x-ms-routing-request-id": [ - "WESTUS2:20210219T192305Z:16b21adc-eaea-4976-94eb-013ae3ed0284" + "WESTUS2:20210514T173738Z:05078832-49bb-4cf9-8d0b-72225d3e0260" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3065,10 +2343,10 @@ "nosniff" ], "Date": [ - "Fri, 19 Feb 2021 19:23:05 GMT" + "Fri, 14 May 2021 17:37:37 GMT" ], "Content-Length": [ - "203" + "135" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3077,26 +2355,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"ilTr8276br73JnQYICiXxYKliI25hLHPMT9AGbl+p88=\",\r\n \"secondaryKey\": \"0QUwrwMI8g3PiknRuYLpCu/2Q5k8WU7I+6lqpqUbQPM=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"TotalMessages\",\r\n \"currentValue\": 0,\r\n \"maxValue\": 400000\r\n },\r\n {\r\n \"name\": \"TotalDeviceCount\",\r\n \"currentValue\": 0,\r\n \"maxValue\": 1000000\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/DotNetHubRG/providers/Microsoft.Devices/IotHubs/DotNetHub/eventHubEndpoints/events/ConsumerGroups?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Jlc291cmNlR3JvdXBzL0RvdE5ldEh1YlJHL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9Jb3RIdWJzL0RvdE5ldEh1Yi9ldmVudEh1YkVuZHBvaW50cy9ldmVudHMvQ29uc3VtZXJHcm91cHM/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/DotNetHubRG/providers/Microsoft.Devices/IotHubs?api-version=2021-03-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Jlc291cmNlR3JvdXBzL0RvdE5ldEh1YlJHL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9Jb3RIdWJzP2FwaS12ZXJzaW9uPTIwMjEtMDMtMzE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "37f26f64-6888-4e32-a5dd-916e635574c8" + "e4309d35-51d5-4373-9f63-df024b446289" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.0.0.0" ] }, "ResponseHeaders": { @@ -3110,16 +2388,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" + "11990" ], "x-ms-request-id": [ - "0c8a22db-5522-46f3-9d0e-39dcd9b1f87c" + "082b82f4-5bb0-4e58-80ab-c56a5403759d" ], "x-ms-correlation-request-id": [ - "0c8a22db-5522-46f3-9d0e-39dcd9b1f87c" + "082b82f4-5bb0-4e58-80ab-c56a5403759d" ], "x-ms-routing-request-id": [ - "WESTUS2:20210219T192306Z:0c8a22db-5522-46f3-9d0e-39dcd9b1f87c" + "WESTUS2:20210514T173738Z:082b82f4-5bb0-4e58-80ab-c56a5403759d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3128,10 +2406,10 @@ "nosniff" ], "Date": [ - "Fri, 19 Feb 2021 19:23:05 GMT" + "Fri, 14 May 2021 17:37:37 GMT" ], "Content-Length": [ - "351" + "2757" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3140,26 +2418,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"created\": \"Fri, 19 Feb 2021 19:21:04 GMT\"\r\n },\r\n \"id\": \"/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/DotNetHubRG/providers/Microsoft.Devices/IotHubs/DotNetHub/eventHubEndpoints/events/ConsumerGroups/%24Default\",\r\n \"name\": \"$Default\",\r\n \"type\": \"Microsoft.Devices/IotHubs/EventHubEndpoints/ConsumerGroups\",\r\n \"etag\": null\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/DotNetHubRG/providers/Microsoft.Devices/IotHubs/DotNetHub\",\r\n \"name\": \"DotNetHub\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"WestUS2\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"subscriptionid\": \"9dbb02fa-c9d2-4593-967e-ffc99c566c5c\",\r\n \"resourcegroup\": \"DotNetHubRG\",\r\n \"etag\": \"AAAADEo5qp0=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"DotNetHub.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"dotnethub\",\r\n \"endpoint\": \"sb://iothub-ns-dotnethub-10941889-d04f193c96.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://iothubcsharpsdksbnamespacetest.servicebus.windows.net:5671/;SharedAccessKeyName=iotHubCSharpSDKSBTopicTestRule;SharedAccessKey=****;EntityPath=iotHubCSharpSDKSBTest\",\r\n \"name\": \"sb1\",\r\n \"id\": \"a65009ad-72ae-456a-9f8e-d2cc615f8e1f\"\r\n }\r\n ],\r\n \"serviceBusTopics\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://iothubcsharpsdksbnamespacetest.servicebus.windows.net:5671/;SharedAccessKeyName=iotHubCSharpSDKSBTopicTestRule;SharedAccessKey=****;EntityPath=iotHubCSharpSDKTopicTest\",\r\n \"name\": \"tp1\",\r\n \"id\": \"9c24ed09-bf75-4b62-853f-b849840cd898\"\r\n }\r\n ],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://iothubcsharpsdkehnamespacetest.servicebus.windows.net:5671/;SharedAccessKeyName=iothubcsharpsdkehtestrule;SharedAccessKey=****;EntityPath=iothubcsharpsdkehtest\",\r\n \"name\": \"eh1\",\r\n \"id\": \"08900ee2-4931-48c3-9693-a18e25d6ce31\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route1\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route2\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route3\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"sb1\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route4\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"tp1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/DotNetHubRG/providers/Microsoft.Devices/IotHubs/DotNetHub/eventHubEndpoints/events/ConsumerGroups/testConsumerGroup?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Jlc291cmNlR3JvdXBzL0RvdE5ldEh1YlJHL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9Jb3RIdWJzL0RvdE5ldEh1Yi9ldmVudEh1YkVuZHBvaW50cy9ldmVudHMvQ29uc3VtZXJHcm91cHMvdGVzdENvbnN1bWVyR3JvdXA/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", - "RequestMethod": "PUT", + "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/providers/Microsoft.Devices/IotHubs?api-version=2021-03-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9Jb3RIdWJzP2FwaS12ZXJzaW9uPTIwMjEtMDMtMzE=", + "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f7918cef-49d6-479e-b060-90e48b9a76f4" + "df1c527b-5371-4bd3-995c-ad61800460d1" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.0.0.0" ] }, "ResponseHeaders": { @@ -3172,17 +2450,17 @@ "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11989" ], "x-ms-request-id": [ - "d1668b26-86e3-4006-a3fd-22a176fff07b" + "d58720a0-8f77-4120-9a7a-3f065031606c" ], "x-ms-correlation-request-id": [ - "d1668b26-86e3-4006-a3fd-22a176fff07b" + "d58720a0-8f77-4120-9a7a-3f065031606c" ], "x-ms-routing-request-id": [ - "WESTUS2:20210219T192308Z:d1668b26-86e3-4006-a3fd-22a176fff07b" + "WESTUS2:20210514T173739Z:d58720a0-8f77-4120-9a7a-3f065031606c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3191,10 +2469,10 @@ "nosniff" ], "Date": [ - "Fri, 19 Feb 2021 19:23:07 GMT" + "Fri, 14 May 2021 17:37:38 GMT" ], "Content-Length": [ - "355" + "6106" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3203,26 +2481,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"created\": \"Fri, 19 Feb 2021 19:23:07 GMT\"\r\n },\r\n \"id\": \"/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/DotNetHubRG/providers/Microsoft.Devices/IotHubs/DotNetHub/eventHubEndpoints/events/ConsumerGroups/testConsumerGroup\",\r\n \"name\": \"testConsumerGroup\",\r\n \"type\": \"Microsoft.Devices/IotHubs/EventHubEndpoints/ConsumerGroups\",\r\n \"etag\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/drwHub20210329/providers/Microsoft.Devices/IotHubs/drwHub20210329-hubfar\",\r\n \"name\": \"drwHub20210329-hubfar\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"9dbb02fa-c9d2-4593-967e-ffc99c566c5c\",\r\n \"resourcegroup\": \"drwHub20210329\",\r\n \"etag\": \"AAAADET4RTM=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East Asia\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"drwHub20210329-hubfar.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"drwhub20210329-hubfar\",\r\n \"endpoint\": \"sb://iothub-ns-drwhub2021-9378887-62da67a877.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/drwHub20210329/providers/Microsoft.Devices/IotHubs/drwHub20210329-hub\",\r\n \"name\": \"drwHub20210329-hub\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"9dbb02fa-c9d2-4593-967e-ffc99c566c5c\",\r\n \"resourcegroup\": \"drwHub20210329\",\r\n \"etag\": \"AAAADET4SPk=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"drwHub20210329-hub.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"drwhub20210329-hub\",\r\n \"endpoint\": \"sb://iothub-ns-drwhub2021-9378902-3cb454d8ed.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;AccountName=drwhub20210329sa;AccountKey=****\",\r\n \"containerName\": \"fileupload\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT5S\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 100\r\n }\r\n },\r\n \"enableFileUploadNotifications\": true,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 100,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT5S\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 100\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"7e97c144-2a15-4d91-9490-8047083bae13\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/DotNetHubRG/providers/Microsoft.Devices/IotHubs/DotNetHub\",\r\n \"name\": \"DotNetHub\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"WestUS2\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"subscriptionid\": \"9dbb02fa-c9d2-4593-967e-ffc99c566c5c\",\r\n \"resourcegroup\": \"DotNetHubRG\",\r\n \"etag\": \"AAAADEo5qp0=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"DotNetHub.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"dotnethub\",\r\n \"endpoint\": \"sb://iothub-ns-dotnethub-10941889-d04f193c96.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://iothubcsharpsdksbnamespacetest.servicebus.windows.net:5671/;SharedAccessKeyName=iotHubCSharpSDKSBTopicTestRule;SharedAccessKey=****;EntityPath=iotHubCSharpSDKSBTest\",\r\n \"name\": \"sb1\",\r\n \"id\": \"a65009ad-72ae-456a-9f8e-d2cc615f8e1f\"\r\n }\r\n ],\r\n \"serviceBusTopics\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://iothubcsharpsdksbnamespacetest.servicebus.windows.net:5671/;SharedAccessKeyName=iotHubCSharpSDKSBTopicTestRule;SharedAccessKey=****;EntityPath=iotHubCSharpSDKTopicTest\",\r\n \"name\": \"tp1\",\r\n \"id\": \"9c24ed09-bf75-4b62-853f-b849840cd898\"\r\n }\r\n ],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://iothubcsharpsdkehnamespacetest.servicebus.windows.net:5671/;SharedAccessKeyName=iothubcsharpsdkehtestrule;SharedAccessKey=****;EntityPath=iothubcsharpsdkehtest\",\r\n \"name\": \"eh1\",\r\n \"id\": \"08900ee2-4931-48c3-9693-a18e25d6ce31\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route1\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route2\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route3\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"sb1\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route4\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"tp1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/DotNetHubRG/providers/Microsoft.Devices/IotHubs/DotNetHub/eventHubEndpoints/events/ConsumerGroups/testConsumerGroup?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Jlc291cmNlR3JvdXBzL0RvdE5ldEh1YlJHL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9Jb3RIdWJzL0RvdE5ldEh1Yi9ldmVudEh1YkVuZHBvaW50cy9ldmVudHMvQ29uc3VtZXJHcm91cHMvdGVzdENvbnN1bWVyR3JvdXA/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/DotNetHubRG/providers/Microsoft.Devices/IotHubs/DotNetHub/IotHubStats?api-version=2021-03-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Jlc291cmNlR3JvdXBzL0RvdE5ldEh1YlJHL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9Jb3RIdWJzL0RvdE5ldEh1Yi9Jb3RIdWJTdGF0cz9hcGktdmVyc2lvbj0yMDIxLTAzLTMx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f7c4a19e-a107-4c34-b24e-fd290f2c9e90" + "602bc964-4ec7-4442-a876-5a1fc747a5dd" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.0.0.0" ] }, "ResponseHeaders": { @@ -3236,16 +2514,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" + "11988" ], "x-ms-request-id": [ - "606b3f87-9688-4887-90be-5846a10038cd" + "c43f1830-a3fc-4cf7-9e87-f68d65a52363" ], "x-ms-correlation-request-id": [ - "606b3f87-9688-4887-90be-5846a10038cd" + "c43f1830-a3fc-4cf7-9e87-f68d65a52363" ], "x-ms-routing-request-id": [ - "WESTUS2:20210219T192308Z:606b3f87-9688-4887-90be-5846a10038cd" + "WESTUS2:20210514T173739Z:c43f1830-a3fc-4cf7-9e87-f68d65a52363" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3254,10 +2532,10 @@ "nosniff" ], "Date": [ - "Fri, 19 Feb 2021 19:23:07 GMT" + "Fri, 14 May 2021 17:37:38 GMT" ], "Content-Length": [ - "355" + "69" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3266,26 +2544,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"created\": \"Fri, 19 Feb 2021 19:23:07 GMT\"\r\n },\r\n \"id\": \"/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/DotNetHubRG/providers/Microsoft.Devices/IotHubs/DotNetHub/eventHubEndpoints/events/ConsumerGroups/testConsumerGroup\",\r\n \"name\": \"testConsumerGroup\",\r\n \"type\": \"Microsoft.Devices/IotHubs/EventHubEndpoints/ConsumerGroups\",\r\n \"etag\": null\r\n}", + "ResponseBody": "{\r\n \"totalDeviceCount\": 0,\r\n \"enabledDeviceCount\": 0,\r\n \"disabledDeviceCount\": 0\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/DotNetHubRG/providers/Microsoft.Devices/IotHubs/DotNetHub/eventHubEndpoints/events/ConsumerGroups/testConsumerGroup?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Jlc291cmNlR3JvdXBzL0RvdE5ldEh1YlJHL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9Jb3RIdWJzL0RvdE5ldEh1Yi9ldmVudEh1YkVuZHBvaW50cy9ldmVudHMvQ29uc3VtZXJHcm91cHMvdGVzdENvbnN1bWVyR3JvdXA/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", - "RequestMethod": "DELETE", + "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/DotNetHubRG/providers/Microsoft.Devices/IotHubs/DotNetHub/skus?api-version=2021-03-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Jlc291cmNlR3JvdXBzL0RvdE5ldEh1YlJHL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9Jb3RIdWJzL0RvdE5ldEh1Yi9za3VzP2FwaS12ZXJzaW9uPTIwMjEtMDMtMzE=", + "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5d08e409-8a69-421c-a3fa-fb6e73662838" + "76fc3116-7488-4738-9d47-856cb94aa9df" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.0.0.0" ] }, "ResponseHeaders": { @@ -3298,17 +2576,17 @@ "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11987" ], "x-ms-request-id": [ - "52eaeda6-51a4-4866-a16a-78948fb0e56e" + "ecc701ee-e066-4e5d-a0ed-b10e11378016" ], "x-ms-correlation-request-id": [ - "52eaeda6-51a4-4866-a16a-78948fb0e56e" + "ecc701ee-e066-4e5d-a0ed-b10e11378016" ], "x-ms-routing-request-id": [ - "WESTUS2:20210219T192309Z:52eaeda6-51a4-4866-a16a-78948fb0e56e" + "WESTUS2:20210514T173740Z:ecc701ee-e066-4e5d-a0ed-b10e11378016" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3317,35 +2595,38 @@ "nosniff" ], "Date": [ - "Fri, 19 Feb 2021 19:23:08 GMT" + "Fri, 14 May 2021 17:37:39 GMT" + ], + "Content-Length": [ + "475" + ], + "Content-Type": [ + "application/json; charset=utf-8" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, - "ResponseBody": "", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"resourceType\": \"Microsoft.Devices/IotHubs\",\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"capacity\": {\r\n \"minimum\": 1,\r\n \"maximum\": 200,\r\n \"default\": 1,\r\n \"scaleType\": \"Manual\"\r\n }\r\n },\r\n {\r\n \"resourceType\": \"Microsoft.Devices/IotHubs\",\r\n \"sku\": {\r\n \"name\": \"S2\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"capacity\": {\r\n \"minimum\": 1,\r\n \"maximum\": 200,\r\n \"default\": 1,\r\n \"scaleType\": \"Manual\"\r\n }\r\n },\r\n {\r\n \"resourceType\": \"Microsoft.Devices/IotHubs\",\r\n \"sku\": {\r\n \"name\": \"S3\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"capacity\": {\r\n \"minimum\": 1,\r\n \"maximum\": 10,\r\n \"default\": 1,\r\n \"scaleType\": \"Manual\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/providers/Microsoft.Devices/operations?api-version=2020-03-01", - "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMjAtMDMtMDE=", - "RequestMethod": "GET", + "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/DotNetHubRG/providers/Microsoft.Devices/IotHubs/DotNetHub/listkeys?api-version=2021-03-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Jlc291cmNlR3JvdXBzL0RvdE5ldEh1YlJHL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9Jb3RIdWJzL0RvdE5ldEh1Yi9saXN0a2V5cz9hcGktdmVyc2lvbj0yMDIxLTAzLTMx", + "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4681967c-9daf-4b31-8e25-f5b650fd7594" + "11827ae9-6642-486c-a280-b0b22dfefa52" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.0.0.0" ] }, "ResponseHeaders": { @@ -3358,17 +2639,17 @@ "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-tenant-reads": [ - "11999" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" ], "x-ms-request-id": [ - "0f6c063f-c85a-43dd-bd92-9cee3db2948d" + "b1d78d3a-df02-4249-92d3-70ffbf64efa7" ], "x-ms-correlation-request-id": [ - "0f6c063f-c85a-43dd-bd92-9cee3db2948d" + "b1d78d3a-df02-4249-92d3-70ffbf64efa7" ], "x-ms-routing-request-id": [ - "WESTUS2:20210219T192309Z:0f6c063f-c85a-43dd-bd92-9cee3db2948d" + "WESTUS2:20210514T173740Z:b1d78d3a-df02-4249-92d3-70ffbf64efa7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3377,10 +2658,10 @@ "nosniff" ], "Date": [ - "Fri, 19 Feb 2021 19:23:08 GMT" + "Fri, 14 May 2021 17:37:39 GMT" ], "Content-Length": [ - "92755" + "905" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3389,32 +2670,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"Microsoft.Devices/register/action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": \"IotHubs\",\r\n \"operation\": \"Register Resource Provider\",\r\n \"description\": \"Register the subscription for the IotHub resource provider and enables the creation of IotHub resources\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/IotHubs/diagnosticSettings/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": \"IotHubs\",\r\n \"operation\": \"Get Diagnostic Setting\",\r\n \"description\": \"Gets the diagnostic setting for the resource\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/IotHubs/diagnosticSettings/write\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": \"IotHubs\",\r\n \"operation\": \"Set Diagnostic Setting\",\r\n \"description\": \"Creates or updates the diagnostic setting for the resource\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/IotHubs/metricDefinitions/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": \"IotHubs\",\r\n \"operation\": \"Read IotHub service metric definitions\",\r\n \"description\": \"Gets the available metrics for the IotHub service\"\r\n },\r\n \"properties\": {\r\n \"serviceSpecification\": {\r\n \"metricSpecifications\": [\r\n {\r\n \"name\": \"d2c.telemetry.ingress.allProtocol\",\r\n \"displayName\": \"Telemetry message send attempts\",\r\n \"displayDescription\": \"Number of device-to-cloud telemetry messages attempted to be sent to your IoT hub\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"supportedAggregationTypes\": [\r\n \"Average\",\r\n \"Minimum\",\r\n \"Maximum\",\r\n \"Total\"\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"d2c.telemetry.ingress.success\",\r\n \"displayName\": \"Telemetry messages sent\",\r\n \"displayDescription\": \"Number of device-to-cloud telemetry messages sent successfully to your IoT hub\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"supportedAggregationTypes\": [\r\n \"Average\",\r\n \"Minimum\",\r\n \"Maximum\",\r\n \"Total\"\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"c2d.commands.egress.complete.success\",\r\n \"displayName\": \"C2D message deliveries completed\",\r\n \"displayDescription\": \"Number of cloud-to-device message deliveries completed successfully by the device\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"supportedAggregationTypes\": [\r\n \"Average\",\r\n \"Minimum\",\r\n \"Maximum\",\r\n \"Total\"\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"c2d.commands.egress.abandon.success\",\r\n \"displayName\": \"C2D messages abandoned\",\r\n \"displayDescription\": \"Number of cloud-to-device messages abandoned by the device\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"supportedAggregationTypes\": [\r\n \"Average\",\r\n \"Minimum\",\r\n \"Maximum\",\r\n \"Total\"\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"c2d.commands.egress.reject.success\",\r\n \"displayName\": \"C2D messages rejected\",\r\n \"displayDescription\": \"Number of cloud-to-device messages rejected by the device\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"supportedAggregationTypes\": [\r\n \"Average\",\r\n \"Minimum\",\r\n \"Maximum\",\r\n \"Total\"\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"C2DMessagesExpired\",\r\n \"displayName\": \"C2D Messages Expired\",\r\n \"displayDescription\": \"Number of expired cloud-to-device messages\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"supportedAggregationTypes\": [\r\n \"Average\",\r\n \"Minimum\",\r\n \"Maximum\",\r\n \"Total\"\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"devices.totalDevices\",\r\n \"displayName\": \"Total devices (deprecated)\",\r\n \"displayDescription\": \"Number of devices registered to your IoT hub\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"supportedAggregationTypes\": [\r\n \"Average\",\r\n \"Minimum\",\r\n \"Maximum\",\r\n \"Total\"\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"devices.connectedDevices.allProtocol\",\r\n \"displayName\": \"Connected devices (deprecated) \",\r\n \"displayDescription\": \"Number of devices connected to your IoT hub\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"supportedAggregationTypes\": [\r\n \"Average\",\r\n \"Minimum\",\r\n \"Maximum\",\r\n \"Total\"\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"d2c.telemetry.egress.success\",\r\n \"displayName\": \"Routing: telemetry messages delivered\",\r\n \"displayDescription\": \"The number of times messages were successfully delivered to all endpoints using IoT Hub routing. If a message is routed to multiple endpoints, this value increases by one for each successful delivery. If a message is delivered to the same endpoint multiple times, this value increases by one for each successful delivery.\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"supportedAggregationTypes\": [\r\n \"Average\",\r\n \"Minimum\",\r\n \"Maximum\",\r\n \"Total\"\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"d2c.telemetry.egress.dropped\",\r\n \"displayName\": \"Routing: telemetry messages dropped \",\r\n \"displayDescription\": \"The number of times messages were dropped by IoT Hub routing due to dead endpoints. This value does not count messages delivered to fallback route as dropped messages are not delivered there.\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"supportedAggregationTypes\": [\r\n \"Average\",\r\n \"Minimum\",\r\n \"Maximum\",\r\n \"Total\"\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"d2c.telemetry.egress.orphaned\",\r\n \"displayName\": \"Routing: telemetry messages orphaned \",\r\n \"displayDescription\": \"The number of times messages were orphaned by IoT Hub routing because they didn't match any routing rules (including the fallback rule). \",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"supportedAggregationTypes\": [\r\n \"Average\",\r\n \"Minimum\",\r\n \"Maximum\",\r\n \"Total\"\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"d2c.telemetry.egress.invalid\",\r\n \"displayName\": \"Routing: telemetry messages incompatible\",\r\n \"displayDescription\": \"The number of times IoT Hub routing failed to deliver messages due to an incompatibility with the endpoint. This value does not include retries.\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"supportedAggregationTypes\": [\r\n \"Average\",\r\n \"Minimum\",\r\n \"Maximum\",\r\n \"Total\"\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"d2c.telemetry.egress.fallback\",\r\n \"displayName\": \"Routing: messages delivered to fallback\",\r\n \"displayDescription\": \"The number of times IoT Hub routing delivered messages to the endpoint associated with the fallback route.\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"supportedAggregationTypes\": [\r\n \"Average\",\r\n \"Minimum\",\r\n \"Maximum\",\r\n \"Total\"\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"d2c.endpoints.egress.eventHubs\",\r\n \"displayName\": \"Routing: messages delivered to Event Hub\",\r\n \"displayDescription\": \"The number of times IoT Hub routing successfully delivered messages to Event Hub endpoints.\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"supportedAggregationTypes\": [\r\n \"Average\",\r\n \"Minimum\",\r\n \"Maximum\",\r\n \"Total\"\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"d2c.endpoints.latency.eventHubs\",\r\n \"displayName\": \"Routing: message latency for Event Hub\",\r\n \"displayDescription\": \"The average latency (milliseconds) between message ingress to IoT Hub and message ingress into an Event Hub endpoint.\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Milliseconds\",\r\n \"aggregationType\": \"Average\",\r\n \"supportedAggregationTypes\": [\r\n \"Average\",\r\n \"Minimum\",\r\n \"Maximum\"\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"d2c.endpoints.egress.serviceBusQueues\",\r\n \"displayName\": \"Routing: messages delivered to Service Bus Queue\",\r\n \"displayDescription\": \"The number of times IoT Hub routing successfully delivered messages to Service Bus queue endpoints.\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"supportedAggregationTypes\": [\r\n \"Average\",\r\n \"Minimum\",\r\n \"Maximum\",\r\n \"Total\"\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"d2c.endpoints.latency.serviceBusQueues\",\r\n \"displayName\": \"Routing: message latency for Service Bus Queue\",\r\n \"displayDescription\": \"The average latency (milliseconds) between message ingress to IoT Hub and telemetry message ingress into a Service Bus queue endpoint.\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Milliseconds\",\r\n \"aggregationType\": \"Average\",\r\n \"supportedAggregationTypes\": [\r\n \"Average\",\r\n \"Minimum\",\r\n \"Maximum\"\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"d2c.endpoints.egress.serviceBusTopics\",\r\n \"displayName\": \"Routing: messages delivered to Service Bus Topic\",\r\n \"displayDescription\": \"The number of times IoT Hub routing successfully delivered messages to Service Bus topic endpoints.\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"supportedAggregationTypes\": [\r\n \"Average\",\r\n \"Minimum\",\r\n \"Maximum\",\r\n \"Total\"\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"d2c.endpoints.latency.serviceBusTopics\",\r\n \"displayName\": \"Routing: message latency for Service Bus Topic\",\r\n \"displayDescription\": \"The average latency (milliseconds) between message ingress to IoT Hub and telemetry message ingress into a Service Bus topic endpoint.\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Milliseconds\",\r\n \"aggregationType\": \"Average\",\r\n \"supportedAggregationTypes\": [\r\n \"Average\",\r\n \"Minimum\",\r\n \"Maximum\"\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"d2c.endpoints.egress.builtIn.events\",\r\n \"displayName\": \"Routing: messages delivered to messages/events\",\r\n \"displayDescription\": \"The number of times IoT Hub routing successfully delivered messages to the built-in endpoint (messages/events).\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"supportedAggregationTypes\": [\r\n \"Average\",\r\n \"Minimum\",\r\n \"Maximum\",\r\n \"Total\"\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"d2c.endpoints.latency.builtIn.events\",\r\n \"displayName\": \"Routing: message latency for messages/events\",\r\n \"displayDescription\": \"The average latency (milliseconds) between message ingress to IoT Hub and telemetry message ingress into the built-in endpoint (messages/events).\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Milliseconds\",\r\n \"aggregationType\": \"Average\",\r\n \"supportedAggregationTypes\": [\r\n \"Average\",\r\n \"Minimum\",\r\n \"Maximum\"\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"d2c.endpoints.egress.storage\",\r\n \"displayName\": \"Routing: messages delivered to storage\",\r\n \"displayDescription\": \"The number of times IoT Hub routing successfully delivered messages to storage endpoints.\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"supportedAggregationTypes\": [\r\n \"Average\",\r\n \"Minimum\",\r\n \"Maximum\",\r\n \"Total\"\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"d2c.endpoints.latency.storage\",\r\n \"displayName\": \"Routing: message latency for storage\",\r\n \"displayDescription\": \"The average latency (milliseconds) between message ingress to IoT Hub and telemetry message ingress into a storage endpoint.\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Milliseconds\",\r\n \"aggregationType\": \"Average\",\r\n \"supportedAggregationTypes\": [\r\n \"Average\",\r\n \"Minimum\",\r\n \"Maximum\"\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"d2c.endpoints.egress.storage.bytes\",\r\n \"displayName\": \"Routing: data delivered to storage\",\r\n \"displayDescription\": \"The amount of data (bytes) IoT Hub routing delivered to storage endpoints.\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Bytes\",\r\n \"aggregationType\": \"Total\",\r\n \"supportedAggregationTypes\": [\r\n \"Average\",\r\n \"Minimum\",\r\n \"Maximum\",\r\n \"Total\"\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"d2c.endpoints.egress.storage.blobs\",\r\n \"displayName\": \"Routing: blobs delivered to storage\",\r\n \"displayDescription\": \"The number of times IoT Hub routing delivered blobs to storage endpoints.\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"supportedAggregationTypes\": [\r\n \"Average\",\r\n \"Minimum\",\r\n \"Maximum\",\r\n \"Total\"\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"EventGridDeliveries\",\r\n \"displayName\": \"Event Grid deliveries\",\r\n \"displayDescription\": \"The number of IoT Hub events published to Event Grid. Use the Result dimension for the number of successful and failed requests. EventType dimension shows the type of event (https://aka.ms/ioteventgrid).\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"supportedAggregationTypes\": [\r\n \"Average\",\r\n \"Minimum\",\r\n \"Maximum\",\r\n \"Total\"\r\n ],\r\n \"dimensions\": [\r\n {\r\n \"name\": \"Result\",\r\n \"displayName\": \"Routing Result\"\r\n },\r\n {\r\n \"name\": \"EventType\",\r\n \"displayName\": \"Event Type\"\r\n }\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"EventGridLatency\",\r\n \"displayName\": \"Event Grid latency\",\r\n \"displayDescription\": \"The average latency (milliseconds) from when the Iot Hub event was generated to when the event was published to Event Grid. This number is an average between all event types. Use the EventType dimension to see latency of a specific type of event.\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Milliseconds\",\r\n \"aggregationType\": \"Average\",\r\n \"supportedAggregationTypes\": [\r\n \"Average\",\r\n \"Minimum\",\r\n \"Maximum\"\r\n ],\r\n \"dimensions\": [\r\n {\r\n \"name\": \"EventType\",\r\n \"displayName\": \"Event Type\"\r\n }\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"RoutingDeliveries\",\r\n \"displayName\": \"Routing Deliveries (preview)\",\r\n \"displayDescription\": \"The number of times IoT Hub attempted to deliver messages to all endpoints using routing. To see the number of successful or failed attempts, use the Result dimension. To see the reason of failure, like invalid, dropped, or orphaned, use the FailureReasonCategory dimension. You can also use the EndpointName and EndpointType dimensions to understand how many messages were delivered to your different endpoints. The metric value increases by one for each delivery attempt, including if the message is delivered to multiple endpoints or if the message is delivered to the same endpoint multiple times.\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"supportedAggregationTypes\": [\r\n \"Average\",\r\n \"Minimum\",\r\n \"Maximum\",\r\n \"Total\"\r\n ],\r\n \"dimensions\": [\r\n {\r\n \"name\": \"EndpointType\",\r\n \"displayName\": \"Endpoint Type\"\r\n },\r\n {\r\n \"name\": \"EndpointName\",\r\n \"displayName\": \"Endpoint Name\"\r\n },\r\n {\r\n \"name\": \"FailureReasonCategory\",\r\n \"displayName\": \"Failure Reason Category\"\r\n },\r\n {\r\n \"name\": \"Result\",\r\n \"displayName\": \"Result\"\r\n },\r\n {\r\n \"name\": \"RoutingSource\",\r\n \"displayName\": \"Routing Source\"\r\n }\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"RoutingDeliveryLatency\",\r\n \"displayName\": \"Routing Delivery Latency (preview)\",\r\n \"displayDescription\": \"The average latency (milliseconds) between message ingress to IoT Hub and telemetry message ingress into an endpoint. You can use the EndpointName and EndpointType dimensions to understand the latency to your different endpoints.\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Milliseconds\",\r\n \"aggregationType\": \"Average\",\r\n \"supportedAggregationTypes\": [\r\n \"Average\",\r\n \"Minimum\",\r\n \"Maximum\"\r\n ],\r\n \"dimensions\": [\r\n {\r\n \"name\": \"EndpointType\",\r\n \"displayName\": \"Endpoint Type\"\r\n },\r\n {\r\n \"name\": \"EndpointName\",\r\n \"displayName\": \"Endpoint Name\"\r\n },\r\n {\r\n \"name\": \"RoutingSource\",\r\n \"displayName\": \"Routing Source\"\r\n }\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"RoutingDataSizeInBytesDelivered\",\r\n \"displayName\": \"Routing Delivery Message Size in Bytes (preview)\",\r\n \"displayDescription\": \"The total size in bytes of messages delivered by IoT hub to an endpoint. You can use the EndpointName and EndpointType dimensions to view the size of the messages in bytes delivered to your different endpoints. The metric value increases for every message delivered, including if the message is delivered to multiple endpoints or if the message is delivered to the same endpoint multiple times.\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Bytes\",\r\n \"aggregationType\": \"Total\",\r\n \"supportedAggregationTypes\": [\r\n \"Average\",\r\n \"Minimum\",\r\n \"Maximum\",\r\n \"Total\"\r\n ],\r\n \"dimensions\": [\r\n {\r\n \"name\": \"EndpointType\",\r\n \"displayName\": \"Endpoint Type\"\r\n },\r\n {\r\n \"name\": \"EndpointName\",\r\n \"displayName\": \"Endpoint Name\"\r\n },\r\n {\r\n \"name\": \"RoutingSource\",\r\n \"displayName\": \"Routing Source\"\r\n }\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"d2c.twin.read.success\",\r\n \"displayName\": \"Successful twin reads from devices\",\r\n \"displayDescription\": \"The count of all successful device-initiated twin reads.\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"supportedAggregationTypes\": [\r\n \"Average\",\r\n \"Minimum\",\r\n \"Maximum\",\r\n \"Total\"\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"d2c.twin.read.failure\",\r\n \"displayName\": \"Failed twin reads from devices\",\r\n \"displayDescription\": \"The count of all failed device-initiated twin reads.\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"supportedAggregationTypes\": [\r\n \"Average\",\r\n \"Minimum\",\r\n \"Maximum\",\r\n \"Total\"\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"d2c.twin.read.size\",\r\n \"displayName\": \"Response size of twin reads from devices\",\r\n \"displayDescription\": \"The average, min, and max of all successful device-initiated twin reads.\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Bytes\",\r\n \"aggregationType\": \"Average\",\r\n \"supportedAggregationTypes\": [\r\n \"Average\",\r\n \"Minimum\",\r\n \"Maximum\",\r\n \"Total\"\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"d2c.twin.update.success\",\r\n \"displayName\": \"Successful twin updates from devices\",\r\n \"displayDescription\": \"The count of all successful device-initiated twin updates.\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"supportedAggregationTypes\": [\r\n \"Average\",\r\n \"Minimum\",\r\n \"Maximum\",\r\n \"Total\"\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"d2c.twin.update.failure\",\r\n \"displayName\": \"Failed twin updates from devices\",\r\n \"displayDescription\": \"The count of all failed device-initiated twin updates.\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"supportedAggregationTypes\": [\r\n \"Average\",\r\n \"Minimum\",\r\n \"Maximum\",\r\n \"Total\"\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"d2c.twin.update.size\",\r\n \"displayName\": \"Size of twin updates from devices\",\r\n \"displayDescription\": \"The average, min, and max size of all successful device-initiated twin updates.\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Bytes\",\r\n \"aggregationType\": \"Average\",\r\n \"supportedAggregationTypes\": [\r\n \"Average\",\r\n \"Minimum\",\r\n \"Maximum\",\r\n \"Total\"\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"c2d.methods.success\",\r\n \"displayName\": \"Successful direct method invocations\",\r\n \"displayDescription\": \"The count of all successful direct method calls.\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"supportedAggregationTypes\": [\r\n \"Average\",\r\n \"Minimum\",\r\n \"Maximum\",\r\n \"Total\"\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"c2d.methods.failure\",\r\n \"displayName\": \"Failed direct method invocations\",\r\n \"displayDescription\": \"The count of all failed direct method calls.\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"supportedAggregationTypes\": [\r\n \"Average\",\r\n \"Minimum\",\r\n \"Maximum\",\r\n \"Total\"\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"c2d.methods.requestSize\",\r\n \"displayName\": \"Request size of direct method invocations\",\r\n \"displayDescription\": \"The average, min, and max of all successful direct method requests.\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Bytes\",\r\n \"aggregationType\": \"Average\",\r\n \"supportedAggregationTypes\": [\r\n \"Average\",\r\n \"Minimum\",\r\n \"Maximum\",\r\n \"Total\"\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"c2d.methods.responseSize\",\r\n \"displayName\": \"Response size of direct method invocations\",\r\n \"displayDescription\": \"The average, min, and max of all successful direct method responses.\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Bytes\",\r\n \"aggregationType\": \"Average\",\r\n \"supportedAggregationTypes\": [\r\n \"Average\",\r\n \"Minimum\",\r\n \"Maximum\",\r\n \"Total\"\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"c2d.twin.read.success\",\r\n \"displayName\": \"Successful twin reads from back end\",\r\n \"displayDescription\": \"The count of all successful back-end-initiated twin reads.\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"supportedAggregationTypes\": [\r\n \"Average\",\r\n \"Minimum\",\r\n \"Maximum\",\r\n \"Total\"\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"c2d.twin.read.failure\",\r\n \"displayName\": \"Failed twin reads from back end\",\r\n \"displayDescription\": \"The count of all failed back-end-initiated twin reads.\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"supportedAggregationTypes\": [\r\n \"Average\",\r\n \"Minimum\",\r\n \"Maximum\",\r\n \"Total\"\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"c2d.twin.read.size\",\r\n \"displayName\": \"Response size of twin reads from back end\",\r\n \"displayDescription\": \"The average, min, and max of all successful back-end-initiated twin reads.\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Bytes\",\r\n \"aggregationType\": \"Average\",\r\n \"supportedAggregationTypes\": [\r\n \"Average\",\r\n \"Minimum\",\r\n \"Maximum\",\r\n \"Total\"\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"c2d.twin.update.success\",\r\n \"displayName\": \"Successful twin updates from back end\",\r\n \"displayDescription\": \"The count of all successful back-end-initiated twin updates.\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"supportedAggregationTypes\": [\r\n \"Average\",\r\n \"Minimum\",\r\n \"Maximum\",\r\n \"Total\"\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"c2d.twin.update.failure\",\r\n \"displayName\": \"Failed twin updates from back end\",\r\n \"displayDescription\": \"The count of all failed back-end-initiated twin updates.\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"supportedAggregationTypes\": [\r\n \"Average\",\r\n \"Minimum\",\r\n \"Maximum\",\r\n \"Total\"\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"c2d.twin.update.size\",\r\n \"displayName\": \"Size of twin updates from back end\",\r\n \"displayDescription\": \"The average, min, and max size of all successful back-end-initiated twin updates.\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Bytes\",\r\n \"aggregationType\": \"Average\",\r\n \"supportedAggregationTypes\": [\r\n \"Average\",\r\n \"Minimum\",\r\n \"Maximum\",\r\n \"Total\"\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"twinQueries.success\",\r\n \"displayName\": \"Successful twin queries\",\r\n \"displayDescription\": \"The count of all successful twin queries.\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"supportedAggregationTypes\": [\r\n \"Average\",\r\n \"Minimum\",\r\n \"Maximum\",\r\n \"Total\"\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"twinQueries.failure\",\r\n \"displayName\": \"Failed twin queries\",\r\n \"displayDescription\": \"The count of all failed twin queries.\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"supportedAggregationTypes\": [\r\n \"Average\",\r\n \"Minimum\",\r\n \"Maximum\",\r\n \"Total\"\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"twinQueries.resultSize\",\r\n \"displayName\": \"Twin queries result size\",\r\n \"displayDescription\": \"The average, min, and max of the result size of all successful twin queries.\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Bytes\",\r\n \"aggregationType\": \"Average\",\r\n \"supportedAggregationTypes\": [\r\n \"Average\",\r\n \"Minimum\",\r\n \"Maximum\",\r\n \"Total\"\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"jobs.createTwinUpdateJob.success\",\r\n \"displayName\": \"Successful creations of twin update jobs\",\r\n \"displayDescription\": \"The count of all successful creation of twin update jobs.\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"supportedAggregationTypes\": [\r\n \"Average\",\r\n \"Minimum\",\r\n \"Maximum\",\r\n \"Total\"\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"jobs.createTwinUpdateJob.failure\",\r\n \"displayName\": \"Failed creations of twin update jobs\",\r\n \"displayDescription\": \"The count of all failed creation of twin update jobs.\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"supportedAggregationTypes\": [\r\n \"Average\",\r\n \"Minimum\",\r\n \"Maximum\",\r\n \"Total\"\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"jobs.createDirectMethodJob.success\",\r\n \"displayName\": \"Successful creations of method invocation jobs\",\r\n \"displayDescription\": \"The count of all successful creation of direct method invocation jobs.\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"supportedAggregationTypes\": [\r\n \"Average\",\r\n \"Minimum\",\r\n \"Maximum\",\r\n \"Total\"\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"jobs.createDirectMethodJob.failure\",\r\n \"displayName\": \"Failed creations of method invocation jobs\",\r\n \"displayDescription\": \"The count of all failed creation of direct method invocation jobs.\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"supportedAggregationTypes\": [\r\n \"Average\",\r\n \"Minimum\",\r\n \"Maximum\",\r\n \"Total\"\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"jobs.listJobs.success\",\r\n \"displayName\": \"Successful calls to list jobs\",\r\n \"displayDescription\": \"The count of all successful calls to list jobs.\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"supportedAggregationTypes\": [\r\n \"Average\",\r\n \"Minimum\",\r\n \"Maximum\",\r\n \"Total\"\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"jobs.listJobs.failure\",\r\n \"displayName\": \"Failed calls to list jobs\",\r\n \"displayDescription\": \"The count of all failed calls to list jobs.\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"supportedAggregationTypes\": [\r\n \"Average\",\r\n \"Minimum\",\r\n \"Maximum\",\r\n \"Total\"\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"jobs.cancelJob.success\",\r\n \"displayName\": \"Successful job cancellations\",\r\n \"displayDescription\": \"The count of all successful calls to cancel a job.\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"supportedAggregationTypes\": [\r\n \"Average\",\r\n \"Minimum\",\r\n \"Maximum\",\r\n \"Total\"\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"jobs.cancelJob.failure\",\r\n \"displayName\": \"Failed job cancellations\",\r\n \"displayDescription\": \"The count of all failed calls to cancel a job.\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"supportedAggregationTypes\": [\r\n \"Average\",\r\n \"Minimum\",\r\n \"Maximum\",\r\n \"Total\"\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"jobs.queryJobs.success\",\r\n \"displayName\": \"Successful job queries\",\r\n \"displayDescription\": \"The count of all successful calls to query jobs.\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"supportedAggregationTypes\": [\r\n \"Average\",\r\n \"Minimum\",\r\n \"Maximum\",\r\n \"Total\"\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"jobs.queryJobs.failure\",\r\n \"displayName\": \"Failed job queries\",\r\n \"displayDescription\": \"The count of all failed calls to query jobs.\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"supportedAggregationTypes\": [\r\n \"Average\",\r\n \"Minimum\",\r\n \"Maximum\",\r\n \"Total\"\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"jobs.completed\",\r\n \"displayName\": \"Completed jobs\",\r\n \"displayDescription\": \"The count of all completed jobs.\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"supportedAggregationTypes\": [\r\n \"Average\",\r\n \"Minimum\",\r\n \"Maximum\",\r\n \"Total\"\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"jobs.failed\",\r\n \"displayName\": \"Failed jobs\",\r\n \"displayDescription\": \"The count of all failed jobs.\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"supportedAggregationTypes\": [\r\n \"Average\",\r\n \"Minimum\",\r\n \"Maximum\",\r\n \"Total\"\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"d2c.telemetry.ingress.sendThrottle\",\r\n \"displayName\": \"Number of throttling errors\",\r\n \"displayDescription\": \"Number of throttling errors due to device throughput throttles\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"supportedAggregationTypes\": [\r\n \"Average\",\r\n \"Minimum\",\r\n \"Maximum\",\r\n \"Total\"\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"dailyMessageQuotaUsed\",\r\n \"displayName\": \"Total number of messages used\",\r\n \"displayDescription\": \"Number of total messages used today\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Maximum\",\r\n \"supportedAggregationTypes\": [\r\n \"Average\",\r\n \"Minimum\",\r\n \"Maximum\"\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"deviceDataUsage\",\r\n \"displayName\": \"Total device data usage\",\r\n \"displayDescription\": \"Bytes transferred to and from any devices connected to IotHub\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Bytes\",\r\n \"aggregationType\": \"Total\",\r\n \"supportedAggregationTypes\": [\r\n \"Average\",\r\n \"Minimum\",\r\n \"Maximum\",\r\n \"Total\"\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"deviceDataUsageV2\",\r\n \"displayName\": \"Total device data usage (preview)\",\r\n \"displayDescription\": \"Bytes transferred to and from any devices connected to IotHub\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Bytes\",\r\n \"aggregationType\": \"Total\",\r\n \"supportedAggregationTypes\": [\r\n \"Average\",\r\n \"Minimum\",\r\n \"Maximum\",\r\n \"Total\"\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"totalDeviceCount\",\r\n \"displayName\": \"Total devices\",\r\n \"displayDescription\": \"Number of devices registered to your IoT hub\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Average\",\r\n \"supportedAggregationTypes\": [\r\n \"Average\",\r\n \"Maximum\",\r\n \"Minimum\"\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ],\r\n \"lockAggregationType\": \"Total\"\r\n },\r\n {\r\n \"name\": \"connectedDeviceCount\",\r\n \"displayName\": \"Connected devices\",\r\n \"displayDescription\": \"Number of devices connected to your IoT hub\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Average\",\r\n \"supportedAggregationTypes\": [\r\n \"Average\",\r\n \"Maximum\",\r\n \"Minimum\"\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ],\r\n \"lockAggregationType\": \"Total\"\r\n },\r\n {\r\n \"name\": \"configurations\",\r\n \"displayName\": \"Configuration Metrics\",\r\n \"displayDescription\": \"Metrics for Configuration Operations\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"supportedAggregationTypes\": [\r\n \"Average\",\r\n \"Minimum\",\r\n \"Maximum\",\r\n \"Total\"\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/IotHubs/logDefinitions/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": \"IotHubs\",\r\n \"operation\": \"Read IotHub service log definitions\",\r\n \"description\": \"Gets the available log definitions for the IotHub Service\"\r\n },\r\n \"properties\": {\r\n \"serviceSpecification\": {\r\n \"logSpecifications\": [\r\n {\r\n \"name\": \"Connections\",\r\n \"displayName\": \"Connections\",\r\n \"blobDuration\": \"PT1H\"\r\n },\r\n {\r\n \"name\": \"DeviceTelemetry\",\r\n \"displayName\": \"Device Telemetry\",\r\n \"blobDuration\": \"PT1H\"\r\n },\r\n {\r\n \"name\": \"C2DCommands\",\r\n \"displayName\": \"C2D Commands\",\r\n \"blobDuration\": \"PT1H\"\r\n },\r\n {\r\n \"name\": \"DeviceIdentityOperations\",\r\n \"displayName\": \"Device Identity Operations\",\r\n \"blobDuration\": \"PT1H\"\r\n },\r\n {\r\n \"name\": \"FileUploadOperations\",\r\n \"displayName\": \"File Upload Operations\",\r\n \"blobDuration\": \"PT1H\"\r\n },\r\n {\r\n \"name\": \"Routes\",\r\n \"displayName\": \"Routes\",\r\n \"blobDuration\": \"PT1H\"\r\n },\r\n {\r\n \"name\": \"D2CTwinOperations\",\r\n \"displayName\": \"D2CTwinOperations\",\r\n \"blobDuration\": \"PT1H\"\r\n },\r\n {\r\n \"name\": \"C2DTwinOperations\",\r\n \"displayName\": \"C2D Twin Operations\",\r\n \"blobDuration\": \"PT1H\"\r\n },\r\n {\r\n \"name\": \"TwinQueries\",\r\n \"displayName\": \"Twin Queries\",\r\n \"blobDuration\": \"PT1H\"\r\n },\r\n {\r\n \"name\": \"JobsOperations\",\r\n \"displayName\": \"Jobs Operations\",\r\n \"blobDuration\": \"PT1H\"\r\n },\r\n {\r\n \"name\": \"DirectMethods\",\r\n \"displayName\": \"Direct Methods\",\r\n \"blobDuration\": \"PT1H\"\r\n },\r\n {\r\n \"name\": \"DistributedTracing\",\r\n \"displayName\": \"Distributed Tracing (Preview)\",\r\n \"blobDuration\": \"PT1H\"\r\n },\r\n {\r\n \"name\": \"Configurations\",\r\n \"displayName\": \"Configurations\",\r\n \"blobDuration\": \"PT1H\"\r\n },\r\n {\r\n \"name\": \"DeviceStreams\",\r\n \"displayName\": \"Device Streams (Preview)\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/iotHubs/Read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": null,\r\n \"operation\": \"Get IotHub(s)\",\r\n \"description\": \"Gets the IotHub resource(s)\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/iotHubs/Write\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": null,\r\n \"operation\": \"Create or update IotHub Resource\",\r\n \"description\": \"Create or update IotHub Resource\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/iotHubs/Delete\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": null,\r\n \"operation\": \"Delete IotHub Resource\",\r\n \"description\": \"Delete IotHub Resource\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/iotHubs/operationresults/Read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": null,\r\n \"operation\": \"Get Operation Result (Obsolete API)\",\r\n \"description\": \"Get Operation Result (Obsolete API)\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/iotHubs/iotHubStats/Read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": null,\r\n \"operation\": \"Get IotHub Statistics\",\r\n \"description\": \"Get IotHub Statistics\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/iotHubs/skus/Read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": null,\r\n \"operation\": \"Get valid IotHub Skus\",\r\n \"description\": \"Get valid IotHub Skus\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/iotHubs/listkeys/Action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": null,\r\n \"operation\": \"Get all IotHub Keys\",\r\n \"description\": \"Get all IotHub Keys\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/iotHubs/iotHubKeys/listkeys/Action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": null,\r\n \"operation\": \"Get IotHub Key for the given name\",\r\n \"description\": \"Get IotHub Key for the given name\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/iotHubs/eventHubEndpoints/consumerGroups/Write\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": null,\r\n \"operation\": \"Create EventHub Consumer Group\",\r\n \"description\": \"Create EventHub Consumer Group\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/iotHubs/eventHubEndpoints/consumerGroups/Read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": null,\r\n \"operation\": \"Get EventHub Consumer Group(s)\",\r\n \"description\": \"Get EventHub Consumer Group(s)\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/iotHubs/eventHubEndpoints/consumerGroups/Delete\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": null,\r\n \"operation\": \"Delete EventHub Consumer Group\",\r\n \"description\": \"Delete EventHub Consumer Group\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/iotHubs/exportDevices/Action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": null,\r\n \"operation\": \"Export Devices\",\r\n \"description\": \"Export Devices\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/iotHubs/importDevices/Action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": null,\r\n \"operation\": \"Import Devices\",\r\n \"description\": \"Import Devices\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/iotHubs/jobs/Read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": null,\r\n \"operation\": \"Get the Job(s) on IotHub\",\r\n \"description\": \"Get Job(s) details submitted on given IotHub\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/iotHubs/quotaMetrics/Read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": null,\r\n \"operation\": \"Get Quota Metrics\",\r\n \"description\": \"Get Quota Metrics\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/iotHubs/routing/$testall/Action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": null,\r\n \"operation\": \"Routing Rule Test All\",\r\n \"description\": \"Test a message against all existing Routes\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/iotHubs/routing/$testnew/Action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": null,\r\n \"operation\": \"Routing Rule Test Route\",\r\n \"description\": \"Test a message against a provided test Route\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/iotHubs/routingEndpointsHealth/Read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": null,\r\n \"operation\": \"Get Endpoint Health\",\r\n \"description\": \"Gets the health of all routing Endpoints for an IotHub\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/operations/Read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": null,\r\n \"operation\": \"Get All ResourceProvider Operations\",\r\n \"description\": \"Get All ResourceProvider Operations\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/checkNameAvailability/Action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": null,\r\n \"operation\": \"Check If IotHub name is available\",\r\n \"description\": \"Check If IotHub name is available\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/checkProvisioningServiceNameAvailability/Action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": null,\r\n \"operation\": \"Check If Provisioning Service name is available\",\r\n \"description\": \"Check If Provisioning service name is available\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/usages/Read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": null,\r\n \"operation\": \"Get Subscription Usages\",\r\n \"description\": \"Get subscription usage details for this provider.\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/operationresults/Read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": null,\r\n \"operation\": \"Get Operation Result\",\r\n \"description\": \"Get Operation Result\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/locations/operationresults/Read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": null,\r\n \"operation\": \"Get Location based Operation Result\",\r\n \"description\": \"Get Location based Operation Result\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/iotHubs/certificates/Read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": null,\r\n \"operation\": \"Gets the Certificate\",\r\n \"description\": \"Gets the Certificate\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/iotHubs/certificates/Write\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": null,\r\n \"operation\": \"Create or Update Certificate\",\r\n \"description\": \"Create or Update Certificate\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/iotHubs/certificates/Delete\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": null,\r\n \"operation\": \"Deletes Certificate\",\r\n \"description\": \"Deletes Certificate\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/iotHubs/certificates/generateVerificationCode/Action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": null,\r\n \"operation\": \"Generate Verification code\",\r\n \"description\": \"Generate Verification code\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/iotHubs/certificates/verify/Action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": null,\r\n \"operation\": \"Verify Certificate resource\",\r\n \"description\": \"Verify Certificate resource\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/provisioningServices/Read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": null,\r\n \"operation\": \"Get IotDps resource\",\r\n \"description\": \"Get IotDps resource\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/provisioningServices/Write\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": null,\r\n \"operation\": \"Create IotDps resource\",\r\n \"description\": \"Create IotDps resource\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/provisioningServices/Delete\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": null,\r\n \"operation\": \"Delete IotDps resource\",\r\n \"description\": \"Delete IotDps resource\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/provisioningServices/operationresults/Read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": null,\r\n \"operation\": \"Get DPS Operation Result\",\r\n \"description\": \"Get DPS Operation Result\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/provisioningServices/skus/Read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": null,\r\n \"operation\": \"Get valid IotDps Skus\",\r\n \"description\": \"Get valid IotDps Skus\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/provisioningServices/listkeys/Action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": null,\r\n \"operation\": \"Get all IotDps keys\",\r\n \"description\": \"Get all IotDps keys\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/provisioningServices/keys/listkeys/Action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": null,\r\n \"operation\": \"Get IotDps Keys for key name\",\r\n \"description\": \"Get IotDps Keys for key name\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/provisioningServices/certificates/Read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": null,\r\n \"operation\": \"Gets the Certificate\",\r\n \"description\": \"Gets the Certificate\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/provisioningServices/certificates/Write\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": null,\r\n \"operation\": \"Create or Update Certificate\",\r\n \"description\": \"Create or Update Certificate\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/provisioningServices/certificates/Delete\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": null,\r\n \"operation\": \"Deletes Certificate\",\r\n \"description\": \"Deletes Certificate\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/provisioningServices/certificates/generateVerificationCode/Action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": null,\r\n \"operation\": \"Generate Verification code\",\r\n \"description\": \"Generate Verification code\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/provisioningServices/certificates/verify/Action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": null,\r\n \"operation\": \"Verify Certificate resource\",\r\n \"description\": \"Verify Certificate resource\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/provisioningServices/diagnosticSettings/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": \"provisioningServices\",\r\n \"operation\": \"Get Diagnostic Setting\",\r\n \"description\": \"Gets the diagnostic setting for the resource\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/provisioningServices/diagnosticSettings/write\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": \"provisioningServices\",\r\n \"operation\": \"Set Diagnostic Setting\",\r\n \"description\": \"Creates or updates the diagnostic setting for the resource\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/provisioningServices/metricDefinitions/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": \"provisioningServices\",\r\n \"operation\": \"Read provisioning service metric definitions\",\r\n \"description\": \"Gets the available metrics for the provisioning service\"\r\n },\r\n \"properties\": {\r\n \"serviceSpecification\": {\r\n \"metricSpecifications\": [\r\n {\r\n \"name\": \"RegistrationAttempts\",\r\n \"displayName\": \"Registration attempts\",\r\n \"displayDescription\": \"Number of device registrations attempted\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"dimensions\": [\r\n {\r\n \"name\": \"ProvisioningServiceName\",\r\n \"displayName\": \"Provisioning service name\"\r\n },\r\n {\r\n \"name\": \"IotHubName\",\r\n \"displayName\": \"IoT hub name\"\r\n },\r\n {\r\n \"name\": \"Status\",\r\n \"displayName\": \"Status\",\r\n \"toBeExportedForShoebox\": true\r\n }\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"DeviceAssignments\",\r\n \"displayName\": \"Devices assigned\",\r\n \"displayDescription\": \"Number of devices assigned to an IoT hub\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"dimensions\": [\r\n {\r\n \"name\": \"ProvisioningServiceName\",\r\n \"displayName\": \"Provisioning service name\"\r\n },\r\n {\r\n \"name\": \"IotHubName\",\r\n \"displayName\": \"IoT hub name\"\r\n }\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"AttestationAttempts\",\r\n \"displayName\": \"Attestation attempts\",\r\n \"displayDescription\": \"Number of device attestations attempted\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"dimensions\": [\r\n {\r\n \"name\": \"ProvisioningServiceName\",\r\n \"displayName\": \"Provisioning service name\"\r\n },\r\n {\r\n \"name\": \"Status\",\r\n \"displayName\": \"Status\",\r\n \"toBeExportedForShoebox\": true\r\n },\r\n {\r\n \"name\": \"Protocol\",\r\n \"displayName\": \"Protocol\"\r\n }\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/provisioningServices/logDefinitions/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": \"provisioningServices\",\r\n \"operation\": \"Read provisioning service log definitions\",\r\n \"description\": \"Gets the available log definitions for the provisioning Service\"\r\n },\r\n \"properties\": {\r\n \"serviceSpecification\": {\r\n \"logSpecifications\": [\r\n {\r\n \"name\": \"DeviceOperations\",\r\n \"displayName\": \"Device Operations\",\r\n \"blobDuration\": \"PT1H\"\r\n },\r\n {\r\n \"name\": \"ServiceOperations\",\r\n \"displayName\": \"Service Operations\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/register/action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": \"Account\",\r\n \"operation\": \"Register Resource Provider\",\r\n \"description\": \"Register the subscription for the IotHub resource provider and enables the creation of IotHub resources\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/Account/diagnosticSettings/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": \"Account\",\r\n \"operation\": \"Get Diagnostic Setting\",\r\n \"description\": \"Gets the diagnostic setting for the resource\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/Account/diagnosticSettings/write\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": \"Account\",\r\n \"operation\": \"Set Diagnostic Setting\",\r\n \"description\": \"Creates or updates the diagnostic setting for the resource\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/Account/metricDefinitions/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": \"Account\",\r\n \"operation\": \"Read IotHub service metric definitions\",\r\n \"description\": \"Gets the available metrics for the IotHub service\"\r\n },\r\n \"properties\": {\r\n \"serviceSpecification\": {\r\n \"metricSpecifications\": [\r\n {\r\n \"name\": \"digitaltwins.telemetry.nodes\",\r\n \"displayName\": \"Digital Twins Node Telemetry Placeholder\",\r\n \"displayDescription\": \"Digital Twins Node Telemetry Placeholder\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"supportedAggregationTypes\": [\r\n \"Average\",\r\n \"Minimum\",\r\n \"Maximum\",\r\n \"Total\"\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/Account/logDefinitions/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": \"Account\",\r\n \"operation\": \"Read IotHub service log definitions\",\r\n \"description\": \"Gets the available log definitions for the IotHub Service\"\r\n },\r\n \"properties\": {\r\n \"serviceSpecification\": {\r\n \"logSpecifications\": [\r\n {\r\n \"name\": \"TwinQueries\",\r\n \"displayName\": \"Twin Queries\",\r\n \"blobDuration\": \"PT1H\"\r\n },\r\n {\r\n \"name\": \"DistributedTracing\",\r\n \"displayName\": \"Distributed Tracing (Preview)\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/operations/Read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": null,\r\n \"operation\": \"Get All ResourceProvider Operations\",\r\n \"description\": \"Get All ResourceProvider Operations\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/checkNameAvailability/Action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": null,\r\n \"operation\": \"Check If IotHub name is available\",\r\n \"description\": \"Check If IotHub name is available\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/checkProvisioningServiceNameAvailability/Action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": null,\r\n \"operation\": \"Check If Provisioning Service name is available\",\r\n \"description\": \"Check If Provisioning service name is available\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/usages/Read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": null,\r\n \"operation\": \"Get Subscription Usages\",\r\n \"description\": \"Get subscription usage details for this provider.\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/operationresults/Read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": null,\r\n \"operation\": \"Get Operation Result\",\r\n \"description\": \"Get Operation Result\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/locations/operationresults/Read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": null,\r\n \"operation\": \"Get Location based Operation Result\",\r\n \"description\": \"Get Location based Operation Result\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/iotHubs/certificates/Read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": null,\r\n \"operation\": \"Gets the Certificate\",\r\n \"description\": \"Gets the Certificate\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/iotHubs/certificates/Write\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": null,\r\n \"operation\": \"Create or Update Certificate\",\r\n \"description\": \"Create or Update Certificate\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/iotHubs/certificates/Delete\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": null,\r\n \"operation\": \"Deletes Certificate\",\r\n \"description\": \"Deletes Certificate\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/iotHubs/certificates/generateVerificationCode/Action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": null,\r\n \"operation\": \"Generate Verification code\",\r\n \"description\": \"Generate Verification code\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/iotHubs/certificates/verify/Action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": null,\r\n \"operation\": \"Verify Certificate resource\",\r\n \"description\": \"Verify Certificate resource\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/digitalTwins/Read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": null,\r\n \"operation\": \"Get Digital Twins Accounts\",\r\n \"description\": \"Gets a list of the Digital Twins Accounts associated to an subscription\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/digitalTwins/Write\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": null,\r\n \"operation\": \"Create a new Digital Twins Account\",\r\n \"description\": \"Create a new Digitial Twins Account\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/digitalTwins/Delete\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": null,\r\n \"operation\": \"Delete an existing Digital Twins Account\",\r\n \"description\": \"Delete an existing Digital Twins Account and all of its children\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/digitalTwins/operationresults/Read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": null,\r\n \"operation\": \"Get the status of an operation against a Digital Twins Account\",\r\n \"description\": \"Get the status of an operation against a Digital Twins Account\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/digitalTwins/skus/Read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": null,\r\n \"operation\": \"Get Digital Twins Account SKUs\",\r\n \"description\": \"Get a list of the valid SKUs for Digital Twins Accounts\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/ElasticPools/diagnosticSettings/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": \"ElasticPools\",\r\n \"operation\": \"Get Diagnostic Setting\",\r\n \"description\": \"Gets the diagnostic setting for the resource\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/ElasticPools/diagnosticSettings/write\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": \"ElasticPools\",\r\n \"operation\": \"Set Diagnostic Setting\",\r\n \"description\": \"Creates or updates the diagnostic setting for the resource\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/ElasticPools/metricDefinitions/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": \"ElasticPools\",\r\n \"operation\": \"Read IotHub service metric definitions\",\r\n \"description\": \"Gets the available metrics for the IotHub service\"\r\n },\r\n \"properties\": {\r\n \"serviceSpecification\": {\r\n \"metricSpecifications\": [\r\n {\r\n \"name\": \"elasticPool.requestedUsageRate\",\r\n \"displayName\": \"requested usage rate\",\r\n \"displayDescription\": \"requested usage rate\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Percent\",\r\n \"aggregationType\": \"Average\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/register/action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": \"IotHubTenants\",\r\n \"operation\": \"Register Resource Provider\",\r\n \"description\": \"Register the subscription for the IotHub resource provider and enables the creation of IotHub resources\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/ElasticPools/IotHubTenants/diagnosticSettings/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": \"IotHubTenants\",\r\n \"operation\": \"Get Diagnostic Setting\",\r\n \"description\": \"Gets the diagnostic setting for the resource\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/ElasticPools/IotHubTenants/diagnosticSettings/write\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": \"IotHubTenants\",\r\n \"operation\": \"Set Diagnostic Setting\",\r\n \"description\": \"Creates or updates the diagnostic setting for the resource\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/ElasticPools/IotHubTenants/metricDefinitions/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": \"IotHubTenants\",\r\n \"operation\": \"Read IotHub service metric definitions\",\r\n \"description\": \"Gets the available metrics for the IotHub service\"\r\n },\r\n \"properties\": {\r\n \"serviceSpecification\": {\r\n \"metricSpecifications\": [\r\n {\r\n \"name\": \"tenantHub.requestedUsageRate\",\r\n \"displayName\": \"requested usage rate\",\r\n \"displayDescription\": \"requested usage rate\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Percent\",\r\n \"aggregationType\": \"Average\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"d2c.telemetry.ingress.allProtocol\",\r\n \"displayName\": \"Telemetry message send attempts\",\r\n \"displayDescription\": \"Number of device-to-cloud telemetry messages attempted to be sent to your IoT hub\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"d2c.telemetry.ingress.success\",\r\n \"displayName\": \"Telemetry messages sent\",\r\n \"displayDescription\": \"Number of device-to-cloud telemetry messages sent successfully to your IoT hub\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"c2d.commands.egress.complete.success\",\r\n \"displayName\": \"C2D message deliveries completed\",\r\n \"displayDescription\": \"Number of cloud-to-device message deliveries completed successfully by the device\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"c2d.commands.egress.abandon.success\",\r\n \"displayName\": \"C2D messages abandoned\",\r\n \"displayDescription\": \"Number of cloud-to-device messages abandoned by the device\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"c2d.commands.egress.reject.success\",\r\n \"displayName\": \"C2D messages rejected\",\r\n \"displayDescription\": \"Number of cloud-to-device messages rejected by the device\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"C2DMessagesExpired\",\r\n \"displayName\": \"C2D Messages Expired\",\r\n \"displayDescription\": \"Number of expired cloud-to-device messages\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"devices.totalDevices\",\r\n \"displayName\": \"Total devices (deprecated)\",\r\n \"displayDescription\": \"Number of devices registered to your IoT hub\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"devices.connectedDevices.allProtocol\",\r\n \"displayName\": \"Connected devices (deprecated) \",\r\n \"displayDescription\": \"Number of devices connected to your IoT hub\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"d2c.telemetry.egress.success\",\r\n \"displayName\": \"Routing: telemetry messages delivered\",\r\n \"displayDescription\": \"The number of times messages were successfully delivered to all endpoints using IoT Hub routing. If a message is routed to multiple endpoints, this value increases by one for each successful delivery. If a message is delivered to the same endpoint multiple times, this value increases by one for each successful delivery.\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"d2c.telemetry.egress.dropped\",\r\n \"displayName\": \"Routing: telemetry messages dropped \",\r\n \"displayDescription\": \"The number of times messages were dropped by IoT Hub routing due to dead endpoints. This value does not count messages delivered to fallback route as dropped messages are not delivered there.\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"d2c.telemetry.egress.orphaned\",\r\n \"displayName\": \"Routing: telemetry messages orphaned \",\r\n \"displayDescription\": \"The number of times messages were orphaned by IoT Hub routing because they didn't match any routing rules (including the fallback rule). \",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"d2c.telemetry.egress.invalid\",\r\n \"displayName\": \"Routing: telemetry messages incompatible\",\r\n \"displayDescription\": \"The number of times IoT Hub routing failed to deliver messages due to an incompatibility with the endpoint. This value does not include retries.\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"d2c.telemetry.egress.fallback\",\r\n \"displayName\": \"Routing: messages delivered to fallback\",\r\n \"displayDescription\": \"The number of times IoT Hub routing delivered messages to the endpoint associated with the fallback route.\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"d2c.endpoints.egress.eventHubs\",\r\n \"displayName\": \"Routing: messages delivered to Event Hub\",\r\n \"displayDescription\": \"The number of times IoT Hub routing successfully delivered messages to Event Hub endpoints.\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"d2c.endpoints.latency.eventHubs\",\r\n \"displayName\": \"Routing: message latency for Event Hub\",\r\n \"displayDescription\": \"The average latency (milliseconds) between message ingress to IoT Hub and message ingress into an Event Hub endpoint.\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Milliseconds\",\r\n \"aggregationType\": \"Average\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"d2c.endpoints.egress.serviceBusQueues\",\r\n \"displayName\": \"Routing: messages delivered to Service Bus Queue\",\r\n \"displayDescription\": \"The number of times IoT Hub routing successfully delivered messages to Service Bus queue endpoints.\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"d2c.endpoints.latency.serviceBusQueues\",\r\n \"displayName\": \"Routing: message latency for Service Bus Queue\",\r\n \"displayDescription\": \"The average latency (milliseconds) between message ingress to IoT Hub and telemetry message ingress into a Service Bus queue endpoint.\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Milliseconds\",\r\n \"aggregationType\": \"Average\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"d2c.endpoints.egress.serviceBusTopics\",\r\n \"displayName\": \"Routing: messages delivered to Service Bus Topic\",\r\n \"displayDescription\": \"The number of times IoT Hub routing successfully delivered messages to Service Bus topic endpoints.\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"d2c.endpoints.latency.serviceBusTopics\",\r\n \"displayName\": \"Routing: message latency for Service Bus Topic\",\r\n \"displayDescription\": \"The average latency (milliseconds) between message ingress to IoT Hub and telemetry message ingress into a Service Bus topic endpoint.\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Milliseconds\",\r\n \"aggregationType\": \"Average\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"d2c.endpoints.egress.builtIn.events\",\r\n \"displayName\": \"Routing: messages delivered to messages/events\",\r\n \"displayDescription\": \"The number of times IoT Hub routing successfully delivered messages to the built-in endpoint (messages/events).\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"d2c.endpoints.latency.builtIn.events\",\r\n \"displayName\": \"Routing: message latency for messages/events\",\r\n \"displayDescription\": \"The average latency (milliseconds) between message ingress to IoT Hub and telemetry message ingress into the built-in endpoint (messages/events).\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Milliseconds\",\r\n \"aggregationType\": \"Average\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"d2c.endpoints.egress.storage\",\r\n \"displayName\": \"Routing: messages delivered to storage\",\r\n \"displayDescription\": \"The number of times IoT Hub routing successfully delivered messages to storage endpoints.\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"d2c.endpoints.latency.storage\",\r\n \"displayName\": \"Routing: message latency for storage\",\r\n \"displayDescription\": \"The average latency (milliseconds) between message ingress to IoT Hub and telemetry message ingress into a storage endpoint.\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Milliseconds\",\r\n \"aggregationType\": \"Average\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"d2c.endpoints.egress.storage.bytes\",\r\n \"displayName\": \"Routing: data delivered to storage\",\r\n \"displayDescription\": \"The amount of data (bytes) IoT Hub routing delivered to storage endpoints.\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Bytes\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"d2c.endpoints.egress.storage.blobs\",\r\n \"displayName\": \"Routing: blobs delivered to storage\",\r\n \"displayDescription\": \"The number of times IoT Hub routing delivered blobs to storage endpoints.\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"EventGridDeliveries\",\r\n \"displayName\": \"Event Grid deliveries\",\r\n \"displayDescription\": \"The number of IoT Hub events published to Event Grid. Use the Result dimension for the number of successful and failed requests. EventType dimension shows the type of event (https://aka.ms/ioteventgrid).\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"dimensions\": [\r\n {\r\n \"name\": \"Result\",\r\n \"displayName\": \"Routing Result\"\r\n },\r\n {\r\n \"name\": \"EventType\",\r\n \"displayName\": \"Event Type\"\r\n }\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"EventGridLatency\",\r\n \"displayName\": \"Event Grid latency\",\r\n \"displayDescription\": \"The average latency (milliseconds) from when the Iot Hub event was generated to when the event was published to Event Grid. This number is an average between all event types. Use the EventType dimension to see latency of a specific type of event.\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Milliseconds\",\r\n \"aggregationType\": \"Average\",\r\n \"dimensions\": [\r\n {\r\n \"name\": \"EventType\",\r\n \"displayName\": \"Event Type\"\r\n }\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"RoutingDeliveries\",\r\n \"displayName\": \"Routing Deliveries (preview)\",\r\n \"displayDescription\": \"The number of times IoT Hub attempted to deliver messages to all endpoints using routing. To see the number of successful or failed attempts, use the Result dimension. To see the reason of failure, like invalid, dropped, or orphaned, use the FailureReasonCategory dimension. You can also use the EndpointName and EndpointType dimensions to understand how many messages were delivered to your different endpoints. The metric value increases by one for each delivery attempt, including if the message is delivered to multiple endpoints or if the message is delivered to the same endpoint multiple times.\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"dimensions\": [\r\n {\r\n \"name\": \"EndpointType\",\r\n \"displayName\": \"Endpoint Type\"\r\n },\r\n {\r\n \"name\": \"EndpointName\",\r\n \"displayName\": \"Endpoint Name\"\r\n },\r\n {\r\n \"name\": \"FailureReasonCategory\",\r\n \"displayName\": \"Failure Reason Category\"\r\n },\r\n {\r\n \"name\": \"Result\",\r\n \"displayName\": \"Result\"\r\n },\r\n {\r\n \"name\": \"RoutingSource\",\r\n \"displayName\": \"Routing Source\"\r\n }\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"RoutingDeliveryLatency\",\r\n \"displayName\": \"Routing Delivery Latency (preview)\",\r\n \"displayDescription\": \"The average latency (milliseconds) between message ingress to IoT Hub and telemetry message ingress into an endpoint. You can use the EndpointName and EndpointType dimensions to understand the latency to your different endpoints.\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Milliseconds\",\r\n \"aggregationType\": \"Average\",\r\n \"dimensions\": [\r\n {\r\n \"name\": \"EndpointType\",\r\n \"displayName\": \"Endpoint Type\"\r\n },\r\n {\r\n \"name\": \"EndpointName\",\r\n \"displayName\": \"Endpoint Name\"\r\n },\r\n {\r\n \"name\": \"RoutingSource\",\r\n \"displayName\": \"Routing Source\"\r\n }\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"RoutingDataSizeInBytesDelivered\",\r\n \"displayName\": \"Routing Delivery Message Size in Bytes (preview)\",\r\n \"displayDescription\": \"The total size in bytes of messages delivered by IoT hub to an endpoint. You can use the EndpointName and EndpointType dimensions to view the size of the messages in bytes delivered to your different endpoints. The metric value increases for every message delivered, including if the message is delivered to multiple endpoints or if the message is delivered to the same endpoint multiple times.\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Bytes\",\r\n \"aggregationType\": \"Total\",\r\n \"dimensions\": [\r\n {\r\n \"name\": \"EndpointType\",\r\n \"displayName\": \"Endpoint Type\"\r\n },\r\n {\r\n \"name\": \"EndpointName\",\r\n \"displayName\": \"Endpoint Name\"\r\n },\r\n {\r\n \"name\": \"RoutingSource\",\r\n \"displayName\": \"Routing Source\"\r\n }\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"d2c.twin.read.success\",\r\n \"displayName\": \"Successful twin reads from devices\",\r\n \"displayDescription\": \"The count of all successful device-initiated twin reads.\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"d2c.twin.read.failure\",\r\n \"displayName\": \"Failed twin reads from devices\",\r\n \"displayDescription\": \"The count of all failed device-initiated twin reads.\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"d2c.twin.read.size\",\r\n \"displayName\": \"Response size of twin reads from devices\",\r\n \"displayDescription\": \"The average, min, and max of all successful device-initiated twin reads.\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Bytes\",\r\n \"aggregationType\": \"Average\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"d2c.twin.update.success\",\r\n \"displayName\": \"Successful twin updates from devices\",\r\n \"displayDescription\": \"The count of all successful device-initiated twin updates.\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"d2c.twin.update.failure\",\r\n \"displayName\": \"Failed twin updates from devices\",\r\n \"displayDescription\": \"The count of all failed device-initiated twin updates.\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"d2c.twin.update.size\",\r\n \"displayName\": \"Size of twin updates from devices\",\r\n \"displayDescription\": \"The average, min, and max size of all successful device-initiated twin updates.\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Bytes\",\r\n \"aggregationType\": \"Average\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"c2d.methods.success\",\r\n \"displayName\": \"Successful direct method invocations\",\r\n \"displayDescription\": \"The count of all successful direct method calls.\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"c2d.methods.failure\",\r\n \"displayName\": \"Failed direct method invocations\",\r\n \"displayDescription\": \"The count of all failed direct method calls.\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"c2d.methods.requestSize\",\r\n \"displayName\": \"Request size of direct method invocations\",\r\n \"displayDescription\": \"The average, min, and max of all successful direct method requests.\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Bytes\",\r\n \"aggregationType\": \"Average\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"c2d.methods.responseSize\",\r\n \"displayName\": \"Response size of direct method invocations\",\r\n \"displayDescription\": \"The average, min, and max of all successful direct method responses.\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Bytes\",\r\n \"aggregationType\": \"Average\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"c2d.twin.read.success\",\r\n \"displayName\": \"Successful twin reads from back end\",\r\n \"displayDescription\": \"The count of all successful back-end-initiated twin reads.\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"c2d.twin.read.failure\",\r\n \"displayName\": \"Failed twin reads from back end\",\r\n \"displayDescription\": \"The count of all failed back-end-initiated twin reads.\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"c2d.twin.read.size\",\r\n \"displayName\": \"Response size of twin reads from back end\",\r\n \"displayDescription\": \"The average, min, and max of all successful back-end-initiated twin reads.\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Bytes\",\r\n \"aggregationType\": \"Average\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"c2d.twin.update.success\",\r\n \"displayName\": \"Successful twin updates from back end\",\r\n \"displayDescription\": \"The count of all successful back-end-initiated twin updates.\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"c2d.twin.update.failure\",\r\n \"displayName\": \"Failed twin updates from back end\",\r\n \"displayDescription\": \"The count of all failed back-end-initiated twin updates.\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"c2d.twin.update.size\",\r\n \"displayName\": \"Size of twin updates from back end\",\r\n \"displayDescription\": \"The average, min, and max size of all successful back-end-initiated twin updates.\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Bytes\",\r\n \"aggregationType\": \"Average\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"twinQueries.success\",\r\n \"displayName\": \"Successful twin queries\",\r\n \"displayDescription\": \"The count of all successful twin queries.\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"twinQueries.failure\",\r\n \"displayName\": \"Failed twin queries\",\r\n \"displayDescription\": \"The count of all failed twin queries.\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"twinQueries.resultSize\",\r\n \"displayName\": \"Twin queries result size\",\r\n \"displayDescription\": \"The average, min, and max of the result size of all successful twin queries.\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Bytes\",\r\n \"aggregationType\": \"Average\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"jobs.createTwinUpdateJob.success\",\r\n \"displayName\": \"Successful creations of twin update jobs\",\r\n \"displayDescription\": \"The count of all successful creation of twin update jobs.\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"jobs.createTwinUpdateJob.failure\",\r\n \"displayName\": \"Failed creations of twin update jobs\",\r\n \"displayDescription\": \"The count of all failed creation of twin update jobs.\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"jobs.createDirectMethodJob.success\",\r\n \"displayName\": \"Successful creations of method invocation jobs\",\r\n \"displayDescription\": \"The count of all successful creation of direct method invocation jobs.\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"jobs.createDirectMethodJob.failure\",\r\n \"displayName\": \"Failed creations of method invocation jobs\",\r\n \"displayDescription\": \"The count of all failed creation of direct method invocation jobs.\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"jobs.listJobs.success\",\r\n \"displayName\": \"Successful calls to list jobs\",\r\n \"displayDescription\": \"The count of all successful calls to list jobs.\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"jobs.listJobs.failure\",\r\n \"displayName\": \"Failed calls to list jobs\",\r\n \"displayDescription\": \"The count of all failed calls to list jobs.\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"jobs.cancelJob.success\",\r\n \"displayName\": \"Successful job cancellations\",\r\n \"displayDescription\": \"The count of all successful calls to cancel a job.\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"jobs.cancelJob.failure\",\r\n \"displayName\": \"Failed job cancellations\",\r\n \"displayDescription\": \"The count of all failed calls to cancel a job.\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"jobs.queryJobs.success\",\r\n \"displayName\": \"Successful job queries\",\r\n \"displayDescription\": \"The count of all successful calls to query jobs.\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"jobs.queryJobs.failure\",\r\n \"displayName\": \"Failed job queries\",\r\n \"displayDescription\": \"The count of all failed calls to query jobs.\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"jobs.completed\",\r\n \"displayName\": \"Completed jobs\",\r\n \"displayDescription\": \"The count of all completed jobs.\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"jobs.failed\",\r\n \"displayName\": \"Failed jobs\",\r\n \"displayDescription\": \"The count of all failed jobs.\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"d2c.telemetry.ingress.sendThrottle\",\r\n \"displayName\": \"Number of throttling errors\",\r\n \"displayDescription\": \"Number of throttling errors due to device throughput throttles\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"dailyMessageQuotaUsed\",\r\n \"displayName\": \"Total number of messages used\",\r\n \"displayDescription\": \"Number of total messages used today\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"deviceDataUsage\",\r\n \"displayName\": \"Total device data usage\",\r\n \"displayDescription\": \"Bytes transferred to and from any devices connected to IotHub\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Bytes\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"deviceDataUsageV2\",\r\n \"displayName\": \"Total device data usage (preview)\",\r\n \"displayDescription\": \"Bytes transferred to and from any devices connected to IotHub\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Bytes\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"totalDeviceCount\",\r\n \"displayName\": \"Total devices\",\r\n \"displayDescription\": \"Number of devices registered to your IoT hub\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Average\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"connectedDeviceCount\",\r\n \"displayName\": \"Connected devices\",\r\n \"displayDescription\": \"Number of devices connected to your IoT hub\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Average\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"configurations\",\r\n \"displayName\": \"Configuration Metrics\",\r\n \"displayDescription\": \"Metrics for Configuration Operations\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/ElasticPools/IotHubTenants/logDefinitions/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": \"IotHubTenants\",\r\n \"operation\": \"Read IotHub service log definitions\",\r\n \"description\": \"Gets the available log definitions for the IotHub Service\"\r\n },\r\n \"properties\": {\r\n \"serviceSpecification\": {\r\n \"logSpecifications\": [\r\n {\r\n \"name\": \"Connections\",\r\n \"displayName\": \"Connections\",\r\n \"blobDuration\": \"PT1H\"\r\n },\r\n {\r\n \"name\": \"DeviceTelemetry\",\r\n \"displayName\": \"Device Telemetry\",\r\n \"blobDuration\": \"PT1H\"\r\n },\r\n {\r\n \"name\": \"C2DCommands\",\r\n \"displayName\": \"C2D Commands\",\r\n \"blobDuration\": \"PT1H\"\r\n },\r\n {\r\n \"name\": \"DeviceIdentityOperations\",\r\n \"displayName\": \"Device Identity Operations\",\r\n \"blobDuration\": \"PT1H\"\r\n },\r\n {\r\n \"name\": \"FileUploadOperations\",\r\n \"displayName\": \"File Upload Operations\",\r\n \"blobDuration\": \"PT1H\"\r\n },\r\n {\r\n \"name\": \"Routes\",\r\n \"displayName\": \"Routes\",\r\n \"blobDuration\": \"PT1H\"\r\n },\r\n {\r\n \"name\": \"D2CTwinOperations\",\r\n \"displayName\": \"D2CTwinOperations\",\r\n \"blobDuration\": \"PT1H\"\r\n },\r\n {\r\n \"name\": \"C2DTwinOperations\",\r\n \"displayName\": \"C2D Twin Operations\",\r\n \"blobDuration\": \"PT1H\"\r\n },\r\n {\r\n \"name\": \"TwinQueries\",\r\n \"displayName\": \"Twin Queries\",\r\n \"blobDuration\": \"PT1H\"\r\n },\r\n {\r\n \"name\": \"JobsOperations\",\r\n \"displayName\": \"Jobs Operations\",\r\n \"blobDuration\": \"PT1H\"\r\n },\r\n {\r\n \"name\": \"DirectMethods\",\r\n \"displayName\": \"Direct Methods\",\r\n \"blobDuration\": \"PT1H\"\r\n },\r\n {\r\n \"name\": \"DistributedTracing\",\r\n \"displayName\": \"Distributed Tracing (Preview)\",\r\n \"blobDuration\": \"PT1H\"\r\n },\r\n {\r\n \"name\": \"Configurations\",\r\n \"displayName\": \"Configurations\",\r\n \"blobDuration\": \"PT1H\"\r\n },\r\n {\r\n \"name\": \"DeviceStreams\",\r\n \"displayName\": \"Device Streams (Preview)\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/elasticPools/iotHubTenants/Write\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": null,\r\n \"operation\": \"Create or Update IotHubTenant\",\r\n \"description\": \"Create or Update the IotHub tenant resource\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/elasticPools/iotHubTenants/Read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": null,\r\n \"operation\": \"Get IotHubTenant\",\r\n \"description\": \"Gets the IotHub tenant resource\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/elasticPools/iotHubTenants/Delete\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": null,\r\n \"operation\": \"Delete IotHubTenant\",\r\n \"description\": \"Delete the IotHub tenant resource\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/elasticPools/iotHubTenants/getStats/Read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": null,\r\n \"operation\": \"Get IotHubTenant Stats\",\r\n \"description\": \"Gets the IotHub tenant stats resource\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/elasticPools/iotHubTenants/listKeys/Action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": null,\r\n \"operation\": \"Get IotHubTenant Keys\",\r\n \"description\": \"Gets IotHub tenant keys\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/elasticPools/iotHubTenants/iotHubKeys/listkeys/Action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": null,\r\n \"operation\": \"Get IotHubTenant tenant key\",\r\n \"description\": \"Gets the IotHub tenant key\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/elasticPools/iotHubTenants/eventHubEndpoints/consumerGroups/Write\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": null,\r\n \"operation\": \"Create EventHub Consumer Group\",\r\n \"description\": \"Create EventHub Consumer Group\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/elasticPools/iotHubTenants/eventHubEndpoints/consumerGroups/Read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": null,\r\n \"operation\": \"Get EventHub Consumer Group(s)\",\r\n \"description\": \"Get EventHub Consumer Group(s)\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/elasticPools/iotHubTenants/eventHubEndpoints/consumerGroups/Delete\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": null,\r\n \"operation\": \"Delete EventHub Consumer Group\",\r\n \"description\": \"Delete EventHub Consumer Group\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/elasticPools/iotHubTenants/exportDevices/Action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": null,\r\n \"operation\": \"Export Devices\",\r\n \"description\": \"Export Devices\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/elasticPools/iotHubTenants/importDevices/Action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": null,\r\n \"operation\": \"Import Devices\",\r\n \"description\": \"Import Devices\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/elasticPools/iotHubTenants/jobs/Read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": null,\r\n \"operation\": \"Get the Job(s) on IotHub\",\r\n \"description\": \"Get Job(s) details submitted on given IotHub\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/elasticPools/iotHubTenants/quotaMetrics/Read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": null,\r\n \"operation\": \"Get Quota Metrics\",\r\n \"description\": \"Get Quota Metrics\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/elasticPools/iotHubTenants/routing/routes/$testall/Action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": null,\r\n \"operation\": \"Routing Rule Test All\",\r\n \"description\": \"Test a message against all existing Routes\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/elasticPools/iotHubTenants/routing/routes/$testnew/Action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": null,\r\n \"operation\": \"Routing Rule Test Route\",\r\n \"description\": \"Test a message against a provided test Route\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/elasticPools/iotHubTenants/routingEndpointsHealth/Read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": null,\r\n \"operation\": \"Get Endpoint Health\",\r\n \"description\": \"Gets the health of all routing Endpoints for an IotHub\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/elasticPools/iotHubTenants/certificates/Read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": null,\r\n \"operation\": \"Gets the Certificate\",\r\n \"description\": \"Gets the Certificate\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/elasticPools/iotHubTenants/certificates/Write\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": null,\r\n \"operation\": \"Create or Update Certificate\",\r\n \"description\": \"Create or Update Certificate\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/elasticPools/iotHubTenants/certificates/Delete\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": null,\r\n \"operation\": \"Deletes Certificate\",\r\n \"description\": \"Deletes Certificate\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/elasticPools/iotHubTenants/certificates/generateVerificationCode/Action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": null,\r\n \"operation\": \"Generate Verification code\",\r\n \"description\": \"Generate Verification code\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/elasticPools/iotHubTenants/certificates/verify/Action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": null,\r\n \"operation\": \"Verify Certificate resource\",\r\n \"description\": \"Verify Certificate resource\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/iotHubs/eventGridFilters/Write\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": \"Microsoft.Devices/IotHubs/EventGridFilters\",\r\n \"operation\": \"Create or Update Event Grid filter\",\r\n \"description\": \"Create new or Update existing Event Grid filter\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/iotHubs/eventGridFilters/Read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": \"Microsoft.Devices/IotHubs/EventGridFilters\",\r\n \"operation\": \"Get Event Grid filter\",\r\n \"description\": \"Gets the Event Grid filter\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/iotHubs/eventGridFilters/Delete\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": \"Microsoft.Devices/IotHubs/EventGridFilters\",\r\n \"operation\": \"Delete Event Grid filter\",\r\n \"description\": \"Deletes the Event Grid filter\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/iotHubs/securitySettings/Write\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": \"Microsoft.Devices/IotHubs/SecuritySettings\",\r\n \"operation\": \"Update Iot Hub SecuritySettings\",\r\n \"description\": \"Update the Azure Security Center settings on Iot Hub\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/iotHubs/securitySettings/Read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": \"Microsoft.Devices/IotHubs/SecuritySettings\",\r\n \"operation\": \"Get Iot Hub SecuritySettings\",\r\n \"description\": \"Get the Azure Security Center settings on Iot Hub\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/iotHubs/securitySettings/operationResults/Read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": \"Microsoft.Devices/IotHubs/SecuritySettings\",\r\n \"operation\": \"Get Async operation result for Iot Hub SecuritySettings\",\r\n \"description\": \"Get the result of the Async Put operation for Iot Hub SecuritySettings\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/elasticPools/iotHubTenants/securitySettings/Write\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": \"Microsoft.Devices/IotHubs/SecuritySettings\",\r\n \"operation\": \"Update Iot Tenant Hub SecuritySettings\",\r\n \"description\": \"Update the Azure Security Center settings on Iot Tenant Hub\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/elasticPools/iotHubTenants/securitySettings/Read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": \"Microsoft.Devices/IotHubs/SecuritySettings\",\r\n \"operation\": \"Get Iot Tenant Hub SecuritySettings\",\r\n \"description\": \"Get the Azure Security Center settings on Iot Tenant Hub\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/elasticPools/iotHubTenants/securitySettings/operationResults/Read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": \"Microsoft.Devices/IotHubs/SecuritySettings\",\r\n \"operation\": \"Get Async operation result for Iot Tenant Hub SecuritySettings\",\r\n \"description\": \"Get the result of the Async Put operation for Iot Tenant Hub SecuritySettings\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/elasticPools/eventGridFilters/Write\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": \"Microsoft.Devices/ElasticPools/EventGridFilters\",\r\n \"operation\": \"Create or Update Elastic Pool Event Grid filter\",\r\n \"description\": \"Create new or Update existing Elastic Pool Event Grid filter\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/elasticPools/eventGridFilters/Read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": \"Microsoft.Devices/ElasticPools/EventGridFilters\",\r\n \"operation\": \"Get Elastic Pool Event Grid filter\",\r\n \"description\": \"Gets the Elastic Pool Event Grid filter\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/elasticPools/eventGridFilters/Delete\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": \"Microsoft.Devices/ElasticPools/EventGridFilters\",\r\n \"operation\": \"Delete Elastic Pool Event Grid filter\",\r\n \"description\": \"Deletes the Elastic Pool Event Grid filter\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/iotHubs/digitalTwinsLinks/Write\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": \"Microsoft.Devices/IotHubs/DigitalTwinsLinks\",\r\n \"operation\": \"Links IotHub with a Digital Twins Service\",\r\n \"description\": \"Links IotHub with a Digital Twins Service\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/iotHubs/digitalTwinsLinks/Read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": \"Microsoft.Devices/IotHubs/DigitalTwinsLinks\",\r\n \"operation\": \"Gets the information about the current linked Digital Twins Service\",\r\n \"description\": \"Gets the information about the current linked Digital Twins Service\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/iotHubs/digitalTwinsLinks/Delete\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": \"Microsoft.Devices/IotHubs/DigitalTwinsLinks\",\r\n \"operation\": \"Deletes the link to the Digital Twins Service\",\r\n \"description\": \"Deletes the link to the Digital Twins Service\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/iotHubs/privateEndpointConnectionsApproval/Action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": \"Microsoft.Devices/IotHubs\",\r\n \"operation\": \"Approve Private Endpoint Connection\",\r\n \"description\": \"Approve or reject a private endpoint connection\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/iotHubs/privateLinkResources/Read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": \"Microsoft.Devices/IotHubs/PrivateLinkResources\",\r\n \"operation\": \"Get Private Link Resources\",\r\n \"description\": \"Gets private link resources for IotHub\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/iotHubs/privateEndpointConnectionProxies/validate/Action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": \"Microsoft.Devices/IotHubs/PrivateEndpointConnectionProxies\",\r\n \"operation\": \"Validate Private Endpoint Connection Proxy\",\r\n \"description\": \"Validates private endpoint connection proxy input during create\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/iotHubs/privateEndpointConnectionProxies/Read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": \"Microsoft.Devices/IotHubs/PrivateEndpointConnectionProxies\",\r\n \"operation\": \"Get Private Endpoint Connection Proxy\",\r\n \"description\": \"Gets properties for specified private endpoint connection proxy\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/iotHubs/privateEndpointConnectionProxies/Write\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": \"Microsoft.Devices/IotHubs/PrivateEndpointConnectionProxies\",\r\n \"operation\": \"Put Private Endpoint Connection Proxy\",\r\n \"description\": \"Creates or updates a private endpoint connection proxy\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/iotHubs/privateEndpointConnectionProxies/operationResults/Read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": \"Microsoft.Devices/IotHubs/PrivateEndpointConnectionProxies\",\r\n \"operation\": \"Get Private Endpoint Connection Proxy Async Operation Result\",\r\n \"description\": \"Get the result of an async operation on a private endpoint connection proxy\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/iotHubs/privateEndpointConnectionProxies/Delete\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": \"Microsoft.Devices/IotHubs/PrivateEndpointConnectionProxies\",\r\n \"operation\": \"Delete Private Endpoint Connection Proxy\",\r\n \"description\": \"Deletes an existing private endpoint connection proxy\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/iotHubs/privateEndpointConnections/Read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": \"Microsoft.Devices/IotHubs/PrivateEndpointConnections\",\r\n \"operation\": \"Get All Private Endpoint Connections\",\r\n \"description\": \"Gets all the private endpoint connections for the specified iot hub\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/iotHubs/privateEndpointConnections/Delete\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": \"Microsoft.Devices/IotHubs/PrivateEndpointConnections\",\r\n \"operation\": \"Delete Private Endpoint Connection\",\r\n \"description\": \"Deletes an existing private endpoint connection\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/iotHubs/privateEndpointConnections/Write\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": \"Microsoft.Devices/IotHubs/PrivateEndpointConnections\",\r\n \"operation\": \"Put Private Endpoint Connection\",\r\n \"description\": \"Creates or updates a private endpoint connection\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/iotHubs/privateEndpointConnections/operationResults/Read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": \"Microsoft.Devices/IotHubs/PrivateEndpointConnections\",\r\n \"operation\": \"Get Private Endpoint Connection Async Operation Result\",\r\n \"description\": \"Get the result of an async operation on a private endpoint connection\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/provisioningServices/privateEndpointConnectionsApproval/Action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": \"Microsoft.Devices/provisioningServices\",\r\n \"operation\": \"Approve Private Endpoint Connection\",\r\n \"description\": \"Approve or reject a private endpoint connection\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/provisioningServices/privateLinkResources/Read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": \"Microsoft.Devices/provisioningServices/PrivateLinkResources\",\r\n \"operation\": \"Get Private Link Resources\",\r\n \"description\": \"Gets private link resources for IotHub\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/provisioningServices/privateEndpointConnectionProxies/validate/Action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": \"Microsoft.Devices/provisioningServices/PrivateEndpointConnectionProxies\",\r\n \"operation\": \"Validate Private Endpoint Connection Proxy\",\r\n \"description\": \"Validates private endpoint connection proxy input during create\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/provisioningServices/privateEndpointConnectionProxies/Read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": \"Microsoft.Devices/provisioningServices/PrivateEndpointConnectionProxies\",\r\n \"operation\": \"Get Private Endpoint Connection Proxy\",\r\n \"description\": \"Gets properties for specified private endpoint connection proxy\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/provisioningServices/privateEndpointConnectionProxies/Write\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": \"Microsoft.Devices/provisioningServices/PrivateEndpointConnectionProxies\",\r\n \"operation\": \"Put Private Endpoint Connection Proxy\",\r\n \"description\": \"Creates or updates a private endpoint connection proxy\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/provisioningServices/privateEndpointConnectionProxies/operationResults/Read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": \"Microsoft.Devices/provisioningServices/PrivateEndpointConnectionProxies\",\r\n \"operation\": \"Get Private Endpoint Connection Proxy Async Operation Result\",\r\n \"description\": \"Get the result of an async operation on a private endpoint connection proxy\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/provisioningServices/privateEndpointConnectionProxies/Delete\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": \"Microsoft.Devices/provisioningServices/PrivateEndpointConnectionProxies\",\r\n \"operation\": \"Delete Private Endpoint Connection Proxy\",\r\n \"description\": \"Deletes an existing private endpoint connection proxy\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/provisioningServices/privateEndpointConnections/Read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": \"Microsoft.Devices/provisioningServices/PrivateEndpointConnections\",\r\n \"operation\": \"Get All Private Endpoint Connections\",\r\n \"description\": \"Gets all the private endpoint connections for the specified iot hub\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/provisioningServices/privateEndpointConnections/Delete\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": \"Microsoft.Devices/provisioningServices/PrivateEndpointConnections\",\r\n \"operation\": \"Delete Private Endpoint Connection\",\r\n \"description\": \"Deletes an existing private endpoint connection\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/provisioningServices/privateEndpointConnections/Write\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": \"Microsoft.Devices/provisioningServices/PrivateEndpointConnections\",\r\n \"operation\": \"Put Private Endpoint Connection\",\r\n \"description\": \"Creates or updates a private endpoint connection\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/provisioningServices/privateEndpointConnections/operationResults/Read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": \"Microsoft.Devices/provisioningServices/PrivateEndpointConnections\",\r\n \"operation\": \"Get Private Endpoint Connection Async Operation Result\",\r\n \"description\": \"Get the result of an async operation on a private endpoint connection\"\r\n },\r\n \"properties\": null\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"XG1twta0S9jzjS9dr9MimX2SZZyDIYA5rMyPo9Yc8sQ=\",\r\n \"secondaryKey\": \"mXZzTgm3y2z16xvAiko1M0jVgPIK/MuxL2ju3DP67m4=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"8jpKX6A+60kxNSOcHZCXX/sIra2QTCoBhvO2T1t7Qmw=\",\r\n \"secondaryKey\": \"ffcBmJaEt1ZeT7UHtUoPIayjvysvWZ5jicIiD3NevpI=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"Vi3KZX+/JcEiFVfpCs6HjHrR2L2Y2g4xHMYMcTKW+3M=\",\r\n \"secondaryKey\": \"pruWRMD4G6HATUXT8C9vDaGFdliwCnOhD387THGs3TE=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"2R4IWSQF1KjEBSZpiBcupz8qsXzAJYyRJpU1KQd3kq4=\",\r\n \"secondaryKey\": \"Elh8x2ZjaKPU4CxC5HCvcVF4e2MFGY444eNtyRyXa3I=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"PsJ+Hdv4jynTmMPoCJsaimLzIsVHIZf0wfoe3E0E26Y=\",\r\n \"secondaryKey\": \"MnFrENry/uZCLFAhSNImrI10zqjN/jCRF/D9cXDkAeI=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/DotNetHubRG/providers/Microsoft.Devices/IotHubs/DotNetHub/failover?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Jlc291cmNlR3JvdXBzL0RvdE5ldEh1YlJHL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9Jb3RIdWJzL0RvdE5ldEh1Yi9mYWlsb3Zlcj9hcGktdmVyc2lvbj0yMDIwLTAzLTAx", + "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/DotNetHubRG/providers/Microsoft.Devices/IotHubs/DotNetHub/IotHubKeys/iothubowner/listkeys?api-version=2021-03-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Jlc291cmNlR3JvdXBzL0RvdE5ldEh1YlJHL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9Jb3RIdWJzL0RvdE5ldEh1Yi9Jb3RIdWJLZXlzL2lvdGh1Ym93bmVyL2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMjEtMDMtMzE=", "RequestMethod": "POST", - "RequestBody": "{\r\n \"failoverRegion\": \"WestCentralUS\"\r\n}", + "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "58b7f0a1-7ce6-488d-97d4-c46891adb1c9" + "53a1fc85-bc03-4a88-85b1-545db2130ecf" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "41" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.0.0.0" ] }, "ResponseHeaders": { @@ -3424,29 +2699,20 @@ "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/providers/Microsoft.Devices/operationResults/b3NfaWhfYjBlYzYzMzgtMTJlNC00YTBmLWIzOWEtYjcxMGM5ZTNjNjVm?api-version=2020-03-01&operationSource=os_ih" - ], - "Retry-After": [ - "15" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/providers/Microsoft.Devices/operationResults/b3NfaWhfYjBlYzYzMzgtMTJlNC00YTBmLWIzOWEtYjcxMGM5ZTNjNjVm?api-version=2020-03-01&operationSource=os_ih&asyncinfo" - ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1196" ], "x-ms-request-id": [ - "2d71e90e-72b3-4c70-8ca8-379b40608ef9" + "3f8b3212-d3d2-4809-a4aa-7ebca27c7b9b" ], "x-ms-correlation-request-id": [ - "2d71e90e-72b3-4c70-8ca8-379b40608ef9" + "3f8b3212-d3d2-4809-a4aa-7ebca27c7b9b" ], "x-ms-routing-request-id": [ - "WESTUS2:20210219T192311Z:2d71e90e-72b3-4c70-8ca8-379b40608ef9" + "WESTUS2:20210514T173740Z:3f8b3212-d3d2-4809-a4aa-7ebca27c7b9b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3455,10 +2721,10 @@ "nosniff" ], "Date": [ - "Fri, 19 Feb 2021 19:23:10 GMT" + "Fri, 14 May 2021 17:37:39 GMT" ], "Content-Length": [ - "4" + "203" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3467,20 +2733,26 @@ "-1" ] }, - "ResponseBody": "null", - "StatusCode": 202 + "ResponseBody": "{\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"XG1twta0S9jzjS9dr9MimX2SZZyDIYA5rMyPo9Yc8sQ=\",\r\n \"secondaryKey\": \"mXZzTgm3y2z16xvAiko1M0jVgPIK/MuxL2ju3DP67m4=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/providers/Microsoft.Devices/operationResults/b3NfaWhfYjBlYzYzMzgtMTJlNC00YTBmLWIzOWEtYjcxMGM5ZTNjNjVm?api-version=2020-03-01&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmWWpCbFl6WXpNemd0TVRKbE5DMDBZVEJtTFdJek9XRXRZamN4TUdNNVpUTmpOalZtP2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEmb3BlcmF0aW9uU291cmNlPW9zX2loJmFzeW5jaW5mbw==", + "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/DotNetHubRG/providers/Microsoft.Devices/IotHubs/DotNetHub/eventHubEndpoints/events/ConsumerGroups?api-version=2021-03-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Jlc291cmNlR3JvdXBzL0RvdE5ldEh1YlJHL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9Jb3RIdWJzL0RvdE5ldEh1Yi9ldmVudEh1YkVuZHBvaW50cy9ldmVudHMvQ29uc3VtZXJHcm91cHM/YXBpLXZlcnNpb249MjAyMS0wMy0zMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "20aad741-b0b6-41d4-8627-6d25ded173b1" + ], + "Accept-Language": [ + "en-US" + ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.0.0.0" ] }, "ResponseHeaders": { @@ -3494,16 +2766,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11981" + "11986" ], "x-ms-request-id": [ - "2881ade4-92ae-4691-a07e-19fd8cc2678c" + "39e256e6-f988-4d87-a1ea-ff3cc28846c5" ], "x-ms-correlation-request-id": [ - "2881ade4-92ae-4691-a07e-19fd8cc2678c" + "39e256e6-f988-4d87-a1ea-ff3cc28846c5" ], "x-ms-routing-request-id": [ - "WESTUS2:20210219T192339Z:2881ade4-92ae-4691-a07e-19fd8cc2678c" + "WESTUS2:20210514T173741Z:39e256e6-f988-4d87-a1ea-ff3cc28846c5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3512,10 +2784,10 @@ "nosniff" ], "Date": [ - "Fri, 19 Feb 2021 19:23:39 GMT" + "Fri, 14 May 2021 17:37:40 GMT" ], "Content-Length": [ - "20" + "351" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3524,20 +2796,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"status\": \"Running\"\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"created\": \"Fri, 14 May 2021 17:36:38 GMT\"\r\n },\r\n \"id\": \"/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/DotNetHubRG/providers/Microsoft.Devices/IotHubs/DotNetHub/eventHubEndpoints/events/ConsumerGroups/%24Default\",\r\n \"name\": \"$Default\",\r\n \"type\": \"Microsoft.Devices/IotHubs/EventHubEndpoints/ConsumerGroups\",\r\n \"etag\": null\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/providers/Microsoft.Devices/operationResults/b3NfaWhfYjBlYzYzMzgtMTJlNC00YTBmLWIzOWEtYjcxMGM5ZTNjNjVm?api-version=2020-03-01&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmWWpCbFl6WXpNemd0TVRKbE5DMDBZVEJtTFdJek9XRXRZamN4TUdNNVpUTmpOalZtP2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEmb3BlcmF0aW9uU291cmNlPW9zX2loJmFzeW5jaW5mbw==", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/DotNetHubRG/providers/Microsoft.Devices/IotHubs/DotNetHub/eventHubEndpoints/events/ConsumerGroups/testConsumerGroup?api-version=2021-03-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Jlc291cmNlR3JvdXBzL0RvdE5ldEh1YlJHL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9Jb3RIdWJzL0RvdE5ldEh1Yi9ldmVudEh1YkVuZHBvaW50cy9ldmVudHMvQ29uc3VtZXJHcm91cHMvdGVzdENvbnN1bWVyR3JvdXA/YXBpLXZlcnNpb249MjAyMS0wMy0zMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"name\": \"testConsumerGroup\"\r\n }\r\n}", "RequestHeaders": { + "x-ms-client-request-id": [ + "d8ad31be-45e5-4206-a1bc-730e17198416" + ], + "Accept-Language": [ + "en-US" + ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "61" ] }, "ResponseHeaders": { @@ -3550,17 +2834,17 @@ "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11980" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" ], "x-ms-request-id": [ - "ba179788-2d4c-487f-9165-f4777862b8dc" + "5c4a6103-9f7b-43ee-b89b-76010b46efcc" ], "x-ms-correlation-request-id": [ - "ba179788-2d4c-487f-9165-f4777862b8dc" + "5c4a6103-9f7b-43ee-b89b-76010b46efcc" ], "x-ms-routing-request-id": [ - "WESTUS2:20210219T192354Z:ba179788-2d4c-487f-9165-f4777862b8dc" + "WESTUS2:20210514T173743Z:5c4a6103-9f7b-43ee-b89b-76010b46efcc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3569,10 +2853,10 @@ "nosniff" ], "Date": [ - "Fri, 19 Feb 2021 19:23:54 GMT" + "Fri, 14 May 2021 17:37:42 GMT" ], "Content-Length": [ - "20" + "397" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3581,20 +2865,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"status\": \"Running\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"created\": \"Fri, 14 May 2021 17:37:43 GMT\",\r\n \"properties\": {\r\n \"name\": \"testConsumerGroup\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/DotNetHubRG/providers/Microsoft.Devices/IotHubs/DotNetHub/eventHubEndpoints/events/ConsumerGroups/testConsumerGroup\",\r\n \"name\": \"testConsumerGroup\",\r\n \"type\": \"Microsoft.Devices/IotHubs/EventHubEndpoints/ConsumerGroups\",\r\n \"etag\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/providers/Microsoft.Devices/operationResults/b3NfaWhfYjBlYzYzMzgtMTJlNC00YTBmLWIzOWEtYjcxMGM5ZTNjNjVm?api-version=2020-03-01&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmWWpCbFl6WXpNemd0TVRKbE5DMDBZVEJtTFdJek9XRXRZamN4TUdNNVpUTmpOalZtP2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEmb3BlcmF0aW9uU291cmNlPW9zX2loJmFzeW5jaW5mbw==", + "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/DotNetHubRG/providers/Microsoft.Devices/IotHubs/DotNetHub/eventHubEndpoints/events/ConsumerGroups/testConsumerGroup?api-version=2021-03-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Jlc291cmNlR3JvdXBzL0RvdE5ldEh1YlJHL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9Jb3RIdWJzL0RvdE5ldEh1Yi9ldmVudEh1YkVuZHBvaW50cy9ldmVudHMvQ29uc3VtZXJHcm91cHMvdGVzdENvbnN1bWVyR3JvdXA/YXBpLXZlcnNpb249MjAyMS0wMy0zMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "04a1a799-e9e3-42db-8e30-9a8647e5f595" + ], + "Accept-Language": [ + "en-US" + ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.0.0.0" ] }, "ResponseHeaders": { @@ -3608,16 +2898,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11979" + "11985" ], "x-ms-request-id": [ - "f71e1481-ec60-4035-a016-3e9bbc7b7b33" + "f92b0c46-83a5-4ee0-818b-6dfcd4bf3a17" ], "x-ms-correlation-request-id": [ - "f71e1481-ec60-4035-a016-3e9bbc7b7b33" + "f92b0c46-83a5-4ee0-818b-6dfcd4bf3a17" ], "x-ms-routing-request-id": [ - "WESTUS2:20210219T192409Z:f71e1481-ec60-4035-a016-3e9bbc7b7b33" + "WESTUS2:20210514T173743Z:f92b0c46-83a5-4ee0-818b-6dfcd4bf3a17" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3626,10 +2916,10 @@ "nosniff" ], "Date": [ - "Fri, 19 Feb 2021 19:24:09 GMT" + "Fri, 14 May 2021 17:37:42 GMT" ], "Content-Length": [ - "20" + "355" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3638,20 +2928,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"status\": \"Running\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"created\": \"Fri, 14 May 2021 17:37:43 GMT\"\r\n },\r\n \"id\": \"/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/DotNetHubRG/providers/Microsoft.Devices/IotHubs/DotNetHub/eventHubEndpoints/events/ConsumerGroups/testConsumerGroup\",\r\n \"name\": \"testConsumerGroup\",\r\n \"type\": \"Microsoft.Devices/IotHubs/EventHubEndpoints/ConsumerGroups\",\r\n \"etag\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/providers/Microsoft.Devices/operationResults/b3NfaWhfYjBlYzYzMzgtMTJlNC00YTBmLWIzOWEtYjcxMGM5ZTNjNjVm?api-version=2020-03-01&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmWWpCbFl6WXpNemd0TVRKbE5DMDBZVEJtTFdJek9XRXRZamN4TUdNNVpUTmpOalZtP2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEmb3BlcmF0aW9uU291cmNlPW9zX2loJmFzeW5jaW5mbw==", - "RequestMethod": "GET", + "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/DotNetHubRG/providers/Microsoft.Devices/IotHubs/DotNetHub/eventHubEndpoints/events/ConsumerGroups/testConsumerGroup?api-version=2021-03-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Jlc291cmNlR3JvdXBzL0RvdE5ldEh1YlJHL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9Jb3RIdWJzL0RvdE5ldEh1Yi9ldmVudEh1YkVuZHBvaW50cy9ldmVudHMvQ29uc3VtZXJHcm91cHMvdGVzdENvbnN1bWVyR3JvdXA/YXBpLXZlcnNpb249MjAyMS0wMy0zMQ==", + "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "9d2969c4-7c49-4fb6-91dc-129f539cbf55" + ], + "Accept-Language": [ + "en-US" + ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.0.0.0" ] }, "ResponseHeaders": { @@ -3664,17 +2960,17 @@ "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11978" + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" ], "x-ms-request-id": [ - "760dc4fb-879b-41d6-9e7b-7c4ddbb5feb3" + "189255d0-23ee-4029-b592-0d5d9b13d378" ], "x-ms-correlation-request-id": [ - "760dc4fb-879b-41d6-9e7b-7c4ddbb5feb3" + "189255d0-23ee-4029-b592-0d5d9b13d378" ], "x-ms-routing-request-id": [ - "WESTUS2:20210219T192425Z:760dc4fb-879b-41d6-9e7b-7c4ddbb5feb3" + "WESTUS2:20210514T173744Z:189255d0-23ee-4029-b592-0d5d9b13d378" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3683,32 +2979,35 @@ "nosniff" ], "Date": [ - "Fri, 19 Feb 2021 19:24:24 GMT" - ], - "Content-Length": [ - "20" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "Fri, 14 May 2021 17:37:43 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, - "ResponseBody": "{\r\n \"status\": \"Running\"\r\n}", + "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/providers/Microsoft.Devices/operationResults/b3NfaWhfYjBlYzYzMzgtMTJlNC00YTBmLWIzOWEtYjcxMGM5ZTNjNjVm?api-version=2020-03-01&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmWWpCbFl6WXpNemd0TVRKbE5DMDBZVEJtTFdJek9XRXRZamN4TUdNNVpUTmpOalZtP2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEmb3BlcmF0aW9uU291cmNlPW9zX2loJmFzeW5jaW5mbw==", + "RequestUri": "/providers/Microsoft.Devices/operations?api-version=2021-03-31", + "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMjEtMDMtMzE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "73c7e704-0237-4111-8290-df71de6014b7" + ], + "Accept-Language": [ + "en-US" + ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.0.0.0" ] }, "ResponseHeaders": { @@ -3721,17 +3020,17 @@ "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11977" + "x-ms-ratelimit-remaining-tenant-reads": [ + "11999" ], "x-ms-request-id": [ - "16e6751f-78df-44aa-9cc4-cf0b88374813" + "3460ed30-79f5-402a-9e00-c60c6a5ead5a" ], "x-ms-correlation-request-id": [ - "16e6751f-78df-44aa-9cc4-cf0b88374813" + "3460ed30-79f5-402a-9e00-c60c6a5ead5a" ], "x-ms-routing-request-id": [ - "WESTUS2:20210219T192440Z:16e6751f-78df-44aa-9cc4-cf0b88374813" + "WESTUS2:20210514T173744Z:3460ed30-79f5-402a-9e00-c60c6a5ead5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3740,10 +3039,10 @@ "nosniff" ], "Date": [ - "Fri, 19 Feb 2021 19:24:40 GMT" + "Fri, 14 May 2021 17:37:43 GMT" ], "Content-Length": [ - "20" + "97588" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3752,20 +3051,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"status\": \"Running\"\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"Microsoft.Devices/register/action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": \"IotHubs\",\r\n \"operation\": \"Register Resource Provider\",\r\n \"description\": \"Register the subscription for the IotHub resource provider and enables the creation of IotHub resources\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/IotHubs/diagnosticSettings/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": \"IotHubs\",\r\n \"operation\": \"Get Diagnostic Setting\",\r\n \"description\": \"Gets the diagnostic setting for the resource\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/IotHubs/diagnosticSettings/write\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": \"IotHubs\",\r\n \"operation\": \"Set Diagnostic Setting\",\r\n \"description\": \"Creates or updates the diagnostic setting for the resource\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/IotHubs/metricDefinitions/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": \"IotHubs\",\r\n \"operation\": \"Read IotHub service metric definitions\",\r\n \"description\": \"Gets the available metrics for the IotHub service\"\r\n },\r\n \"properties\": {\r\n \"serviceSpecification\": {\r\n \"metricSpecifications\": [\r\n {\r\n \"name\": \"d2c.telemetry.ingress.allProtocol\",\r\n \"displayName\": \"Telemetry message send attempts\",\r\n \"displayDescription\": \"Number of device-to-cloud telemetry messages attempted to be sent to your IoT hub\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"supportedAggregationTypes\": [\r\n \"Average\",\r\n \"Minimum\",\r\n \"Maximum\",\r\n \"Total\"\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"d2c.telemetry.ingress.success\",\r\n \"displayName\": \"Telemetry messages sent\",\r\n \"displayDescription\": \"Number of device-to-cloud telemetry messages sent successfully to your IoT hub\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"supportedAggregationTypes\": [\r\n \"Average\",\r\n \"Minimum\",\r\n \"Maximum\",\r\n \"Total\"\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"c2d.commands.egress.complete.success\",\r\n \"displayName\": \"C2D message deliveries completed\",\r\n \"displayDescription\": \"Number of cloud-to-device message deliveries completed successfully by the device\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"supportedAggregationTypes\": [\r\n \"Average\",\r\n \"Minimum\",\r\n \"Maximum\",\r\n \"Total\"\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"c2d.commands.egress.abandon.success\",\r\n \"displayName\": \"C2D messages abandoned\",\r\n \"displayDescription\": \"Number of cloud-to-device messages abandoned by the device\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"supportedAggregationTypes\": [\r\n \"Average\",\r\n \"Minimum\",\r\n \"Maximum\",\r\n \"Total\"\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"c2d.commands.egress.reject.success\",\r\n \"displayName\": \"C2D messages rejected\",\r\n \"displayDescription\": \"Number of cloud-to-device messages rejected by the device\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"supportedAggregationTypes\": [\r\n \"Average\",\r\n \"Minimum\",\r\n \"Maximum\",\r\n \"Total\"\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"C2DMessagesExpired\",\r\n \"displayName\": \"C2D Messages Expired\",\r\n \"displayDescription\": \"Number of expired cloud-to-device messages\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"supportedAggregationTypes\": [\r\n \"Average\",\r\n \"Minimum\",\r\n \"Maximum\",\r\n \"Total\"\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"devices.totalDevices\",\r\n \"displayName\": \"Total devices (deprecated)\",\r\n \"displayDescription\": \"Number of devices registered to your IoT hub\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"supportedAggregationTypes\": [\r\n \"Average\",\r\n \"Minimum\",\r\n \"Maximum\",\r\n \"Total\"\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"devices.connectedDevices.allProtocol\",\r\n \"displayName\": \"Connected devices (deprecated) \",\r\n \"displayDescription\": \"Number of devices connected to your IoT hub\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"supportedAggregationTypes\": [\r\n \"Average\",\r\n \"Minimum\",\r\n \"Maximum\",\r\n \"Total\"\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"d2c.telemetry.egress.success\",\r\n \"displayName\": \"Routing: telemetry messages delivered\",\r\n \"displayDescription\": \"The number of times messages were successfully delivered to all endpoints using IoT Hub routing. If a message is routed to multiple endpoints, this value increases by one for each successful delivery. If a message is delivered to the same endpoint multiple times, this value increases by one for each successful delivery.\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"supportedAggregationTypes\": [\r\n \"Average\",\r\n \"Minimum\",\r\n \"Maximum\",\r\n \"Total\"\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"d2c.telemetry.egress.dropped\",\r\n \"displayName\": \"Routing: telemetry messages dropped \",\r\n \"displayDescription\": \"The number of times messages were dropped by IoT Hub routing due to dead endpoints. This value does not count messages delivered to fallback route as dropped messages are not delivered there.\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"supportedAggregationTypes\": [\r\n \"Average\",\r\n \"Minimum\",\r\n \"Maximum\",\r\n \"Total\"\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"d2c.telemetry.egress.orphaned\",\r\n \"displayName\": \"Routing: telemetry messages orphaned \",\r\n \"displayDescription\": \"The number of times messages were orphaned by IoT Hub routing because they didn't match any routing rules (including the fallback rule). \",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"supportedAggregationTypes\": [\r\n \"Average\",\r\n \"Minimum\",\r\n \"Maximum\",\r\n \"Total\"\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"d2c.telemetry.egress.invalid\",\r\n \"displayName\": \"Routing: telemetry messages incompatible\",\r\n \"displayDescription\": \"The number of times IoT Hub routing failed to deliver messages due to an incompatibility with the endpoint. This value does not include retries.\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"supportedAggregationTypes\": [\r\n \"Average\",\r\n \"Minimum\",\r\n \"Maximum\",\r\n \"Total\"\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"d2c.telemetry.egress.fallback\",\r\n \"displayName\": \"Routing: messages delivered to fallback\",\r\n \"displayDescription\": \"The number of times IoT Hub routing delivered messages to the endpoint associated with the fallback route.\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"supportedAggregationTypes\": [\r\n \"Average\",\r\n \"Minimum\",\r\n \"Maximum\",\r\n \"Total\"\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"d2c.endpoints.egress.eventHubs\",\r\n \"displayName\": \"Routing: messages delivered to Event Hub\",\r\n \"displayDescription\": \"The number of times IoT Hub routing successfully delivered messages to Event Hub endpoints.\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"supportedAggregationTypes\": [\r\n \"Average\",\r\n \"Minimum\",\r\n \"Maximum\",\r\n \"Total\"\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"d2c.endpoints.latency.eventHubs\",\r\n \"displayName\": \"Routing: message latency for Event Hub\",\r\n \"displayDescription\": \"The average latency (milliseconds) between message ingress to IoT Hub and message ingress into an Event Hub endpoint.\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Milliseconds\",\r\n \"aggregationType\": \"Average\",\r\n \"supportedAggregationTypes\": [\r\n \"Average\",\r\n \"Minimum\",\r\n \"Maximum\"\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"d2c.endpoints.egress.serviceBusQueues\",\r\n \"displayName\": \"Routing: messages delivered to Service Bus Queue\",\r\n \"displayDescription\": \"The number of times IoT Hub routing successfully delivered messages to Service Bus queue endpoints.\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"supportedAggregationTypes\": [\r\n \"Average\",\r\n \"Minimum\",\r\n \"Maximum\",\r\n \"Total\"\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"d2c.endpoints.latency.serviceBusQueues\",\r\n \"displayName\": \"Routing: message latency for Service Bus Queue\",\r\n \"displayDescription\": \"The average latency (milliseconds) between message ingress to IoT Hub and telemetry message ingress into a Service Bus queue endpoint.\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Milliseconds\",\r\n \"aggregationType\": \"Average\",\r\n \"supportedAggregationTypes\": [\r\n \"Average\",\r\n \"Minimum\",\r\n \"Maximum\"\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"d2c.endpoints.egress.serviceBusTopics\",\r\n \"displayName\": \"Routing: messages delivered to Service Bus Topic\",\r\n \"displayDescription\": \"The number of times IoT Hub routing successfully delivered messages to Service Bus topic endpoints.\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"supportedAggregationTypes\": [\r\n \"Average\",\r\n \"Minimum\",\r\n \"Maximum\",\r\n \"Total\"\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"d2c.endpoints.latency.serviceBusTopics\",\r\n \"displayName\": \"Routing: message latency for Service Bus Topic\",\r\n \"displayDescription\": \"The average latency (milliseconds) between message ingress to IoT Hub and telemetry message ingress into a Service Bus topic endpoint.\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Milliseconds\",\r\n \"aggregationType\": \"Average\",\r\n \"supportedAggregationTypes\": [\r\n \"Average\",\r\n \"Minimum\",\r\n \"Maximum\"\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"d2c.endpoints.egress.builtIn.events\",\r\n \"displayName\": \"Routing: messages delivered to messages/events\",\r\n \"displayDescription\": \"The number of times IoT Hub routing successfully delivered messages to the built-in endpoint (messages/events).\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"supportedAggregationTypes\": [\r\n \"Average\",\r\n \"Minimum\",\r\n \"Maximum\",\r\n \"Total\"\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"d2c.endpoints.latency.builtIn.events\",\r\n \"displayName\": \"Routing: message latency for messages/events\",\r\n \"displayDescription\": \"The average latency (milliseconds) between message ingress to IoT Hub and telemetry message ingress into the built-in endpoint (messages/events).\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Milliseconds\",\r\n \"aggregationType\": \"Average\",\r\n \"supportedAggregationTypes\": [\r\n \"Average\",\r\n \"Minimum\",\r\n \"Maximum\"\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"d2c.endpoints.egress.storage\",\r\n \"displayName\": \"Routing: messages delivered to storage\",\r\n \"displayDescription\": \"The number of times IoT Hub routing successfully delivered messages to storage endpoints.\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"supportedAggregationTypes\": [\r\n \"Average\",\r\n \"Minimum\",\r\n \"Maximum\",\r\n \"Total\"\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"d2c.endpoints.latency.storage\",\r\n \"displayName\": \"Routing: message latency for storage\",\r\n \"displayDescription\": \"The average latency (milliseconds) between message ingress to IoT Hub and telemetry message ingress into a storage endpoint.\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Milliseconds\",\r\n \"aggregationType\": \"Average\",\r\n \"supportedAggregationTypes\": [\r\n \"Average\",\r\n \"Minimum\",\r\n \"Maximum\"\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"d2c.endpoints.egress.storage.bytes\",\r\n \"displayName\": \"Routing: data delivered to storage\",\r\n \"displayDescription\": \"The amount of data (bytes) IoT Hub routing delivered to storage endpoints.\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Bytes\",\r\n \"aggregationType\": \"Total\",\r\n \"supportedAggregationTypes\": [\r\n \"Average\",\r\n \"Minimum\",\r\n \"Maximum\",\r\n \"Total\"\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"d2c.endpoints.egress.storage.blobs\",\r\n \"displayName\": \"Routing: blobs delivered to storage\",\r\n \"displayDescription\": \"The number of times IoT Hub routing delivered blobs to storage endpoints.\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"supportedAggregationTypes\": [\r\n \"Average\",\r\n \"Minimum\",\r\n \"Maximum\",\r\n \"Total\"\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"EventGridDeliveries\",\r\n \"displayName\": \"Event Grid deliveries\",\r\n \"displayDescription\": \"The number of IoT Hub events published to Event Grid. Use the Result dimension for the number of successful and failed requests. EventType dimension shows the type of event (https://aka.ms/ioteventgrid).\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"supportedAggregationTypes\": [\r\n \"Average\",\r\n \"Minimum\",\r\n \"Maximum\",\r\n \"Total\"\r\n ],\r\n \"dimensions\": [\r\n {\r\n \"name\": \"Result\",\r\n \"displayName\": \"Routing Result\"\r\n },\r\n {\r\n \"name\": \"EventType\",\r\n \"displayName\": \"Event Type\"\r\n }\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"EventGridLatency\",\r\n \"displayName\": \"Event Grid latency\",\r\n \"displayDescription\": \"The average latency (milliseconds) from when the Iot Hub event was generated to when the event was published to Event Grid. This number is an average between all event types. Use the EventType dimension to see latency of a specific type of event.\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Milliseconds\",\r\n \"aggregationType\": \"Average\",\r\n \"supportedAggregationTypes\": [\r\n \"Average\",\r\n \"Minimum\",\r\n \"Maximum\"\r\n ],\r\n \"dimensions\": [\r\n {\r\n \"name\": \"EventType\",\r\n \"displayName\": \"Event Type\"\r\n }\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"RoutingDeliveries\",\r\n \"displayName\": \"Routing Deliveries (preview)\",\r\n \"displayDescription\": \"The number of times IoT Hub attempted to deliver messages to all endpoints using routing. To see the number of successful or failed attempts, use the Result dimension. To see the reason of failure, like invalid, dropped, or orphaned, use the FailureReasonCategory dimension. You can also use the EndpointName and EndpointType dimensions to understand how many messages were delivered to your different endpoints. The metric value increases by one for each delivery attempt, including if the message is delivered to multiple endpoints or if the message is delivered to the same endpoint multiple times.\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"supportedAggregationTypes\": [\r\n \"Average\",\r\n \"Minimum\",\r\n \"Maximum\",\r\n \"Total\"\r\n ],\r\n \"dimensions\": [\r\n {\r\n \"name\": \"EndpointType\",\r\n \"displayName\": \"Endpoint Type\"\r\n },\r\n {\r\n \"name\": \"EndpointName\",\r\n \"displayName\": \"Endpoint Name\"\r\n },\r\n {\r\n \"name\": \"FailureReasonCategory\",\r\n \"displayName\": \"Failure Reason Category\"\r\n },\r\n {\r\n \"name\": \"Result\",\r\n \"displayName\": \"Result\"\r\n },\r\n {\r\n \"name\": \"RoutingSource\",\r\n \"displayName\": \"Routing Source\"\r\n }\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"RoutingDeliveryLatency\",\r\n \"displayName\": \"Routing Delivery Latency (preview)\",\r\n \"displayDescription\": \"The average latency (milliseconds) between message ingress to IoT Hub and telemetry message ingress into an endpoint. You can use the EndpointName and EndpointType dimensions to understand the latency to your different endpoints.\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Milliseconds\",\r\n \"aggregationType\": \"Average\",\r\n \"supportedAggregationTypes\": [\r\n \"Average\",\r\n \"Minimum\",\r\n \"Maximum\"\r\n ],\r\n \"dimensions\": [\r\n {\r\n \"name\": \"EndpointType\",\r\n \"displayName\": \"Endpoint Type\"\r\n },\r\n {\r\n \"name\": \"EndpointName\",\r\n \"displayName\": \"Endpoint Name\"\r\n },\r\n {\r\n \"name\": \"RoutingSource\",\r\n \"displayName\": \"Routing Source\"\r\n }\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"RoutingDataSizeInBytesDelivered\",\r\n \"displayName\": \"Routing Delivery Message Size in Bytes (preview)\",\r\n \"displayDescription\": \"The total size in bytes of messages delivered by IoT hub to an endpoint. You can use the EndpointName and EndpointType dimensions to view the size of the messages in bytes delivered to your different endpoints. The metric value increases for every message delivered, including if the message is delivered to multiple endpoints or if the message is delivered to the same endpoint multiple times.\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Bytes\",\r\n \"aggregationType\": \"Total\",\r\n \"supportedAggregationTypes\": [\r\n \"Average\",\r\n \"Minimum\",\r\n \"Maximum\",\r\n \"Total\"\r\n ],\r\n \"dimensions\": [\r\n {\r\n \"name\": \"EndpointType\",\r\n \"displayName\": \"Endpoint Type\"\r\n },\r\n {\r\n \"name\": \"EndpointName\",\r\n \"displayName\": \"Endpoint Name\"\r\n },\r\n {\r\n \"name\": \"RoutingSource\",\r\n \"displayName\": \"Routing Source\"\r\n }\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"d2c.twin.read.success\",\r\n \"displayName\": \"Successful twin reads from devices\",\r\n \"displayDescription\": \"The count of all successful device-initiated twin reads.\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"supportedAggregationTypes\": [\r\n \"Average\",\r\n \"Minimum\",\r\n \"Maximum\",\r\n \"Total\"\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"d2c.twin.read.failure\",\r\n \"displayName\": \"Failed twin reads from devices\",\r\n \"displayDescription\": \"The count of all failed device-initiated twin reads.\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"supportedAggregationTypes\": [\r\n \"Average\",\r\n \"Minimum\",\r\n \"Maximum\",\r\n \"Total\"\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"d2c.twin.read.size\",\r\n \"displayName\": \"Response size of twin reads from devices\",\r\n \"displayDescription\": \"The average, min, and max of all successful device-initiated twin reads.\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Bytes\",\r\n \"aggregationType\": \"Average\",\r\n \"supportedAggregationTypes\": [\r\n \"Average\",\r\n \"Minimum\",\r\n \"Maximum\",\r\n \"Total\"\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"d2c.twin.update.success\",\r\n \"displayName\": \"Successful twin updates from devices\",\r\n \"displayDescription\": \"The count of all successful device-initiated twin updates.\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"supportedAggregationTypes\": [\r\n \"Average\",\r\n \"Minimum\",\r\n \"Maximum\",\r\n \"Total\"\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"d2c.twin.update.failure\",\r\n \"displayName\": \"Failed twin updates from devices\",\r\n \"displayDescription\": \"The count of all failed device-initiated twin updates.\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"supportedAggregationTypes\": [\r\n \"Average\",\r\n \"Minimum\",\r\n \"Maximum\",\r\n \"Total\"\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"d2c.twin.update.size\",\r\n \"displayName\": \"Size of twin updates from devices\",\r\n \"displayDescription\": \"The average, min, and max size of all successful device-initiated twin updates.\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Bytes\",\r\n \"aggregationType\": \"Average\",\r\n \"supportedAggregationTypes\": [\r\n \"Average\",\r\n \"Minimum\",\r\n \"Maximum\",\r\n \"Total\"\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"c2d.methods.success\",\r\n \"displayName\": \"Successful direct method invocations\",\r\n \"displayDescription\": \"The count of all successful direct method calls.\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"supportedAggregationTypes\": [\r\n \"Average\",\r\n \"Minimum\",\r\n \"Maximum\",\r\n \"Total\"\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"c2d.methods.failure\",\r\n \"displayName\": \"Failed direct method invocations\",\r\n \"displayDescription\": \"The count of all failed direct method calls.\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"supportedAggregationTypes\": [\r\n \"Average\",\r\n \"Minimum\",\r\n \"Maximum\",\r\n \"Total\"\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"c2d.methods.requestSize\",\r\n \"displayName\": \"Request size of direct method invocations\",\r\n \"displayDescription\": \"The average, min, and max of all successful direct method requests.\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Bytes\",\r\n \"aggregationType\": \"Average\",\r\n \"supportedAggregationTypes\": [\r\n \"Average\",\r\n \"Minimum\",\r\n \"Maximum\",\r\n \"Total\"\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"c2d.methods.responseSize\",\r\n \"displayName\": \"Response size of direct method invocations\",\r\n \"displayDescription\": \"The average, min, and max of all successful direct method responses.\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Bytes\",\r\n \"aggregationType\": \"Average\",\r\n \"supportedAggregationTypes\": [\r\n \"Average\",\r\n \"Minimum\",\r\n \"Maximum\",\r\n \"Total\"\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"c2d.twin.read.success\",\r\n \"displayName\": \"Successful twin reads from back end\",\r\n \"displayDescription\": \"The count of all successful back-end-initiated twin reads.\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"supportedAggregationTypes\": [\r\n \"Average\",\r\n \"Minimum\",\r\n \"Maximum\",\r\n \"Total\"\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"c2d.twin.read.failure\",\r\n \"displayName\": \"Failed twin reads from back end\",\r\n \"displayDescription\": \"The count of all failed back-end-initiated twin reads.\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"supportedAggregationTypes\": [\r\n \"Average\",\r\n \"Minimum\",\r\n \"Maximum\",\r\n \"Total\"\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"c2d.twin.read.size\",\r\n \"displayName\": \"Response size of twin reads from back end\",\r\n \"displayDescription\": \"The average, min, and max of all successful back-end-initiated twin reads.\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Bytes\",\r\n \"aggregationType\": \"Average\",\r\n \"supportedAggregationTypes\": [\r\n \"Average\",\r\n \"Minimum\",\r\n \"Maximum\",\r\n \"Total\"\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"c2d.twin.update.success\",\r\n \"displayName\": \"Successful twin updates from back end\",\r\n \"displayDescription\": \"The count of all successful back-end-initiated twin updates.\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"supportedAggregationTypes\": [\r\n \"Average\",\r\n \"Minimum\",\r\n \"Maximum\",\r\n \"Total\"\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"c2d.twin.update.failure\",\r\n \"displayName\": \"Failed twin updates from back end\",\r\n \"displayDescription\": \"The count of all failed back-end-initiated twin updates.\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"supportedAggregationTypes\": [\r\n \"Average\",\r\n \"Minimum\",\r\n \"Maximum\",\r\n \"Total\"\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"c2d.twin.update.size\",\r\n \"displayName\": \"Size of twin updates from back end\",\r\n \"displayDescription\": \"The average, min, and max size of all successful back-end-initiated twin updates.\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Bytes\",\r\n \"aggregationType\": \"Average\",\r\n \"supportedAggregationTypes\": [\r\n \"Average\",\r\n \"Minimum\",\r\n \"Maximum\",\r\n \"Total\"\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"twinQueries.success\",\r\n \"displayName\": \"Successful twin queries\",\r\n \"displayDescription\": \"The count of all successful twin queries.\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"supportedAggregationTypes\": [\r\n \"Average\",\r\n \"Minimum\",\r\n \"Maximum\",\r\n \"Total\"\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"twinQueries.failure\",\r\n \"displayName\": \"Failed twin queries\",\r\n \"displayDescription\": \"The count of all failed twin queries.\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"supportedAggregationTypes\": [\r\n \"Average\",\r\n \"Minimum\",\r\n \"Maximum\",\r\n \"Total\"\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"twinQueries.resultSize\",\r\n \"displayName\": \"Twin queries result size\",\r\n \"displayDescription\": \"The average, min, and max of the result size of all successful twin queries.\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Bytes\",\r\n \"aggregationType\": \"Average\",\r\n \"supportedAggregationTypes\": [\r\n \"Average\",\r\n \"Minimum\",\r\n \"Maximum\",\r\n \"Total\"\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"jobs.createTwinUpdateJob.success\",\r\n \"displayName\": \"Successful creations of twin update jobs\",\r\n \"displayDescription\": \"The count of all successful creation of twin update jobs.\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"supportedAggregationTypes\": [\r\n \"Average\",\r\n \"Minimum\",\r\n \"Maximum\",\r\n \"Total\"\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"jobs.createTwinUpdateJob.failure\",\r\n \"displayName\": \"Failed creations of twin update jobs\",\r\n \"displayDescription\": \"The count of all failed creation of twin update jobs.\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"supportedAggregationTypes\": [\r\n \"Average\",\r\n \"Minimum\",\r\n \"Maximum\",\r\n \"Total\"\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"jobs.createDirectMethodJob.success\",\r\n \"displayName\": \"Successful creations of method invocation jobs\",\r\n \"displayDescription\": \"The count of all successful creation of direct method invocation jobs.\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"supportedAggregationTypes\": [\r\n \"Average\",\r\n \"Minimum\",\r\n \"Maximum\",\r\n \"Total\"\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"jobs.createDirectMethodJob.failure\",\r\n \"displayName\": \"Failed creations of method invocation jobs\",\r\n \"displayDescription\": \"The count of all failed creation of direct method invocation jobs.\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"supportedAggregationTypes\": [\r\n \"Average\",\r\n \"Minimum\",\r\n \"Maximum\",\r\n \"Total\"\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"jobs.listJobs.success\",\r\n \"displayName\": \"Successful calls to list jobs\",\r\n \"displayDescription\": \"The count of all successful calls to list jobs.\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"supportedAggregationTypes\": [\r\n \"Average\",\r\n \"Minimum\",\r\n \"Maximum\",\r\n \"Total\"\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"jobs.listJobs.failure\",\r\n \"displayName\": \"Failed calls to list jobs\",\r\n \"displayDescription\": \"The count of all failed calls to list jobs.\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"supportedAggregationTypes\": [\r\n \"Average\",\r\n \"Minimum\",\r\n \"Maximum\",\r\n \"Total\"\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"jobs.cancelJob.success\",\r\n \"displayName\": \"Successful job cancellations\",\r\n \"displayDescription\": \"The count of all successful calls to cancel a job.\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"supportedAggregationTypes\": [\r\n \"Average\",\r\n \"Minimum\",\r\n \"Maximum\",\r\n \"Total\"\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"jobs.cancelJob.failure\",\r\n \"displayName\": \"Failed job cancellations\",\r\n \"displayDescription\": \"The count of all failed calls to cancel a job.\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"supportedAggregationTypes\": [\r\n \"Average\",\r\n \"Minimum\",\r\n \"Maximum\",\r\n \"Total\"\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"jobs.queryJobs.success\",\r\n \"displayName\": \"Successful job queries\",\r\n \"displayDescription\": \"The count of all successful calls to query jobs.\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"supportedAggregationTypes\": [\r\n \"Average\",\r\n \"Minimum\",\r\n \"Maximum\",\r\n \"Total\"\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"jobs.queryJobs.failure\",\r\n \"displayName\": \"Failed job queries\",\r\n \"displayDescription\": \"The count of all failed calls to query jobs.\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"supportedAggregationTypes\": [\r\n \"Average\",\r\n \"Minimum\",\r\n \"Maximum\",\r\n \"Total\"\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"jobs.completed\",\r\n \"displayName\": \"Completed jobs\",\r\n \"displayDescription\": \"The count of all completed jobs.\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"supportedAggregationTypes\": [\r\n \"Average\",\r\n \"Minimum\",\r\n \"Maximum\",\r\n \"Total\"\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"jobs.failed\",\r\n \"displayName\": \"Failed jobs\",\r\n \"displayDescription\": \"The count of all failed jobs.\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"supportedAggregationTypes\": [\r\n \"Average\",\r\n \"Minimum\",\r\n \"Maximum\",\r\n \"Total\"\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"d2c.telemetry.ingress.sendThrottle\",\r\n \"displayName\": \"Number of throttling errors\",\r\n \"displayDescription\": \"Number of throttling errors due to device throughput throttles\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"supportedAggregationTypes\": [\r\n \"Average\",\r\n \"Minimum\",\r\n \"Maximum\",\r\n \"Total\"\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"dailyMessageQuotaUsed\",\r\n \"displayName\": \"Total number of messages used\",\r\n \"displayDescription\": \"Number of total messages used today\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Maximum\",\r\n \"supportedAggregationTypes\": [\r\n \"Average\",\r\n \"Minimum\",\r\n \"Maximum\"\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"deviceDataUsage\",\r\n \"displayName\": \"Total device data usage\",\r\n \"displayDescription\": \"Bytes transferred to and from any devices connected to IotHub\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Bytes\",\r\n \"aggregationType\": \"Total\",\r\n \"supportedAggregationTypes\": [\r\n \"Average\",\r\n \"Minimum\",\r\n \"Maximum\",\r\n \"Total\"\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"deviceDataUsageV2\",\r\n \"displayName\": \"Total device data usage (preview)\",\r\n \"displayDescription\": \"Bytes transferred to and from any devices connected to IotHub\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Bytes\",\r\n \"aggregationType\": \"Total\",\r\n \"supportedAggregationTypes\": [\r\n \"Average\",\r\n \"Minimum\",\r\n \"Maximum\",\r\n \"Total\"\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"totalDeviceCount\",\r\n \"displayName\": \"Total devices\",\r\n \"displayDescription\": \"Number of devices registered to your IoT hub\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Average\",\r\n \"supportedAggregationTypes\": [\r\n \"Average\",\r\n \"Maximum\",\r\n \"Minimum\"\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ],\r\n \"lockAggregationType\": \"Total\"\r\n },\r\n {\r\n \"name\": \"connectedDeviceCount\",\r\n \"displayName\": \"Connected devices\",\r\n \"displayDescription\": \"Number of devices connected to your IoT hub\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Average\",\r\n \"supportedAggregationTypes\": [\r\n \"Average\",\r\n \"Maximum\",\r\n \"Minimum\"\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ],\r\n \"lockAggregationType\": \"Total\"\r\n },\r\n {\r\n \"name\": \"configurations\",\r\n \"displayName\": \"Configuration Metrics\",\r\n \"displayDescription\": \"Metrics for Configuration Operations\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"supportedAggregationTypes\": [\r\n \"Average\",\r\n \"Minimum\",\r\n \"Maximum\",\r\n \"Total\"\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/IotHubs/logDefinitions/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": \"IotHubs\",\r\n \"operation\": \"Read IotHub service log definitions\",\r\n \"description\": \"Gets the available log definitions for the IotHub Service\"\r\n },\r\n \"properties\": {\r\n \"serviceSpecification\": {\r\n \"logSpecifications\": [\r\n {\r\n \"name\": \"Connections\",\r\n \"displayName\": \"Connections\",\r\n \"blobDuration\": \"PT1H\"\r\n },\r\n {\r\n \"name\": \"DeviceTelemetry\",\r\n \"displayName\": \"Device Telemetry\",\r\n \"blobDuration\": \"PT1H\"\r\n },\r\n {\r\n \"name\": \"C2DCommands\",\r\n \"displayName\": \"C2D Commands\",\r\n \"blobDuration\": \"PT1H\"\r\n },\r\n {\r\n \"name\": \"DeviceIdentityOperations\",\r\n \"displayName\": \"Device Identity Operations\",\r\n \"blobDuration\": \"PT1H\"\r\n },\r\n {\r\n \"name\": \"FileUploadOperations\",\r\n \"displayName\": \"File Upload Operations\",\r\n \"blobDuration\": \"PT1H\"\r\n },\r\n {\r\n \"name\": \"Routes\",\r\n \"displayName\": \"Routes\",\r\n \"blobDuration\": \"PT1H\"\r\n },\r\n {\r\n \"name\": \"D2CTwinOperations\",\r\n \"displayName\": \"D2CTwinOperations\",\r\n \"blobDuration\": \"PT1H\"\r\n },\r\n {\r\n \"name\": \"C2DTwinOperations\",\r\n \"displayName\": \"C2D Twin Operations\",\r\n \"blobDuration\": \"PT1H\"\r\n },\r\n {\r\n \"name\": \"TwinQueries\",\r\n \"displayName\": \"Twin Queries\",\r\n \"blobDuration\": \"PT1H\"\r\n },\r\n {\r\n \"name\": \"JobsOperations\",\r\n \"displayName\": \"Jobs Operations\",\r\n \"blobDuration\": \"PT1H\"\r\n },\r\n {\r\n \"name\": \"DirectMethods\",\r\n \"displayName\": \"Direct Methods\",\r\n \"blobDuration\": \"PT1H\"\r\n },\r\n {\r\n \"name\": \"DistributedTracing\",\r\n \"displayName\": \"Distributed Tracing (Preview)\",\r\n \"blobDuration\": \"PT1H\"\r\n },\r\n {\r\n \"name\": \"Configurations\",\r\n \"displayName\": \"Configurations\",\r\n \"blobDuration\": \"PT1H\"\r\n },\r\n {\r\n \"name\": \"DeviceStreams\",\r\n \"displayName\": \"Device Streams (Preview)\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/IotHubs/devices/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": \"IotHubs\",\r\n \"operation\": \"Read Device/Module\",\r\n \"description\": \"Read any device or module identity\"\r\n },\r\n \"properties\": null,\r\n \"isDataAction\": true\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/IotHubs/devices/write\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": \"IotHubs\",\r\n \"operation\": \"Write Device/Module\",\r\n \"description\": \"Create or update any device or module identity\"\r\n },\r\n \"properties\": null,\r\n \"isDataAction\": true\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/IotHubs/devices/delete\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": \"IotHubs\",\r\n \"operation\": \"Delete Device/Module\",\r\n \"description\": \"Delete any device or module identity\"\r\n },\r\n \"properties\": null,\r\n \"isDataAction\": true\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/IotHubs/twins/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": \"IotHubs\",\r\n \"operation\": \"Read DeviceTwin\",\r\n \"description\": \"Read any device or module twin\"\r\n },\r\n \"properties\": null,\r\n \"isDataAction\": true\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/IotHubs/twins/write\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": \"IotHubs\",\r\n \"operation\": \"Write DeviceTwin\",\r\n \"description\": \"Write any device or module twin\"\r\n },\r\n \"properties\": null,\r\n \"isDataAction\": true\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/IotHubs/jobs/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": \"IotHubs\",\r\n \"operation\": \"Read Jobs\",\r\n \"description\": \"Return a list of jobs\"\r\n },\r\n \"properties\": null,\r\n \"isDataAction\": true\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/IotHubs/jobs/write\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": \"IotHubs\",\r\n \"operation\": \"Write Jobs\",\r\n \"description\": \"Create or update any job\"\r\n },\r\n \"properties\": null,\r\n \"isDataAction\": true\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/IotHubs/jobs/delete\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": \"IotHubs\",\r\n \"operation\": \"Delete Jobs\",\r\n \"description\": \"Delete any job\"\r\n },\r\n \"properties\": null,\r\n \"isDataAction\": true\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/IotHubs/cloudToDeviceMessages/send/action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": \"IotHubs\",\r\n \"operation\": \"Send cloud-to-device message\",\r\n \"description\": \"Send cloud-to-device message to any device \"\r\n },\r\n \"properties\": null,\r\n \"isDataAction\": true\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/IotHubs/cloudToDeviceMessages/feedback/action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": \"IotHubs\",\r\n \"operation\": \"Receive cloud-to-device messages\",\r\n \"description\": \"Receive, complete, or abandon cloud-to-device message feedback notification\"\r\n },\r\n \"properties\": null,\r\n \"isDataAction\": true\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/IotHubs/cloudToDeviceMessages/queue/purge/action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": \"IotHubs\",\r\n \"operation\": \"Delete cloud-to-device messages\",\r\n \"description\": \"Deletes all the pending commands for a device\"\r\n },\r\n \"properties\": null,\r\n \"isDataAction\": true\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/IotHubs/directMethods/invoke/action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": \"IotHubs\",\r\n \"operation\": \"Invoke Direct Method\",\r\n \"description\": \"Invokes a direct method on a device\"\r\n },\r\n \"properties\": null,\r\n \"isDataAction\": true\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/IotHubs/fileUpload/notifications/action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": \"IotHubs\",\r\n \"operation\": \"File Upload Notifications\",\r\n \"description\": \"Receive, complete, or abandon file upload notifications\"\r\n },\r\n \"properties\": null,\r\n \"isDataAction\": true\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/IotHubs/statistics/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": \"IotHubs\",\r\n \"operation\": \"Read Statistics\",\r\n \"description\": \"Read device and service statistics\"\r\n },\r\n \"properties\": null,\r\n \"isDataAction\": true\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/IotHubs/configurations/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": \"IotHubs\",\r\n \"operation\": \"Read Configuration\",\r\n \"description\": \"Read device management configurations\"\r\n },\r\n \"properties\": null,\r\n \"isDataAction\": true\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/IotHubs/configurations/write\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": \"IotHubs\",\r\n \"operation\": \"Write Configuration\",\r\n \"description\": \"Create or update device management configurations\"\r\n },\r\n \"properties\": null,\r\n \"isDataAction\": true\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/IotHubs/configurations/delete\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": \"IotHubs\",\r\n \"operation\": \"Delete Configuration\",\r\n \"description\": \"Delete any device management configuration\"\r\n },\r\n \"properties\": null,\r\n \"isDataAction\": true\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/IotHubs/configurations/applyToEdgeDevice/action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": \"IotHubs\",\r\n \"operation\": \"Apply Configuration to Edge Device\",\r\n \"description\": \"Applies the configuration content to an edge device\"\r\n },\r\n \"properties\": null,\r\n \"isDataAction\": true\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/IotHubs/configurations/testQueries/action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": \"IotHubs\",\r\n \"operation\": \"Test Configuration Queries\",\r\n \"description\": \"Validates target condition and custom metric queries for a configuration\"\r\n },\r\n \"properties\": null,\r\n \"isDataAction\": true\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/iotHubs/Read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": null,\r\n \"operation\": \"Get IotHub(s)\",\r\n \"description\": \"Gets the IotHub resource(s)\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/iotHubs/Write\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": null,\r\n \"operation\": \"Create or update IotHub Resource\",\r\n \"description\": \"Create or update IotHub Resource\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/iotHubs/Delete\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": null,\r\n \"operation\": \"Delete IotHub Resource\",\r\n \"description\": \"Delete IotHub Resource\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/iotHubs/operationresults/Read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": null,\r\n \"operation\": \"Get Operation Result (Obsolete API)\",\r\n \"description\": \"Get Operation Result (Obsolete API)\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/iotHubs/iotHubStats/Read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": null,\r\n \"operation\": \"Get IotHub Statistics\",\r\n \"description\": \"Get IotHub Statistics\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/iotHubs/skus/Read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": null,\r\n \"operation\": \"Get valid IotHub Skus\",\r\n \"description\": \"Get valid IotHub Skus\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/iotHubs/listkeys/Action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": null,\r\n \"operation\": \"Get all IotHub Keys\",\r\n \"description\": \"Get all IotHub Keys\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/iotHubs/iotHubKeys/listkeys/Action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": null,\r\n \"operation\": \"Get IotHub Key for the given name\",\r\n \"description\": \"Get IotHub Key for the given name\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/iotHubs/eventHubEndpoints/consumerGroups/Write\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": null,\r\n \"operation\": \"Create EventHub Consumer Group\",\r\n \"description\": \"Create EventHub Consumer Group\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/iotHubs/eventHubEndpoints/consumerGroups/Read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": null,\r\n \"operation\": \"Get EventHub Consumer Group(s)\",\r\n \"description\": \"Get EventHub Consumer Group(s)\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/iotHubs/eventHubEndpoints/consumerGroups/Delete\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": null,\r\n \"operation\": \"Delete EventHub Consumer Group\",\r\n \"description\": \"Delete EventHub Consumer Group\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/iotHubs/exportDevices/Action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": null,\r\n \"operation\": \"Export Devices\",\r\n \"description\": \"Export Devices\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/iotHubs/importDevices/Action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": null,\r\n \"operation\": \"Import Devices\",\r\n \"description\": \"Import Devices\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/iotHubs/jobs/Read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": null,\r\n \"operation\": \"Get the Job(s) on IotHub\",\r\n \"description\": \"Get Job(s) details submitted on given IotHub\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/iotHubs/quotaMetrics/Read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": null,\r\n \"operation\": \"Get Quota Metrics\",\r\n \"description\": \"Get Quota Metrics\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/iotHubs/routing/$testall/Action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": null,\r\n \"operation\": \"Routing Rule Test All\",\r\n \"description\": \"Test a message against all existing Routes\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/iotHubs/routing/$testnew/Action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": null,\r\n \"operation\": \"Routing Rule Test Route\",\r\n \"description\": \"Test a message against a provided test Route\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/iotHubs/routingEndpointsHealth/Read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": null,\r\n \"operation\": \"Get Endpoint Health\",\r\n \"description\": \"Gets the health of all routing Endpoints for an IotHub\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/operations/Read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": null,\r\n \"operation\": \"Get All ResourceProvider Operations\",\r\n \"description\": \"Get All ResourceProvider Operations\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/checkNameAvailability/Action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": null,\r\n \"operation\": \"Check If IotHub name is available\",\r\n \"description\": \"Check If IotHub name is available\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/checkProvisioningServiceNameAvailability/Action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": null,\r\n \"operation\": \"Check If Provisioning Service name is available\",\r\n \"description\": \"Check If Provisioning service name is available\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/usages/Read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": null,\r\n \"operation\": \"Get Subscription Usages\",\r\n \"description\": \"Get subscription usage details for this provider.\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/operationresults/Read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": null,\r\n \"operation\": \"Get Operation Result\",\r\n \"description\": \"Get Operation Result\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/locations/operationresults/Read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": null,\r\n \"operation\": \"Get Location based Operation Result\",\r\n \"description\": \"Get Location based Operation Result\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/iotHubs/certificates/Read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": null,\r\n \"operation\": \"Gets the Certificate\",\r\n \"description\": \"Gets the Certificate\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/iotHubs/certificates/Write\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": null,\r\n \"operation\": \"Create or Update Certificate\",\r\n \"description\": \"Create or Update Certificate\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/iotHubs/certificates/Delete\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": null,\r\n \"operation\": \"Deletes Certificate\",\r\n \"description\": \"Deletes Certificate\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/iotHubs/certificates/generateVerificationCode/Action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": null,\r\n \"operation\": \"Generate Verification code\",\r\n \"description\": \"Generate Verification code\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/iotHubs/certificates/verify/Action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": null,\r\n \"operation\": \"Verify Certificate resource\",\r\n \"description\": \"Verify Certificate resource\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/provisioningServices/Read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": null,\r\n \"operation\": \"Get IotDps resource\",\r\n \"description\": \"Get IotDps resource\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/provisioningServices/Write\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": null,\r\n \"operation\": \"Create IotDps resource\",\r\n \"description\": \"Create IotDps resource\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/provisioningServices/Delete\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": null,\r\n \"operation\": \"Delete IotDps resource\",\r\n \"description\": \"Delete IotDps resource\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/provisioningServices/operationresults/Read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": null,\r\n \"operation\": \"Get DPS Operation Result\",\r\n \"description\": \"Get DPS Operation Result\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/provisioningServices/skus/Read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": null,\r\n \"operation\": \"Get valid IotDps Skus\",\r\n \"description\": \"Get valid IotDps Skus\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/provisioningServices/listkeys/Action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": null,\r\n \"operation\": \"Get all IotDps keys\",\r\n \"description\": \"Get all IotDps keys\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/provisioningServices/keys/listkeys/Action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": null,\r\n \"operation\": \"Get IotDps Keys for key name\",\r\n \"description\": \"Get IotDps Keys for key name\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/provisioningServices/certificates/Read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": null,\r\n \"operation\": \"Gets the Certificate\",\r\n \"description\": \"Gets the Certificate\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/provisioningServices/certificates/Write\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": null,\r\n \"operation\": \"Create or Update Certificate\",\r\n \"description\": \"Create or Update Certificate\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/provisioningServices/certificates/Delete\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": null,\r\n \"operation\": \"Deletes Certificate\",\r\n \"description\": \"Deletes Certificate\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/provisioningServices/certificates/generateVerificationCode/Action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": null,\r\n \"operation\": \"Generate Verification code\",\r\n \"description\": \"Generate Verification code\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/provisioningServices/certificates/verify/Action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": null,\r\n \"operation\": \"Verify Certificate resource\",\r\n \"description\": \"Verify Certificate resource\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/provisioningServices/diagnosticSettings/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": \"provisioningServices\",\r\n \"operation\": \"Get Diagnostic Setting\",\r\n \"description\": \"Gets the diagnostic setting for the resource\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/provisioningServices/diagnosticSettings/write\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": \"provisioningServices\",\r\n \"operation\": \"Set Diagnostic Setting\",\r\n \"description\": \"Creates or updates the diagnostic setting for the resource\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/provisioningServices/metricDefinitions/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": \"provisioningServices\",\r\n \"operation\": \"Read provisioning service metric definitions\",\r\n \"description\": \"Gets the available metrics for the provisioning service\"\r\n },\r\n \"properties\": {\r\n \"serviceSpecification\": {\r\n \"metricSpecifications\": [\r\n {\r\n \"name\": \"RegistrationAttempts\",\r\n \"displayName\": \"Registration attempts\",\r\n \"displayDescription\": \"Number of device registrations attempted\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"dimensions\": [\r\n {\r\n \"name\": \"ProvisioningServiceName\",\r\n \"displayName\": \"Provisioning service name\"\r\n },\r\n {\r\n \"name\": \"IotHubName\",\r\n \"displayName\": \"IoT hub name\"\r\n },\r\n {\r\n \"name\": \"Status\",\r\n \"displayName\": \"Status\",\r\n \"toBeExportedForShoebox\": true\r\n }\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"DeviceAssignments\",\r\n \"displayName\": \"Devices assigned\",\r\n \"displayDescription\": \"Number of devices assigned to an IoT hub\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"dimensions\": [\r\n {\r\n \"name\": \"ProvisioningServiceName\",\r\n \"displayName\": \"Provisioning service name\"\r\n },\r\n {\r\n \"name\": \"IotHubName\",\r\n \"displayName\": \"IoT hub name\"\r\n }\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"AttestationAttempts\",\r\n \"displayName\": \"Attestation attempts\",\r\n \"displayDescription\": \"Number of device attestations attempted\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"dimensions\": [\r\n {\r\n \"name\": \"ProvisioningServiceName\",\r\n \"displayName\": \"Provisioning service name\"\r\n },\r\n {\r\n \"name\": \"Status\",\r\n \"displayName\": \"Status\",\r\n \"toBeExportedForShoebox\": true\r\n },\r\n {\r\n \"name\": \"Protocol\",\r\n \"displayName\": \"Protocol\"\r\n }\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/provisioningServices/logDefinitions/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": \"provisioningServices\",\r\n \"operation\": \"Read provisioning service log definitions\",\r\n \"description\": \"Gets the available log definitions for the provisioning Service\"\r\n },\r\n \"properties\": {\r\n \"serviceSpecification\": {\r\n \"logSpecifications\": [\r\n {\r\n \"name\": \"DeviceOperations\",\r\n \"displayName\": \"Device Operations\",\r\n \"blobDuration\": \"PT1H\"\r\n },\r\n {\r\n \"name\": \"ServiceOperations\",\r\n \"displayName\": \"Service Operations\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/register/action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": \"Account\",\r\n \"operation\": \"Register Resource Provider\",\r\n \"description\": \"Register the subscription for the IotHub resource provider and enables the creation of IotHub resources\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/Account/diagnosticSettings/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": \"Account\",\r\n \"operation\": \"Get Diagnostic Setting\",\r\n \"description\": \"Gets the diagnostic setting for the resource\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/Account/diagnosticSettings/write\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": \"Account\",\r\n \"operation\": \"Set Diagnostic Setting\",\r\n \"description\": \"Creates or updates the diagnostic setting for the resource\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/Account/metricDefinitions/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": \"Account\",\r\n \"operation\": \"Read IotHub service metric definitions\",\r\n \"description\": \"Gets the available metrics for the IotHub service\"\r\n },\r\n \"properties\": {\r\n \"serviceSpecification\": {\r\n \"metricSpecifications\": [\r\n {\r\n \"name\": \"digitaltwins.telemetry.nodes\",\r\n \"displayName\": \"Digital Twins Node Telemetry Placeholder\",\r\n \"displayDescription\": \"Digital Twins Node Telemetry Placeholder\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"supportedAggregationTypes\": [\r\n \"Average\",\r\n \"Minimum\",\r\n \"Maximum\",\r\n \"Total\"\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/Account/logDefinitions/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": \"Account\",\r\n \"operation\": \"Read IotHub service log definitions\",\r\n \"description\": \"Gets the available log definitions for the IotHub Service\"\r\n },\r\n \"properties\": {\r\n \"serviceSpecification\": {\r\n \"logSpecifications\": [\r\n {\r\n \"name\": \"TwinQueries\",\r\n \"displayName\": \"Twin Queries\",\r\n \"blobDuration\": \"PT1H\"\r\n },\r\n {\r\n \"name\": \"DistributedTracing\",\r\n \"displayName\": \"Distributed Tracing (Preview)\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/operations/Read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": null,\r\n \"operation\": \"Get All ResourceProvider Operations\",\r\n \"description\": \"Get All ResourceProvider Operations\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/checkNameAvailability/Action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": null,\r\n \"operation\": \"Check If IotHub name is available\",\r\n \"description\": \"Check If IotHub name is available\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/checkProvisioningServiceNameAvailability/Action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": null,\r\n \"operation\": \"Check If Provisioning Service name is available\",\r\n \"description\": \"Check If Provisioning service name is available\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/usages/Read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": null,\r\n \"operation\": \"Get Subscription Usages\",\r\n \"description\": \"Get subscription usage details for this provider.\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/operationresults/Read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": null,\r\n \"operation\": \"Get Operation Result\",\r\n \"description\": \"Get Operation Result\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/locations/operationresults/Read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": null,\r\n \"operation\": \"Get Location based Operation Result\",\r\n \"description\": \"Get Location based Operation Result\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/iotHubs/certificates/Read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": null,\r\n \"operation\": \"Gets the Certificate\",\r\n \"description\": \"Gets the Certificate\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/iotHubs/certificates/Write\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": null,\r\n \"operation\": \"Create or Update Certificate\",\r\n \"description\": \"Create or Update Certificate\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/iotHubs/certificates/Delete\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": null,\r\n \"operation\": \"Deletes Certificate\",\r\n \"description\": \"Deletes Certificate\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/iotHubs/certificates/generateVerificationCode/Action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": null,\r\n \"operation\": \"Generate Verification code\",\r\n \"description\": \"Generate Verification code\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/iotHubs/certificates/verify/Action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": null,\r\n \"operation\": \"Verify Certificate resource\",\r\n \"description\": \"Verify Certificate resource\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/digitalTwins/Read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": null,\r\n \"operation\": \"Get Digital Twins Accounts\",\r\n \"description\": \"Gets a list of the Digital Twins Accounts associated to an subscription\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/digitalTwins/Write\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": null,\r\n \"operation\": \"Create a new Digital Twins Account\",\r\n \"description\": \"Create a new Digitial Twins Account\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/digitalTwins/Delete\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": null,\r\n \"operation\": \"Delete an existing Digital Twins Account\",\r\n \"description\": \"Delete an existing Digital Twins Account and all of its children\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/digitalTwins/operationresults/Read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": null,\r\n \"operation\": \"Get the status of an operation against a Digital Twins Account\",\r\n \"description\": \"Get the status of an operation against a Digital Twins Account\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/digitalTwins/skus/Read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": null,\r\n \"operation\": \"Get Digital Twins Account SKUs\",\r\n \"description\": \"Get a list of the valid SKUs for Digital Twins Accounts\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/ElasticPools/diagnosticSettings/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": \"ElasticPools\",\r\n \"operation\": \"Get Diagnostic Setting\",\r\n \"description\": \"Gets the diagnostic setting for the resource\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/ElasticPools/diagnosticSettings/write\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": \"ElasticPools\",\r\n \"operation\": \"Set Diagnostic Setting\",\r\n \"description\": \"Creates or updates the diagnostic setting for the resource\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/ElasticPools/metricDefinitions/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": \"ElasticPools\",\r\n \"operation\": \"Read IotHub service metric definitions\",\r\n \"description\": \"Gets the available metrics for the IotHub service\"\r\n },\r\n \"properties\": {\r\n \"serviceSpecification\": {\r\n \"metricSpecifications\": [\r\n {\r\n \"name\": \"elasticPool.requestedUsageRate\",\r\n \"displayName\": \"requested usage rate\",\r\n \"displayDescription\": \"requested usage rate\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Percent\",\r\n \"aggregationType\": \"Average\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/register/action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": \"IotHubTenants\",\r\n \"operation\": \"Register Resource Provider\",\r\n \"description\": \"Register the subscription for the IotHub resource provider and enables the creation of IotHub resources\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/ElasticPools/IotHubTenants/diagnosticSettings/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": \"IotHubTenants\",\r\n \"operation\": \"Get Diagnostic Setting\",\r\n \"description\": \"Gets the diagnostic setting for the resource\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/ElasticPools/IotHubTenants/diagnosticSettings/write\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": \"IotHubTenants\",\r\n \"operation\": \"Set Diagnostic Setting\",\r\n \"description\": \"Creates or updates the diagnostic setting for the resource\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/ElasticPools/IotHubTenants/metricDefinitions/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": \"IotHubTenants\",\r\n \"operation\": \"Read IotHub service metric definitions\",\r\n \"description\": \"Gets the available metrics for the IotHub service\"\r\n },\r\n \"properties\": {\r\n \"serviceSpecification\": {\r\n \"metricSpecifications\": [\r\n {\r\n \"name\": \"tenantHub.requestedUsageRate\",\r\n \"displayName\": \"requested usage rate\",\r\n \"displayDescription\": \"requested usage rate\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Percent\",\r\n \"aggregationType\": \"Average\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"d2c.telemetry.ingress.allProtocol\",\r\n \"displayName\": \"Telemetry message send attempts\",\r\n \"displayDescription\": \"Number of device-to-cloud telemetry messages attempted to be sent to your IoT hub\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"d2c.telemetry.ingress.success\",\r\n \"displayName\": \"Telemetry messages sent\",\r\n \"displayDescription\": \"Number of device-to-cloud telemetry messages sent successfully to your IoT hub\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"c2d.commands.egress.complete.success\",\r\n \"displayName\": \"C2D message deliveries completed\",\r\n \"displayDescription\": \"Number of cloud-to-device message deliveries completed successfully by the device\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"c2d.commands.egress.abandon.success\",\r\n \"displayName\": \"C2D messages abandoned\",\r\n \"displayDescription\": \"Number of cloud-to-device messages abandoned by the device\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"c2d.commands.egress.reject.success\",\r\n \"displayName\": \"C2D messages rejected\",\r\n \"displayDescription\": \"Number of cloud-to-device messages rejected by the device\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"C2DMessagesExpired\",\r\n \"displayName\": \"C2D Messages Expired\",\r\n \"displayDescription\": \"Number of expired cloud-to-device messages\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"devices.totalDevices\",\r\n \"displayName\": \"Total devices (deprecated)\",\r\n \"displayDescription\": \"Number of devices registered to your IoT hub\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"devices.connectedDevices.allProtocol\",\r\n \"displayName\": \"Connected devices (deprecated) \",\r\n \"displayDescription\": \"Number of devices connected to your IoT hub\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"d2c.telemetry.egress.success\",\r\n \"displayName\": \"Routing: telemetry messages delivered\",\r\n \"displayDescription\": \"The number of times messages were successfully delivered to all endpoints using IoT Hub routing. If a message is routed to multiple endpoints, this value increases by one for each successful delivery. If a message is delivered to the same endpoint multiple times, this value increases by one for each successful delivery.\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"d2c.telemetry.egress.dropped\",\r\n \"displayName\": \"Routing: telemetry messages dropped \",\r\n \"displayDescription\": \"The number of times messages were dropped by IoT Hub routing due to dead endpoints. This value does not count messages delivered to fallback route as dropped messages are not delivered there.\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"d2c.telemetry.egress.orphaned\",\r\n \"displayName\": \"Routing: telemetry messages orphaned \",\r\n \"displayDescription\": \"The number of times messages were orphaned by IoT Hub routing because they didn't match any routing rules (including the fallback rule). \",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"d2c.telemetry.egress.invalid\",\r\n \"displayName\": \"Routing: telemetry messages incompatible\",\r\n \"displayDescription\": \"The number of times IoT Hub routing failed to deliver messages due to an incompatibility with the endpoint. This value does not include retries.\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"d2c.telemetry.egress.fallback\",\r\n \"displayName\": \"Routing: messages delivered to fallback\",\r\n \"displayDescription\": \"The number of times IoT Hub routing delivered messages to the endpoint associated with the fallback route.\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"d2c.endpoints.egress.eventHubs\",\r\n \"displayName\": \"Routing: messages delivered to Event Hub\",\r\n \"displayDescription\": \"The number of times IoT Hub routing successfully delivered messages to Event Hub endpoints.\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"d2c.endpoints.latency.eventHubs\",\r\n \"displayName\": \"Routing: message latency for Event Hub\",\r\n \"displayDescription\": \"The average latency (milliseconds) between message ingress to IoT Hub and message ingress into an Event Hub endpoint.\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Milliseconds\",\r\n \"aggregationType\": \"Average\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"d2c.endpoints.egress.serviceBusQueues\",\r\n \"displayName\": \"Routing: messages delivered to Service Bus Queue\",\r\n \"displayDescription\": \"The number of times IoT Hub routing successfully delivered messages to Service Bus queue endpoints.\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"d2c.endpoints.latency.serviceBusQueues\",\r\n \"displayName\": \"Routing: message latency for Service Bus Queue\",\r\n \"displayDescription\": \"The average latency (milliseconds) between message ingress to IoT Hub and telemetry message ingress into a Service Bus queue endpoint.\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Milliseconds\",\r\n \"aggregationType\": \"Average\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"d2c.endpoints.egress.serviceBusTopics\",\r\n \"displayName\": \"Routing: messages delivered to Service Bus Topic\",\r\n \"displayDescription\": \"The number of times IoT Hub routing successfully delivered messages to Service Bus topic endpoints.\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"d2c.endpoints.latency.serviceBusTopics\",\r\n \"displayName\": \"Routing: message latency for Service Bus Topic\",\r\n \"displayDescription\": \"The average latency (milliseconds) between message ingress to IoT Hub and telemetry message ingress into a Service Bus topic endpoint.\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Milliseconds\",\r\n \"aggregationType\": \"Average\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"d2c.endpoints.egress.builtIn.events\",\r\n \"displayName\": \"Routing: messages delivered to messages/events\",\r\n \"displayDescription\": \"The number of times IoT Hub routing successfully delivered messages to the built-in endpoint (messages/events).\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"d2c.endpoints.latency.builtIn.events\",\r\n \"displayName\": \"Routing: message latency for messages/events\",\r\n \"displayDescription\": \"The average latency (milliseconds) between message ingress to IoT Hub and telemetry message ingress into the built-in endpoint (messages/events).\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Milliseconds\",\r\n \"aggregationType\": \"Average\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"d2c.endpoints.egress.storage\",\r\n \"displayName\": \"Routing: messages delivered to storage\",\r\n \"displayDescription\": \"The number of times IoT Hub routing successfully delivered messages to storage endpoints.\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"d2c.endpoints.latency.storage\",\r\n \"displayName\": \"Routing: message latency for storage\",\r\n \"displayDescription\": \"The average latency (milliseconds) between message ingress to IoT Hub and telemetry message ingress into a storage endpoint.\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Milliseconds\",\r\n \"aggregationType\": \"Average\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"d2c.endpoints.egress.storage.bytes\",\r\n \"displayName\": \"Routing: data delivered to storage\",\r\n \"displayDescription\": \"The amount of data (bytes) IoT Hub routing delivered to storage endpoints.\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Bytes\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"d2c.endpoints.egress.storage.blobs\",\r\n \"displayName\": \"Routing: blobs delivered to storage\",\r\n \"displayDescription\": \"The number of times IoT Hub routing delivered blobs to storage endpoints.\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"EventGridDeliveries\",\r\n \"displayName\": \"Event Grid deliveries\",\r\n \"displayDescription\": \"The number of IoT Hub events published to Event Grid. Use the Result dimension for the number of successful and failed requests. EventType dimension shows the type of event (https://aka.ms/ioteventgrid).\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"dimensions\": [\r\n {\r\n \"name\": \"Result\",\r\n \"displayName\": \"Routing Result\"\r\n },\r\n {\r\n \"name\": \"EventType\",\r\n \"displayName\": \"Event Type\"\r\n }\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"EventGridLatency\",\r\n \"displayName\": \"Event Grid latency\",\r\n \"displayDescription\": \"The average latency (milliseconds) from when the Iot Hub event was generated to when the event was published to Event Grid. This number is an average between all event types. Use the EventType dimension to see latency of a specific type of event.\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Milliseconds\",\r\n \"aggregationType\": \"Average\",\r\n \"dimensions\": [\r\n {\r\n \"name\": \"EventType\",\r\n \"displayName\": \"Event Type\"\r\n }\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"RoutingDeliveries\",\r\n \"displayName\": \"Routing Deliveries (preview)\",\r\n \"displayDescription\": \"The number of times IoT Hub attempted to deliver messages to all endpoints using routing. To see the number of successful or failed attempts, use the Result dimension. To see the reason of failure, like invalid, dropped, or orphaned, use the FailureReasonCategory dimension. You can also use the EndpointName and EndpointType dimensions to understand how many messages were delivered to your different endpoints. The metric value increases by one for each delivery attempt, including if the message is delivered to multiple endpoints or if the message is delivered to the same endpoint multiple times.\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"dimensions\": [\r\n {\r\n \"name\": \"EndpointType\",\r\n \"displayName\": \"Endpoint Type\"\r\n },\r\n {\r\n \"name\": \"EndpointName\",\r\n \"displayName\": \"Endpoint Name\"\r\n },\r\n {\r\n \"name\": \"FailureReasonCategory\",\r\n \"displayName\": \"Failure Reason Category\"\r\n },\r\n {\r\n \"name\": \"Result\",\r\n \"displayName\": \"Result\"\r\n },\r\n {\r\n \"name\": \"RoutingSource\",\r\n \"displayName\": \"Routing Source\"\r\n }\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"RoutingDeliveryLatency\",\r\n \"displayName\": \"Routing Delivery Latency (preview)\",\r\n \"displayDescription\": \"The average latency (milliseconds) between message ingress to IoT Hub and telemetry message ingress into an endpoint. You can use the EndpointName and EndpointType dimensions to understand the latency to your different endpoints.\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Milliseconds\",\r\n \"aggregationType\": \"Average\",\r\n \"dimensions\": [\r\n {\r\n \"name\": \"EndpointType\",\r\n \"displayName\": \"Endpoint Type\"\r\n },\r\n {\r\n \"name\": \"EndpointName\",\r\n \"displayName\": \"Endpoint Name\"\r\n },\r\n {\r\n \"name\": \"RoutingSource\",\r\n \"displayName\": \"Routing Source\"\r\n }\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"RoutingDataSizeInBytesDelivered\",\r\n \"displayName\": \"Routing Delivery Message Size in Bytes (preview)\",\r\n \"displayDescription\": \"The total size in bytes of messages delivered by IoT hub to an endpoint. You can use the EndpointName and EndpointType dimensions to view the size of the messages in bytes delivered to your different endpoints. The metric value increases for every message delivered, including if the message is delivered to multiple endpoints or if the message is delivered to the same endpoint multiple times.\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Bytes\",\r\n \"aggregationType\": \"Total\",\r\n \"dimensions\": [\r\n {\r\n \"name\": \"EndpointType\",\r\n \"displayName\": \"Endpoint Type\"\r\n },\r\n {\r\n \"name\": \"EndpointName\",\r\n \"displayName\": \"Endpoint Name\"\r\n },\r\n {\r\n \"name\": \"RoutingSource\",\r\n \"displayName\": \"Routing Source\"\r\n }\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"d2c.twin.read.success\",\r\n \"displayName\": \"Successful twin reads from devices\",\r\n \"displayDescription\": \"The count of all successful device-initiated twin reads.\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"d2c.twin.read.failure\",\r\n \"displayName\": \"Failed twin reads from devices\",\r\n \"displayDescription\": \"The count of all failed device-initiated twin reads.\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"d2c.twin.read.size\",\r\n \"displayName\": \"Response size of twin reads from devices\",\r\n \"displayDescription\": \"The average, min, and max of all successful device-initiated twin reads.\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Bytes\",\r\n \"aggregationType\": \"Average\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"d2c.twin.update.success\",\r\n \"displayName\": \"Successful twin updates from devices\",\r\n \"displayDescription\": \"The count of all successful device-initiated twin updates.\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"d2c.twin.update.failure\",\r\n \"displayName\": \"Failed twin updates from devices\",\r\n \"displayDescription\": \"The count of all failed device-initiated twin updates.\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"d2c.twin.update.size\",\r\n \"displayName\": \"Size of twin updates from devices\",\r\n \"displayDescription\": \"The average, min, and max size of all successful device-initiated twin updates.\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Bytes\",\r\n \"aggregationType\": \"Average\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"c2d.methods.success\",\r\n \"displayName\": \"Successful direct method invocations\",\r\n \"displayDescription\": \"The count of all successful direct method calls.\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"c2d.methods.failure\",\r\n \"displayName\": \"Failed direct method invocations\",\r\n \"displayDescription\": \"The count of all failed direct method calls.\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"c2d.methods.requestSize\",\r\n \"displayName\": \"Request size of direct method invocations\",\r\n \"displayDescription\": \"The average, min, and max of all successful direct method requests.\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Bytes\",\r\n \"aggregationType\": \"Average\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"c2d.methods.responseSize\",\r\n \"displayName\": \"Response size of direct method invocations\",\r\n \"displayDescription\": \"The average, min, and max of all successful direct method responses.\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Bytes\",\r\n \"aggregationType\": \"Average\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"c2d.twin.read.success\",\r\n \"displayName\": \"Successful twin reads from back end\",\r\n \"displayDescription\": \"The count of all successful back-end-initiated twin reads.\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"c2d.twin.read.failure\",\r\n \"displayName\": \"Failed twin reads from back end\",\r\n \"displayDescription\": \"The count of all failed back-end-initiated twin reads.\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"c2d.twin.read.size\",\r\n \"displayName\": \"Response size of twin reads from back end\",\r\n \"displayDescription\": \"The average, min, and max of all successful back-end-initiated twin reads.\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Bytes\",\r\n \"aggregationType\": \"Average\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"c2d.twin.update.success\",\r\n \"displayName\": \"Successful twin updates from back end\",\r\n \"displayDescription\": \"The count of all successful back-end-initiated twin updates.\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"c2d.twin.update.failure\",\r\n \"displayName\": \"Failed twin updates from back end\",\r\n \"displayDescription\": \"The count of all failed back-end-initiated twin updates.\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"c2d.twin.update.size\",\r\n \"displayName\": \"Size of twin updates from back end\",\r\n \"displayDescription\": \"The average, min, and max size of all successful back-end-initiated twin updates.\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Bytes\",\r\n \"aggregationType\": \"Average\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"twinQueries.success\",\r\n \"displayName\": \"Successful twin queries\",\r\n \"displayDescription\": \"The count of all successful twin queries.\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"twinQueries.failure\",\r\n \"displayName\": \"Failed twin queries\",\r\n \"displayDescription\": \"The count of all failed twin queries.\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"twinQueries.resultSize\",\r\n \"displayName\": \"Twin queries result size\",\r\n \"displayDescription\": \"The average, min, and max of the result size of all successful twin queries.\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Bytes\",\r\n \"aggregationType\": \"Average\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"jobs.createTwinUpdateJob.success\",\r\n \"displayName\": \"Successful creations of twin update jobs\",\r\n \"displayDescription\": \"The count of all successful creation of twin update jobs.\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"jobs.createTwinUpdateJob.failure\",\r\n \"displayName\": \"Failed creations of twin update jobs\",\r\n \"displayDescription\": \"The count of all failed creation of twin update jobs.\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"jobs.createDirectMethodJob.success\",\r\n \"displayName\": \"Successful creations of method invocation jobs\",\r\n \"displayDescription\": \"The count of all successful creation of direct method invocation jobs.\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"jobs.createDirectMethodJob.failure\",\r\n \"displayName\": \"Failed creations of method invocation jobs\",\r\n \"displayDescription\": \"The count of all failed creation of direct method invocation jobs.\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"jobs.listJobs.success\",\r\n \"displayName\": \"Successful calls to list jobs\",\r\n \"displayDescription\": \"The count of all successful calls to list jobs.\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"jobs.listJobs.failure\",\r\n \"displayName\": \"Failed calls to list jobs\",\r\n \"displayDescription\": \"The count of all failed calls to list jobs.\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"jobs.cancelJob.success\",\r\n \"displayName\": \"Successful job cancellations\",\r\n \"displayDescription\": \"The count of all successful calls to cancel a job.\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"jobs.cancelJob.failure\",\r\n \"displayName\": \"Failed job cancellations\",\r\n \"displayDescription\": \"The count of all failed calls to cancel a job.\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"jobs.queryJobs.success\",\r\n \"displayName\": \"Successful job queries\",\r\n \"displayDescription\": \"The count of all successful calls to query jobs.\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"jobs.queryJobs.failure\",\r\n \"displayName\": \"Failed job queries\",\r\n \"displayDescription\": \"The count of all failed calls to query jobs.\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"jobs.completed\",\r\n \"displayName\": \"Completed jobs\",\r\n \"displayDescription\": \"The count of all completed jobs.\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"jobs.failed\",\r\n \"displayName\": \"Failed jobs\",\r\n \"displayDescription\": \"The count of all failed jobs.\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"d2c.telemetry.ingress.sendThrottle\",\r\n \"displayName\": \"Number of throttling errors\",\r\n \"displayDescription\": \"Number of throttling errors due to device throughput throttles\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"dailyMessageQuotaUsed\",\r\n \"displayName\": \"Total number of messages used\",\r\n \"displayDescription\": \"Number of total messages used today\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"deviceDataUsage\",\r\n \"displayName\": \"Total device data usage\",\r\n \"displayDescription\": \"Bytes transferred to and from any devices connected to IotHub\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Bytes\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"deviceDataUsageV2\",\r\n \"displayName\": \"Total device data usage (preview)\",\r\n \"displayDescription\": \"Bytes transferred to and from any devices connected to IotHub\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Bytes\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"totalDeviceCount\",\r\n \"displayName\": \"Total devices\",\r\n \"displayDescription\": \"Number of devices registered to your IoT hub\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Average\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"connectedDeviceCount\",\r\n \"displayName\": \"Connected devices\",\r\n \"displayDescription\": \"Number of devices connected to your IoT hub\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Average\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"configurations\",\r\n \"displayName\": \"Configuration Metrics\",\r\n \"displayDescription\": \"Metrics for Configuration Operations\",\r\n \"fillGapWithZero\": true,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/ElasticPools/IotHubTenants/logDefinitions/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": \"IotHubTenants\",\r\n \"operation\": \"Read IotHub service log definitions\",\r\n \"description\": \"Gets the available log definitions for the IotHub Service\"\r\n },\r\n \"properties\": {\r\n \"serviceSpecification\": {\r\n \"logSpecifications\": [\r\n {\r\n \"name\": \"Connections\",\r\n \"displayName\": \"Connections\",\r\n \"blobDuration\": \"PT1H\"\r\n },\r\n {\r\n \"name\": \"DeviceTelemetry\",\r\n \"displayName\": \"Device Telemetry\",\r\n \"blobDuration\": \"PT1H\"\r\n },\r\n {\r\n \"name\": \"C2DCommands\",\r\n \"displayName\": \"C2D Commands\",\r\n \"blobDuration\": \"PT1H\"\r\n },\r\n {\r\n \"name\": \"DeviceIdentityOperations\",\r\n \"displayName\": \"Device Identity Operations\",\r\n \"blobDuration\": \"PT1H\"\r\n },\r\n {\r\n \"name\": \"FileUploadOperations\",\r\n \"displayName\": \"File Upload Operations\",\r\n \"blobDuration\": \"PT1H\"\r\n },\r\n {\r\n \"name\": \"Routes\",\r\n \"displayName\": \"Routes\",\r\n \"blobDuration\": \"PT1H\"\r\n },\r\n {\r\n \"name\": \"D2CTwinOperations\",\r\n \"displayName\": \"D2CTwinOperations\",\r\n \"blobDuration\": \"PT1H\"\r\n },\r\n {\r\n \"name\": \"C2DTwinOperations\",\r\n \"displayName\": \"C2D Twin Operations\",\r\n \"blobDuration\": \"PT1H\"\r\n },\r\n {\r\n \"name\": \"TwinQueries\",\r\n \"displayName\": \"Twin Queries\",\r\n \"blobDuration\": \"PT1H\"\r\n },\r\n {\r\n \"name\": \"JobsOperations\",\r\n \"displayName\": \"Jobs Operations\",\r\n \"blobDuration\": \"PT1H\"\r\n },\r\n {\r\n \"name\": \"DirectMethods\",\r\n \"displayName\": \"Direct Methods\",\r\n \"blobDuration\": \"PT1H\"\r\n },\r\n {\r\n \"name\": \"DistributedTracing\",\r\n \"displayName\": \"Distributed Tracing (Preview)\",\r\n \"blobDuration\": \"PT1H\"\r\n },\r\n {\r\n \"name\": \"Configurations\",\r\n \"displayName\": \"Configurations\",\r\n \"blobDuration\": \"PT1H\"\r\n },\r\n {\r\n \"name\": \"DeviceStreams\",\r\n \"displayName\": \"Device Streams (Preview)\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/elasticPools/iotHubTenants/Write\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": null,\r\n \"operation\": \"Create or Update IotHubTenant\",\r\n \"description\": \"Create or Update the IotHub tenant resource\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/elasticPools/iotHubTenants/Read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": null,\r\n \"operation\": \"Get IotHubTenant\",\r\n \"description\": \"Gets the IotHub tenant resource\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/elasticPools/iotHubTenants/Delete\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": null,\r\n \"operation\": \"Delete IotHubTenant\",\r\n \"description\": \"Delete the IotHub tenant resource\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/elasticPools/iotHubTenants/getStats/Read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": null,\r\n \"operation\": \"Get IotHubTenant Stats\",\r\n \"description\": \"Gets the IotHub tenant stats resource\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/elasticPools/iotHubTenants/listKeys/Action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": null,\r\n \"operation\": \"Get IotHubTenant Keys\",\r\n \"description\": \"Gets IotHub tenant keys\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/elasticPools/iotHubTenants/iotHubKeys/listkeys/Action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": null,\r\n \"operation\": \"Get IotHubTenant tenant key\",\r\n \"description\": \"Gets the IotHub tenant key\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/elasticPools/iotHubTenants/eventHubEndpoints/consumerGroups/Write\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": null,\r\n \"operation\": \"Create EventHub Consumer Group\",\r\n \"description\": \"Create EventHub Consumer Group\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/elasticPools/iotHubTenants/eventHubEndpoints/consumerGroups/Read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": null,\r\n \"operation\": \"Get EventHub Consumer Group(s)\",\r\n \"description\": \"Get EventHub Consumer Group(s)\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/elasticPools/iotHubTenants/eventHubEndpoints/consumerGroups/Delete\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": null,\r\n \"operation\": \"Delete EventHub Consumer Group\",\r\n \"description\": \"Delete EventHub Consumer Group\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/elasticPools/iotHubTenants/exportDevices/Action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": null,\r\n \"operation\": \"Export Devices\",\r\n \"description\": \"Export Devices\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/elasticPools/iotHubTenants/importDevices/Action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": null,\r\n \"operation\": \"Import Devices\",\r\n \"description\": \"Import Devices\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/elasticPools/iotHubTenants/jobs/Read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": null,\r\n \"operation\": \"Get the Job(s) on IotHub\",\r\n \"description\": \"Get Job(s) details submitted on given IotHub\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/elasticPools/iotHubTenants/quotaMetrics/Read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": null,\r\n \"operation\": \"Get Quota Metrics\",\r\n \"description\": \"Get Quota Metrics\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/elasticPools/iotHubTenants/routing/routes/$testall/Action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": null,\r\n \"operation\": \"Routing Rule Test All\",\r\n \"description\": \"Test a message against all existing Routes\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/elasticPools/iotHubTenants/routing/routes/$testnew/Action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": null,\r\n \"operation\": \"Routing Rule Test Route\",\r\n \"description\": \"Test a message against a provided test Route\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/elasticPools/iotHubTenants/routingEndpointsHealth/Read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": null,\r\n \"operation\": \"Get Endpoint Health\",\r\n \"description\": \"Gets the health of all routing Endpoints for an IotHub\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/elasticPools/iotHubTenants/certificates/Read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": null,\r\n \"operation\": \"Gets the Certificate\",\r\n \"description\": \"Gets the Certificate\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/elasticPools/iotHubTenants/certificates/Write\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": null,\r\n \"operation\": \"Create or Update Certificate\",\r\n \"description\": \"Create or Update Certificate\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/elasticPools/iotHubTenants/certificates/Delete\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": null,\r\n \"operation\": \"Deletes Certificate\",\r\n \"description\": \"Deletes Certificate\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/elasticPools/iotHubTenants/certificates/generateVerificationCode/Action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": null,\r\n \"operation\": \"Generate Verification code\",\r\n \"description\": \"Generate Verification code\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/elasticPools/iotHubTenants/certificates/verify/Action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": null,\r\n \"operation\": \"Verify Certificate resource\",\r\n \"description\": \"Verify Certificate resource\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/iotHubs/eventGridFilters/Write\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": \"Microsoft.Devices/IotHubs/EventGridFilters\",\r\n \"operation\": \"Create or Update Event Grid filter\",\r\n \"description\": \"Create new or Update existing Event Grid filter\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/iotHubs/eventGridFilters/Read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": \"Microsoft.Devices/IotHubs/EventGridFilters\",\r\n \"operation\": \"Get Event Grid filter\",\r\n \"description\": \"Gets the Event Grid filter\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/iotHubs/eventGridFilters/Delete\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": \"Microsoft.Devices/IotHubs/EventGridFilters\",\r\n \"operation\": \"Delete Event Grid filter\",\r\n \"description\": \"Deletes the Event Grid filter\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/iotHubs/securitySettings/Write\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": \"Microsoft.Devices/IotHubs/SecuritySettings\",\r\n \"operation\": \"Update Iot Hub SecuritySettings\",\r\n \"description\": \"Update the Azure Security Center settings on Iot Hub\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/iotHubs/securitySettings/Read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": \"Microsoft.Devices/IotHubs/SecuritySettings\",\r\n \"operation\": \"Get Iot Hub SecuritySettings\",\r\n \"description\": \"Get the Azure Security Center settings on Iot Hub\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/iotHubs/securitySettings/operationResults/Read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": \"Microsoft.Devices/IotHubs/SecuritySettings\",\r\n \"operation\": \"Get Async operation result for Iot Hub SecuritySettings\",\r\n \"description\": \"Get the result of the Async Put operation for Iot Hub SecuritySettings\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/elasticPools/iotHubTenants/securitySettings/Write\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": \"Microsoft.Devices/IotHubs/SecuritySettings\",\r\n \"operation\": \"Update Iot Tenant Hub SecuritySettings\",\r\n \"description\": \"Update the Azure Security Center settings on Iot Tenant Hub\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/elasticPools/iotHubTenants/securitySettings/Read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": \"Microsoft.Devices/IotHubs/SecuritySettings\",\r\n \"operation\": \"Get Iot Tenant Hub SecuritySettings\",\r\n \"description\": \"Get the Azure Security Center settings on Iot Tenant Hub\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/elasticPools/iotHubTenants/securitySettings/operationResults/Read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": \"Microsoft.Devices/IotHubs/SecuritySettings\",\r\n \"operation\": \"Get Async operation result for Iot Tenant Hub SecuritySettings\",\r\n \"description\": \"Get the result of the Async Put operation for Iot Tenant Hub SecuritySettings\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/elasticPools/eventGridFilters/Write\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": \"Microsoft.Devices/ElasticPools/EventGridFilters\",\r\n \"operation\": \"Create or Update Elastic Pool Event Grid filter\",\r\n \"description\": \"Create new or Update existing Elastic Pool Event Grid filter\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/elasticPools/eventGridFilters/Read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": \"Microsoft.Devices/ElasticPools/EventGridFilters\",\r\n \"operation\": \"Get Elastic Pool Event Grid filter\",\r\n \"description\": \"Gets the Elastic Pool Event Grid filter\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/elasticPools/eventGridFilters/Delete\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": \"Microsoft.Devices/ElasticPools/EventGridFilters\",\r\n \"operation\": \"Delete Elastic Pool Event Grid filter\",\r\n \"description\": \"Deletes the Elastic Pool Event Grid filter\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/iotHubs/digitalTwinsLinks/Write\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": \"Microsoft.Devices/IotHubs/DigitalTwinsLinks\",\r\n \"operation\": \"Links IotHub with a Digital Twins Service\",\r\n \"description\": \"Links IotHub with a Digital Twins Service\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/iotHubs/digitalTwinsLinks/Read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": \"Microsoft.Devices/IotHubs/DigitalTwinsLinks\",\r\n \"operation\": \"Gets the information about the current linked Digital Twins Service\",\r\n \"description\": \"Gets the information about the current linked Digital Twins Service\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/iotHubs/digitalTwinsLinks/Delete\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": \"Microsoft.Devices/IotHubs/DigitalTwinsLinks\",\r\n \"operation\": \"Deletes the link to the Digital Twins Service\",\r\n \"description\": \"Deletes the link to the Digital Twins Service\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/iotHubs/privateEndpointConnectionsApproval/Action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": \"Microsoft.Devices/IotHubs\",\r\n \"operation\": \"Approve Private Endpoint Connection\",\r\n \"description\": \"Approve or reject a private endpoint connection\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/iotHubs/privateLinkResources/Read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": \"Microsoft.Devices/IotHubs/PrivateLinkResources\",\r\n \"operation\": \"Get Private Link Resources\",\r\n \"description\": \"Gets private link resources for IotHub\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/iotHubs/privateEndpointConnectionProxies/validate/Action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": \"Microsoft.Devices/IotHubs/PrivateEndpointConnectionProxies\",\r\n \"operation\": \"Validate Private Endpoint Connection Proxy\",\r\n \"description\": \"Validates private endpoint connection proxy input during create\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/iotHubs/privateEndpointConnectionProxies/Read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": \"Microsoft.Devices/IotHubs/PrivateEndpointConnectionProxies\",\r\n \"operation\": \"Get Private Endpoint Connection Proxy\",\r\n \"description\": \"Gets properties for specified private endpoint connection proxy\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/iotHubs/privateEndpointConnectionProxies/Write\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": \"Microsoft.Devices/IotHubs/PrivateEndpointConnectionProxies\",\r\n \"operation\": \"Put Private Endpoint Connection Proxy\",\r\n \"description\": \"Creates or updates a private endpoint connection proxy\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/iotHubs/privateEndpointConnectionProxies/operationResults/Read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": \"Microsoft.Devices/IotHubs/PrivateEndpointConnectionProxies\",\r\n \"operation\": \"Get Private Endpoint Connection Proxy Async Operation Result\",\r\n \"description\": \"Get the result of an async operation on a private endpoint connection proxy\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/iotHubs/privateEndpointConnectionProxies/Delete\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": \"Microsoft.Devices/IotHubs/PrivateEndpointConnectionProxies\",\r\n \"operation\": \"Delete Private Endpoint Connection Proxy\",\r\n \"description\": \"Deletes an existing private endpoint connection proxy\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/iotHubs/privateEndpointConnections/Read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": \"Microsoft.Devices/IotHubs/PrivateEndpointConnections\",\r\n \"operation\": \"Get All Private Endpoint Connections\",\r\n \"description\": \"Gets all the private endpoint connections for the specified iot hub\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/iotHubs/privateEndpointConnections/Delete\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": \"Microsoft.Devices/IotHubs/PrivateEndpointConnections\",\r\n \"operation\": \"Delete Private Endpoint Connection\",\r\n \"description\": \"Deletes an existing private endpoint connection\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/iotHubs/privateEndpointConnections/Write\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": \"Microsoft.Devices/IotHubs/PrivateEndpointConnections\",\r\n \"operation\": \"Put Private Endpoint Connection\",\r\n \"description\": \"Creates or updates a private endpoint connection\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/iotHubs/privateEndpointConnections/operationResults/Read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": \"Microsoft.Devices/IotHubs/PrivateEndpointConnections\",\r\n \"operation\": \"Get Private Endpoint Connection Async Operation Result\",\r\n \"description\": \"Get the result of an async operation on a private endpoint connection\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/provisioningServices/privateEndpointConnectionsApproval/Action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": \"Microsoft.Devices/provisioningServices\",\r\n \"operation\": \"Approve Private Endpoint Connection\",\r\n \"description\": \"Approve or reject a private endpoint connection\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/provisioningServices/privateLinkResources/Read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": \"Microsoft.Devices/provisioningServices/PrivateLinkResources\",\r\n \"operation\": \"Get Private Link Resources\",\r\n \"description\": \"Gets private link resources for IotHub\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/provisioningServices/privateEndpointConnectionProxies/validate/Action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": \"Microsoft.Devices/provisioningServices/PrivateEndpointConnectionProxies\",\r\n \"operation\": \"Validate Private Endpoint Connection Proxy\",\r\n \"description\": \"Validates private endpoint connection proxy input during create\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/provisioningServices/privateEndpointConnectionProxies/Read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": \"Microsoft.Devices/provisioningServices/PrivateEndpointConnectionProxies\",\r\n \"operation\": \"Get Private Endpoint Connection Proxy\",\r\n \"description\": \"Gets properties for specified private endpoint connection proxy\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/provisioningServices/privateEndpointConnectionProxies/Write\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": \"Microsoft.Devices/provisioningServices/PrivateEndpointConnectionProxies\",\r\n \"operation\": \"Put Private Endpoint Connection Proxy\",\r\n \"description\": \"Creates or updates a private endpoint connection proxy\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/provisioningServices/privateEndpointConnectionProxies/operationResults/Read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": \"Microsoft.Devices/provisioningServices/PrivateEndpointConnectionProxies\",\r\n \"operation\": \"Get Private Endpoint Connection Proxy Async Operation Result\",\r\n \"description\": \"Get the result of an async operation on a private endpoint connection proxy\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/provisioningServices/privateEndpointConnectionProxies/Delete\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": \"Microsoft.Devices/provisioningServices/PrivateEndpointConnectionProxies\",\r\n \"operation\": \"Delete Private Endpoint Connection Proxy\",\r\n \"description\": \"Deletes an existing private endpoint connection proxy\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/provisioningServices/privateEndpointConnections/Read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": \"Microsoft.Devices/provisioningServices/PrivateEndpointConnections\",\r\n \"operation\": \"Get All Private Endpoint Connections\",\r\n \"description\": \"Gets all the private endpoint connections for the specified iot hub\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/provisioningServices/privateEndpointConnections/Delete\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": \"Microsoft.Devices/provisioningServices/PrivateEndpointConnections\",\r\n \"operation\": \"Delete Private Endpoint Connection\",\r\n \"description\": \"Deletes an existing private endpoint connection\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/provisioningServices/privateEndpointConnections/Write\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": \"Microsoft.Devices/provisioningServices/PrivateEndpointConnections\",\r\n \"operation\": \"Put Private Endpoint Connection\",\r\n \"description\": \"Creates or updates a private endpoint connection\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/provisioningServices/privateEndpointConnections/operationResults/Read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Devices\",\r\n \"resource\": \"Microsoft.Devices/provisioningServices/PrivateEndpointConnections\",\r\n \"operation\": \"Get Private Endpoint Connection Async Operation Result\",\r\n \"description\": \"Get the result of an async operation on a private endpoint connection\"\r\n },\r\n \"properties\": null\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/providers/Microsoft.Devices/operationResults/b3NfaWhfYjBlYzYzMzgtMTJlNC00YTBmLWIzOWEtYjcxMGM5ZTNjNjVm?api-version=2020-03-01&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmWWpCbFl6WXpNemd0TVRKbE5DMDBZVEJtTFdJek9XRXRZamN4TUdNNVpUTmpOalZtP2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEmb3BlcmF0aW9uU291cmNlPW9zX2loJmFzeW5jaW5mbw==", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/DotNetHubRG/providers/Microsoft.Devices/IotHubs/DotNetHub/failover?api-version=2021-03-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Jlc291cmNlR3JvdXBzL0RvdE5ldEh1YlJHL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9Jb3RIdWJzL0RvdE5ldEh1Yi9mYWlsb3Zlcj9hcGktdmVyc2lvbj0yMDIxLTAzLTMx", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"failoverRegion\": \"WestCentralUS\"\r\n}", "RequestHeaders": { + "x-ms-client-request-id": [ + "781dc963-d51a-4d30-9e08-2cea97c96ae3" + ], + "Accept-Language": [ + "en-US" + ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "41" ] }, "ResponseHeaders": { @@ -3775,20 +3086,29 @@ "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/providers/Microsoft.Devices/operationResults/b3NfaWhfNDUwZmMxM2MtOThjNS00OTllLThlMGItYzkyZjI1ZmM3ZTM1?api-version=2021-03-31&operationSource=os_ih" + ], + "Retry-After": [ + "15" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/providers/Microsoft.Devices/operationResults/b3NfaWhfNDUwZmMxM2MtOThjNS00OTllLThlMGItYzkyZjI1ZmM3ZTM1?api-version=2021-03-31&operationSource=os_ih&asyncinfo" + ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11976" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1195" ], "x-ms-request-id": [ - "b6dc524d-a981-4a4d-ac77-2d3d4990514a" + "4b7c64d7-4a8c-4268-a4a4-188376508fec" ], "x-ms-correlation-request-id": [ - "b6dc524d-a981-4a4d-ac77-2d3d4990514a" + "4b7c64d7-4a8c-4268-a4a4-188376508fec" ], "x-ms-routing-request-id": [ - "WESTUS2:20210219T192455Z:b6dc524d-a981-4a4d-ac77-2d3d4990514a" + "WESTUS2:20210514T173747Z:4b7c64d7-4a8c-4268-a4a4-188376508fec" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3797,10 +3117,10 @@ "nosniff" ], "Date": [ - "Fri, 19 Feb 2021 19:24:55 GMT" + "Fri, 14 May 2021 17:37:46 GMT" ], "Content-Length": [ - "20" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3809,20 +3129,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"status\": \"Running\"\r\n}", - "StatusCode": 200 + "ResponseBody": "null", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/providers/Microsoft.Devices/operationResults/b3NfaWhfYjBlYzYzMzgtMTJlNC00YTBmLWIzOWEtYjcxMGM5ZTNjNjVm?api-version=2020-03-01&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmWWpCbFl6WXpNemd0TVRKbE5DMDBZVEJtTFdJek9XRXRZamN4TUdNNVpUTmpOalZtP2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEmb3BlcmF0aW9uU291cmNlPW9zX2loJmFzeW5jaW5mbw==", + "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/providers/Microsoft.Devices/operationResults/b3NfaWhfNDUwZmMxM2MtOThjNS00OTllLThlMGItYzkyZjI1ZmM3ZTM1?api-version=2021-03-31&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTkRVd1ptTXhNMk10T1Roak5TMDBPVGxsTFRobE1HSXRZemt5WmpJMVptTTNaVE0xP2FwaS12ZXJzaW9uPTIwMjEtMDMtMzEmb3BlcmF0aW9uU291cmNlPW9zX2loJmFzeW5jaW5mbw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.0.0.0" ] }, "ResponseHeaders": { @@ -3832,20 +3152,20 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11975" - ], "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11983" + ], "x-ms-request-id": [ - "b4ef9c6f-b894-4ed6-8b0e-19263c60a31e" + "4acff608-c933-4b31-aea3-6f05899e483a" ], "x-ms-correlation-request-id": [ - "b4ef9c6f-b894-4ed6-8b0e-19263c60a31e" + "4acff608-c933-4b31-aea3-6f05899e483a" ], "x-ms-routing-request-id": [ - "WESTUS2:20210219T192510Z:b4ef9c6f-b894-4ed6-8b0e-19263c60a31e" + "WESTUS2:20210514T173802Z:4acff608-c933-4b31-aea3-6f05899e483a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3854,7 +3174,7 @@ "nosniff" ], "Date": [ - "Fri, 19 Feb 2021 19:25:09 GMT" + "Fri, 14 May 2021 17:38:02 GMT" ], "Content-Length": [ "20" @@ -3870,16 +3190,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/providers/Microsoft.Devices/operationResults/b3NfaWhfYjBlYzYzMzgtMTJlNC00YTBmLWIzOWEtYjcxMGM5ZTNjNjVm?api-version=2020-03-01&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmWWpCbFl6WXpNemd0TVRKbE5DMDBZVEJtTFdJek9XRXRZamN4TUdNNVpUTmpOalZtP2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEmb3BlcmF0aW9uU291cmNlPW9zX2loJmFzeW5jaW5mbw==", + "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/providers/Microsoft.Devices/operationResults/b3NfaWhfNDUwZmMxM2MtOThjNS00OTllLThlMGItYzkyZjI1ZmM3ZTM1?api-version=2021-03-31&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTkRVd1ptTXhNMk10T1Roak5TMDBPVGxsTFRobE1HSXRZemt5WmpJMVptTTNaVE0xP2FwaS12ZXJzaW9uPTIwMjEtMDMtMzEmb3BlcmF0aW9uU291cmNlPW9zX2loJmFzeW5jaW5mbw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.0.0.0" ] }, "ResponseHeaders": { @@ -3893,16 +3213,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11974" + "11982" ], "x-ms-request-id": [ - "f20bb321-06e1-4909-8fb6-56ba79702d27" + "ab21761d-2145-48a0-a1f1-ac400a05cce2" ], "x-ms-correlation-request-id": [ - "f20bb321-06e1-4909-8fb6-56ba79702d27" + "ab21761d-2145-48a0-a1f1-ac400a05cce2" ], "x-ms-routing-request-id": [ - "WESTUS2:20210219T192525Z:f20bb321-06e1-4909-8fb6-56ba79702d27" + "WESTUS2:20210514T173817Z:ab21761d-2145-48a0-a1f1-ac400a05cce2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3911,7 +3231,7 @@ "nosniff" ], "Date": [ - "Fri, 19 Feb 2021 19:25:25 GMT" + "Fri, 14 May 2021 17:38:17 GMT" ], "Content-Length": [ "20" @@ -3927,16 +3247,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/providers/Microsoft.Devices/operationResults/b3NfaWhfYjBlYzYzMzgtMTJlNC00YTBmLWIzOWEtYjcxMGM5ZTNjNjVm?api-version=2020-03-01&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmWWpCbFl6WXpNemd0TVRKbE5DMDBZVEJtTFdJek9XRXRZamN4TUdNNVpUTmpOalZtP2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEmb3BlcmF0aW9uU291cmNlPW9zX2loJmFzeW5jaW5mbw==", + "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/providers/Microsoft.Devices/operationResults/b3NfaWhfNDUwZmMxM2MtOThjNS00OTllLThlMGItYzkyZjI1ZmM3ZTM1?api-version=2021-03-31&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTkRVd1ptTXhNMk10T1Roak5TMDBPVGxsTFRobE1HSXRZemt5WmpJMVptTTNaVE0xP2FwaS12ZXJzaW9uPTIwMjEtMDMtMzEmb3BlcmF0aW9uU291cmNlPW9zX2loJmFzeW5jaW5mbw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.0.0.0" ] }, "ResponseHeaders": { @@ -3950,16 +3270,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11973" + "11981" ], "x-ms-request-id": [ - "9ec68ca2-56cc-4c93-945b-ecff5f1da97a" + "e75ee511-74ae-462b-864e-c9e45a405b7a" ], "x-ms-correlation-request-id": [ - "9ec68ca2-56cc-4c93-945b-ecff5f1da97a" + "e75ee511-74ae-462b-864e-c9e45a405b7a" ], "x-ms-routing-request-id": [ - "WESTUS2:20210219T192541Z:9ec68ca2-56cc-4c93-945b-ecff5f1da97a" + "WESTUS2:20210514T173832Z:e75ee511-74ae-462b-864e-c9e45a405b7a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3968,7 +3288,7 @@ "nosniff" ], "Date": [ - "Fri, 19 Feb 2021 19:25:41 GMT" + "Fri, 14 May 2021 17:38:32 GMT" ], "Content-Length": [ "20" @@ -3984,16 +3304,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/providers/Microsoft.Devices/operationResults/b3NfaWhfYjBlYzYzMzgtMTJlNC00YTBmLWIzOWEtYjcxMGM5ZTNjNjVm?api-version=2020-03-01&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmWWpCbFl6WXpNemd0TVRKbE5DMDBZVEJtTFdJek9XRXRZamN4TUdNNVpUTmpOalZtP2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEmb3BlcmF0aW9uU291cmNlPW9zX2loJmFzeW5jaW5mbw==", + "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/providers/Microsoft.Devices/operationResults/b3NfaWhfNDUwZmMxM2MtOThjNS00OTllLThlMGItYzkyZjI1ZmM3ZTM1?api-version=2021-03-31&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTkRVd1ptTXhNMk10T1Roak5TMDBPVGxsTFRobE1HSXRZemt5WmpJMVptTTNaVE0xP2FwaS12ZXJzaW9uPTIwMjEtMDMtMzEmb3BlcmF0aW9uU291cmNlPW9zX2loJmFzeW5jaW5mbw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.0.0.0" ] }, "ResponseHeaders": { @@ -4007,16 +3327,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11972" + "11980" ], "x-ms-request-id": [ - "f2a5b00e-c56e-42c2-bea5-87e45436ac01" + "08b9ee7b-a5e7-48d8-9881-c66e2611c722" ], "x-ms-correlation-request-id": [ - "f2a5b00e-c56e-42c2-bea5-87e45436ac01" + "08b9ee7b-a5e7-48d8-9881-c66e2611c722" ], "x-ms-routing-request-id": [ - "WESTUS2:20210219T192556Z:f2a5b00e-c56e-42c2-bea5-87e45436ac01" + "WESTUS2:20210514T173848Z:08b9ee7b-a5e7-48d8-9881-c66e2611c722" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4025,7 +3345,7 @@ "nosniff" ], "Date": [ - "Fri, 19 Feb 2021 19:25:56 GMT" + "Fri, 14 May 2021 17:38:47 GMT" ], "Content-Length": [ "20" @@ -4041,16 +3361,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/providers/Microsoft.Devices/operationResults/b3NfaWhfYjBlYzYzMzgtMTJlNC00YTBmLWIzOWEtYjcxMGM5ZTNjNjVm?api-version=2020-03-01&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmWWpCbFl6WXpNemd0TVRKbE5DMDBZVEJtTFdJek9XRXRZamN4TUdNNVpUTmpOalZtP2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEmb3BlcmF0aW9uU291cmNlPW9zX2loJmFzeW5jaW5mbw==", + "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/providers/Microsoft.Devices/operationResults/b3NfaWhfNDUwZmMxM2MtOThjNS00OTllLThlMGItYzkyZjI1ZmM3ZTM1?api-version=2021-03-31&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTkRVd1ptTXhNMk10T1Roak5TMDBPVGxsTFRobE1HSXRZemt5WmpJMVptTTNaVE0xP2FwaS12ZXJzaW9uPTIwMjEtMDMtMzEmb3BlcmF0aW9uU291cmNlPW9zX2loJmFzeW5jaW5mbw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.0.0.0" ] }, "ResponseHeaders": { @@ -4064,16 +3384,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11971" + "11979" ], "x-ms-request-id": [ - "97f1091a-da64-4b13-baa6-1cfdda9e5868" + "3b1c4b88-3990-4aaa-9b8b-6a9b2fec7578" ], "x-ms-correlation-request-id": [ - "97f1091a-da64-4b13-baa6-1cfdda9e5868" + "3b1c4b88-3990-4aaa-9b8b-6a9b2fec7578" ], "x-ms-routing-request-id": [ - "WESTUS2:20210219T192611Z:97f1091a-da64-4b13-baa6-1cfdda9e5868" + "WESTUS2:20210514T173903Z:3b1c4b88-3990-4aaa-9b8b-6a9b2fec7578" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4082,7 +3402,7 @@ "nosniff" ], "Date": [ - "Fri, 19 Feb 2021 19:26:11 GMT" + "Fri, 14 May 2021 17:39:03 GMT" ], "Content-Length": [ "20" @@ -4098,16 +3418,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/providers/Microsoft.Devices/operationResults/b3NfaWhfYjBlYzYzMzgtMTJlNC00YTBmLWIzOWEtYjcxMGM5ZTNjNjVm?api-version=2020-03-01&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmWWpCbFl6WXpNemd0TVRKbE5DMDBZVEJtTFdJek9XRXRZamN4TUdNNVpUTmpOalZtP2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEmb3BlcmF0aW9uU291cmNlPW9zX2loJmFzeW5jaW5mbw==", + "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/providers/Microsoft.Devices/operationResults/b3NfaWhfNDUwZmMxM2MtOThjNS00OTllLThlMGItYzkyZjI1ZmM3ZTM1?api-version=2021-03-31&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTkRVd1ptTXhNMk10T1Roak5TMDBPVGxsTFRobE1HSXRZemt5WmpJMVptTTNaVE0xP2FwaS12ZXJzaW9uPTIwMjEtMDMtMzEmb3BlcmF0aW9uU291cmNlPW9zX2loJmFzeW5jaW5mbw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.0.0.0" ] }, "ResponseHeaders": { @@ -4121,16 +3441,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11970" + "11978" ], "x-ms-request-id": [ - "e4e14a96-f785-4b63-8e27-ea998e481afd" + "aa70966f-30dd-4384-bfcb-9ca32a8a652c" ], "x-ms-correlation-request-id": [ - "e4e14a96-f785-4b63-8e27-ea998e481afd" + "aa70966f-30dd-4384-bfcb-9ca32a8a652c" ], "x-ms-routing-request-id": [ - "WESTUS2:20210219T192626Z:e4e14a96-f785-4b63-8e27-ea998e481afd" + "WESTUS2:20210514T173918Z:aa70966f-30dd-4384-bfcb-9ca32a8a652c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4139,7 +3459,7 @@ "nosniff" ], "Date": [ - "Fri, 19 Feb 2021 19:26:26 GMT" + "Fri, 14 May 2021 17:39:18 GMT" ], "Content-Length": [ "20" @@ -4155,16 +3475,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/providers/Microsoft.Devices/operationResults/b3NfaWhfYjBlYzYzMzgtMTJlNC00YTBmLWIzOWEtYjcxMGM5ZTNjNjVm?api-version=2020-03-01&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmWWpCbFl6WXpNemd0TVRKbE5DMDBZVEJtTFdJek9XRXRZamN4TUdNNVpUTmpOalZtP2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEmb3BlcmF0aW9uU291cmNlPW9zX2loJmFzeW5jaW5mbw==", + "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/providers/Microsoft.Devices/operationResults/b3NfaWhfNDUwZmMxM2MtOThjNS00OTllLThlMGItYzkyZjI1ZmM3ZTM1?api-version=2021-03-31&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTkRVd1ptTXhNMk10T1Roak5TMDBPVGxsTFRobE1HSXRZemt5WmpJMVptTTNaVE0xP2FwaS12ZXJzaW9uPTIwMjEtMDMtMzEmb3BlcmF0aW9uU291cmNlPW9zX2loJmFzeW5jaW5mbw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.0.0.0" ] }, "ResponseHeaders": { @@ -4178,16 +3498,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11969" + "11977" ], "x-ms-request-id": [ - "7bf47e39-d003-4f67-b19e-d6d2190539cd" + "af697360-6d62-4277-a707-10a24559879c" ], "x-ms-correlation-request-id": [ - "7bf47e39-d003-4f67-b19e-d6d2190539cd" + "af697360-6d62-4277-a707-10a24559879c" ], "x-ms-routing-request-id": [ - "WESTUS2:20210219T192641Z:7bf47e39-d003-4f67-b19e-d6d2190539cd" + "WESTUS2:20210514T173933Z:af697360-6d62-4277-a707-10a24559879c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4196,7 +3516,7 @@ "nosniff" ], "Date": [ - "Fri, 19 Feb 2021 19:26:41 GMT" + "Fri, 14 May 2021 17:39:33 GMT" ], "Content-Length": [ "20" @@ -4212,16 +3532,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/providers/Microsoft.Devices/operationResults/b3NfaWhfYjBlYzYzMzgtMTJlNC00YTBmLWIzOWEtYjcxMGM5ZTNjNjVm?api-version=2020-03-01&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmWWpCbFl6WXpNemd0TVRKbE5DMDBZVEJtTFdJek9XRXRZamN4TUdNNVpUTmpOalZtP2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEmb3BlcmF0aW9uU291cmNlPW9zX2loJmFzeW5jaW5mbw==", + "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/providers/Microsoft.Devices/operationResults/b3NfaWhfNDUwZmMxM2MtOThjNS00OTllLThlMGItYzkyZjI1ZmM3ZTM1?api-version=2021-03-31&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTkRVd1ptTXhNMk10T1Roak5TMDBPVGxsTFRobE1HSXRZemt5WmpJMVptTTNaVE0xP2FwaS12ZXJzaW9uPTIwMjEtMDMtMzEmb3BlcmF0aW9uU291cmNlPW9zX2loJmFzeW5jaW5mbw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.0.0.0" ] }, "ResponseHeaders": { @@ -4235,16 +3555,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11968" + "11976" ], "x-ms-request-id": [ - "14f7e481-0034-48aa-adea-d7af116d870d" + "126c153c-30c8-453e-bc4c-6589540160cd" ], "x-ms-correlation-request-id": [ - "14f7e481-0034-48aa-adea-d7af116d870d" + "126c153c-30c8-453e-bc4c-6589540160cd" ], "x-ms-routing-request-id": [ - "WESTUS2:20210219T192657Z:14f7e481-0034-48aa-adea-d7af116d870d" + "WESTUS2:20210514T173948Z:126c153c-30c8-453e-bc4c-6589540160cd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4253,7 +3573,7 @@ "nosniff" ], "Date": [ - "Fri, 19 Feb 2021 19:26:56 GMT" + "Fri, 14 May 2021 17:39:48 GMT" ], "Content-Length": [ "20" @@ -4269,16 +3589,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/providers/Microsoft.Devices/operationResults/b3NfaWhfYjBlYzYzMzgtMTJlNC00YTBmLWIzOWEtYjcxMGM5ZTNjNjVm?api-version=2020-03-01&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmWWpCbFl6WXpNemd0TVRKbE5DMDBZVEJtTFdJek9XRXRZamN4TUdNNVpUTmpOalZtP2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEmb3BlcmF0aW9uU291cmNlPW9zX2loJmFzeW5jaW5mbw==", + "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/providers/Microsoft.Devices/operationResults/b3NfaWhfNDUwZmMxM2MtOThjNS00OTllLThlMGItYzkyZjI1ZmM3ZTM1?api-version=2021-03-31&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTkRVd1ptTXhNMk10T1Roak5TMDBPVGxsTFRobE1HSXRZemt5WmpJMVptTTNaVE0xP2FwaS12ZXJzaW9uPTIwMjEtMDMtMzEmb3BlcmF0aW9uU291cmNlPW9zX2loJmFzeW5jaW5mbw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.0.0.0" ] }, "ResponseHeaders": { @@ -4292,16 +3612,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11967" + "11975" ], "x-ms-request-id": [ - "1b5d3da7-c57d-4daf-b86a-88ce690f03fb" + "7d7753e9-e68a-4dc6-83f7-485d928856db" ], "x-ms-correlation-request-id": [ - "1b5d3da7-c57d-4daf-b86a-88ce690f03fb" + "7d7753e9-e68a-4dc6-83f7-485d928856db" ], "x-ms-routing-request-id": [ - "WESTUS2:20210219T192712Z:1b5d3da7-c57d-4daf-b86a-88ce690f03fb" + "WESTUS2:20210514T174004Z:7d7753e9-e68a-4dc6-83f7-485d928856db" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4310,7 +3630,7 @@ "nosniff" ], "Date": [ - "Fri, 19 Feb 2021 19:27:11 GMT" + "Fri, 14 May 2021 17:40:03 GMT" ], "Content-Length": [ "20" @@ -4326,16 +3646,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/providers/Microsoft.Devices/operationResults/b3NfaWhfYjBlYzYzMzgtMTJlNC00YTBmLWIzOWEtYjcxMGM5ZTNjNjVm?api-version=2020-03-01&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmWWpCbFl6WXpNemd0TVRKbE5DMDBZVEJtTFdJek9XRXRZamN4TUdNNVpUTmpOalZtP2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEmb3BlcmF0aW9uU291cmNlPW9zX2loJmFzeW5jaW5mbw==", + "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/providers/Microsoft.Devices/operationResults/b3NfaWhfNDUwZmMxM2MtOThjNS00OTllLThlMGItYzkyZjI1ZmM3ZTM1?api-version=2021-03-31&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTkRVd1ptTXhNMk10T1Roak5TMDBPVGxsTFRobE1HSXRZemt5WmpJMVptTTNaVE0xP2FwaS12ZXJzaW9uPTIwMjEtMDMtMzEmb3BlcmF0aW9uU291cmNlPW9zX2loJmFzeW5jaW5mbw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.0.0.0" ] }, "ResponseHeaders": { @@ -4349,16 +3669,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11966" + "11974" ], "x-ms-request-id": [ - "b02d7aea-c5ed-40a7-81c9-a6f0b9b8fa3a" + "2b49f16a-bb69-4d3c-acb4-c9f4865be783" ], "x-ms-correlation-request-id": [ - "b02d7aea-c5ed-40a7-81c9-a6f0b9b8fa3a" + "2b49f16a-bb69-4d3c-acb4-c9f4865be783" ], "x-ms-routing-request-id": [ - "WESTUS2:20210219T192727Z:b02d7aea-c5ed-40a7-81c9-a6f0b9b8fa3a" + "WESTUS2:20210514T174019Z:2b49f16a-bb69-4d3c-acb4-c9f4865be783" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4367,7 +3687,7 @@ "nosniff" ], "Date": [ - "Fri, 19 Feb 2021 19:27:26 GMT" + "Fri, 14 May 2021 17:40:19 GMT" ], "Content-Length": [ "20" @@ -4383,16 +3703,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/providers/Microsoft.Devices/operationResults/b3NfaWhfYjBlYzYzMzgtMTJlNC00YTBmLWIzOWEtYjcxMGM5ZTNjNjVm?api-version=2020-03-01&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmWWpCbFl6WXpNemd0TVRKbE5DMDBZVEJtTFdJek9XRXRZamN4TUdNNVpUTmpOalZtP2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEmb3BlcmF0aW9uU291cmNlPW9zX2loJmFzeW5jaW5mbw==", + "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/providers/Microsoft.Devices/operationResults/b3NfaWhfNDUwZmMxM2MtOThjNS00OTllLThlMGItYzkyZjI1ZmM3ZTM1?api-version=2021-03-31&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTkRVd1ptTXhNMk10T1Roak5TMDBPVGxsTFRobE1HSXRZemt5WmpJMVptTTNaVE0xP2FwaS12ZXJzaW9uPTIwMjEtMDMtMzEmb3BlcmF0aW9uU291cmNlPW9zX2loJmFzeW5jaW5mbw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.0.0.0" ] }, "ResponseHeaders": { @@ -4406,16 +3726,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11965" + "11973" ], "x-ms-request-id": [ - "660b0d69-92ad-4246-97c6-f38338532256" + "b8bb6ab4-d6cc-4ffc-86d2-87853bf17d74" ], "x-ms-correlation-request-id": [ - "660b0d69-92ad-4246-97c6-f38338532256" + "b8bb6ab4-d6cc-4ffc-86d2-87853bf17d74" ], "x-ms-routing-request-id": [ - "WESTUS2:20210219T192742Z:660b0d69-92ad-4246-97c6-f38338532256" + "WESTUS2:20210514T174034Z:b8bb6ab4-d6cc-4ffc-86d2-87853bf17d74" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4424,7 +3744,7 @@ "nosniff" ], "Date": [ - "Fri, 19 Feb 2021 19:27:41 GMT" + "Fri, 14 May 2021 17:40:33 GMT" ], "Content-Length": [ "20" @@ -4440,16 +3760,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/providers/Microsoft.Devices/operationResults/b3NfaWhfYjBlYzYzMzgtMTJlNC00YTBmLWIzOWEtYjcxMGM5ZTNjNjVm?api-version=2020-03-01&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmWWpCbFl6WXpNemd0TVRKbE5DMDBZVEJtTFdJek9XRXRZamN4TUdNNVpUTmpOalZtP2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEmb3BlcmF0aW9uU291cmNlPW9zX2loJmFzeW5jaW5mbw==", + "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/providers/Microsoft.Devices/operationResults/b3NfaWhfNDUwZmMxM2MtOThjNS00OTllLThlMGItYzkyZjI1ZmM3ZTM1?api-version=2021-03-31&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTkRVd1ptTXhNMk10T1Roak5TMDBPVGxsTFRobE1HSXRZemt5WmpJMVptTTNaVE0xP2FwaS12ZXJzaW9uPTIwMjEtMDMtMzEmb3BlcmF0aW9uU291cmNlPW9zX2loJmFzeW5jaW5mbw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.0.0.0" ] }, "ResponseHeaders": { @@ -4459,20 +3779,20 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11972" + ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11964" - ], "x-ms-request-id": [ - "dc1aab92-02ca-444c-9548-02fda92aa4ae" + "14b9cd8e-1599-4bc5-b434-a3b1b3960b74" ], "x-ms-correlation-request-id": [ - "dc1aab92-02ca-444c-9548-02fda92aa4ae" + "14b9cd8e-1599-4bc5-b434-a3b1b3960b74" ], "x-ms-routing-request-id": [ - "WESTUS2:20210219T192757Z:dc1aab92-02ca-444c-9548-02fda92aa4ae" + "WESTUS2:20210514T174049Z:14b9cd8e-1599-4bc5-b434-a3b1b3960b74" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4481,7 +3801,7 @@ "nosniff" ], "Date": [ - "Fri, 19 Feb 2021 19:27:57 GMT" + "Fri, 14 May 2021 17:40:48 GMT" ], "Content-Length": [ "20" @@ -4497,16 +3817,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/providers/Microsoft.Devices/operationResults/b3NfaWhfYjBlYzYzMzgtMTJlNC00YTBmLWIzOWEtYjcxMGM5ZTNjNjVm?api-version=2020-03-01&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmWWpCbFl6WXpNemd0TVRKbE5DMDBZVEJtTFdJek9XRXRZamN4TUdNNVpUTmpOalZtP2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEmb3BlcmF0aW9uU291cmNlPW9zX2loJmFzeW5jaW5mbw==", + "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/providers/Microsoft.Devices/operationResults/b3NfaWhfNDUwZmMxM2MtOThjNS00OTllLThlMGItYzkyZjI1ZmM3ZTM1?api-version=2021-03-31&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTkRVd1ptTXhNMk10T1Roak5TMDBPVGxsTFRobE1HSXRZemt5WmpJMVptTTNaVE0xP2FwaS12ZXJzaW9uPTIwMjEtMDMtMzEmb3BlcmF0aW9uU291cmNlPW9zX2loJmFzeW5jaW5mbw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.0.0.0" ] }, "ResponseHeaders": { @@ -4520,16 +3840,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11963" + "11971" ], "x-ms-request-id": [ - "36023a2a-16f3-4b80-8746-3914a45e33d1" + "d46545a8-9d5f-467b-96f8-731b996bbfaa" ], "x-ms-correlation-request-id": [ - "36023a2a-16f3-4b80-8746-3914a45e33d1" + "d46545a8-9d5f-467b-96f8-731b996bbfaa" ], "x-ms-routing-request-id": [ - "WESTUS2:20210219T192813Z:36023a2a-16f3-4b80-8746-3914a45e33d1" + "WESTUS2:20210514T174104Z:d46545a8-9d5f-467b-96f8-731b996bbfaa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4538,7 +3858,7 @@ "nosniff" ], "Date": [ - "Fri, 19 Feb 2021 19:28:12 GMT" + "Fri, 14 May 2021 17:41:04 GMT" ], "Content-Length": [ "20" @@ -4554,16 +3874,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/providers/Microsoft.Devices/operationResults/b3NfaWhfYjBlYzYzMzgtMTJlNC00YTBmLWIzOWEtYjcxMGM5ZTNjNjVm?api-version=2020-03-01&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmWWpCbFl6WXpNemd0TVRKbE5DMDBZVEJtTFdJek9XRXRZamN4TUdNNVpUTmpOalZtP2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEmb3BlcmF0aW9uU291cmNlPW9zX2loJmFzeW5jaW5mbw==", + "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/providers/Microsoft.Devices/operationResults/b3NfaWhfNDUwZmMxM2MtOThjNS00OTllLThlMGItYzkyZjI1ZmM3ZTM1?api-version=2021-03-31&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTkRVd1ptTXhNMk10T1Roak5TMDBPVGxsTFRobE1HSXRZemt5WmpJMVptTTNaVE0xP2FwaS12ZXJzaW9uPTIwMjEtMDMtMzEmb3BlcmF0aW9uU291cmNlPW9zX2loJmFzeW5jaW5mbw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.0.0.0" ] }, "ResponseHeaders": { @@ -4577,16 +3897,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11962" + "11970" ], "x-ms-request-id": [ - "0cb97ae7-b421-4b01-afd8-a2364e9ef5cb" + "281b91f0-8c6a-4a88-8695-aa63bc60f255" ], "x-ms-correlation-request-id": [ - "0cb97ae7-b421-4b01-afd8-a2364e9ef5cb" + "281b91f0-8c6a-4a88-8695-aa63bc60f255" ], "x-ms-routing-request-id": [ - "WESTUS2:20210219T192828Z:0cb97ae7-b421-4b01-afd8-a2364e9ef5cb" + "WESTUS2:20210514T174120Z:281b91f0-8c6a-4a88-8695-aa63bc60f255" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4595,7 +3915,7 @@ "nosniff" ], "Date": [ - "Fri, 19 Feb 2021 19:28:27 GMT" + "Fri, 14 May 2021 17:41:20 GMT" ], "Content-Length": [ "20" @@ -4611,16 +3931,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/providers/Microsoft.Devices/operationResults/b3NfaWhfYjBlYzYzMzgtMTJlNC00YTBmLWIzOWEtYjcxMGM5ZTNjNjVm?api-version=2020-03-01&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmWWpCbFl6WXpNemd0TVRKbE5DMDBZVEJtTFdJek9XRXRZamN4TUdNNVpUTmpOalZtP2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEmb3BlcmF0aW9uU291cmNlPW9zX2loJmFzeW5jaW5mbw==", + "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/providers/Microsoft.Devices/operationResults/b3NfaWhfNDUwZmMxM2MtOThjNS00OTllLThlMGItYzkyZjI1ZmM3ZTM1?api-version=2021-03-31&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTkRVd1ptTXhNMk10T1Roak5TMDBPVGxsTFRobE1HSXRZemt5WmpJMVptTTNaVE0xP2FwaS12ZXJzaW9uPTIwMjEtMDMtMzEmb3BlcmF0aW9uU291cmNlPW9zX2loJmFzeW5jaW5mbw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.0.0.0" ] }, "ResponseHeaders": { @@ -4634,16 +3954,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11961" + "11969" ], "x-ms-request-id": [ - "1e8bb501-41a6-4ef8-814c-b57b80e7e8f5" + "2170c8e7-a611-41d1-9971-bfb57c1ed2ab" ], "x-ms-correlation-request-id": [ - "1e8bb501-41a6-4ef8-814c-b57b80e7e8f5" + "2170c8e7-a611-41d1-9971-bfb57c1ed2ab" ], "x-ms-routing-request-id": [ - "WESTUS2:20210219T192843Z:1e8bb501-41a6-4ef8-814c-b57b80e7e8f5" + "WESTUS2:20210514T174135Z:2170c8e7-a611-41d1-9971-bfb57c1ed2ab" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4652,7 +3972,7 @@ "nosniff" ], "Date": [ - "Fri, 19 Feb 2021 19:28:42 GMT" + "Fri, 14 May 2021 17:41:35 GMT" ], "Content-Length": [ "20" @@ -4668,16 +3988,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/providers/Microsoft.Devices/operationResults/b3NfaWhfYjBlYzYzMzgtMTJlNC00YTBmLWIzOWEtYjcxMGM5ZTNjNjVm?api-version=2020-03-01&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmWWpCbFl6WXpNemd0TVRKbE5DMDBZVEJtTFdJek9XRXRZamN4TUdNNVpUTmpOalZtP2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEmb3BlcmF0aW9uU291cmNlPW9zX2loJmFzeW5jaW5mbw==", + "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/providers/Microsoft.Devices/operationResults/b3NfaWhfNDUwZmMxM2MtOThjNS00OTllLThlMGItYzkyZjI1ZmM3ZTM1?api-version=2021-03-31&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTkRVd1ptTXhNMk10T1Roak5TMDBPVGxsTFRobE1HSXRZemt5WmpJMVptTTNaVE0xP2FwaS12ZXJzaW9uPTIwMjEtMDMtMzEmb3BlcmF0aW9uU291cmNlPW9zX2loJmFzeW5jaW5mbw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.0.0.0" ] }, "ResponseHeaders": { @@ -4691,16 +4011,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11960" + "11968" ], "x-ms-request-id": [ - "0b3fd774-10a0-458f-be75-fdd6814bea38" + "7635db3e-1533-4f1c-b8fc-73af4cc93d32" ], "x-ms-correlation-request-id": [ - "0b3fd774-10a0-458f-be75-fdd6814bea38" + "7635db3e-1533-4f1c-b8fc-73af4cc93d32" ], "x-ms-routing-request-id": [ - "WESTUS2:20210219T192858Z:0b3fd774-10a0-458f-be75-fdd6814bea38" + "WESTUS2:20210514T174150Z:7635db3e-1533-4f1c-b8fc-73af4cc93d32" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4709,7 +4029,7 @@ "nosniff" ], "Date": [ - "Fri, 19 Feb 2021 19:28:57 GMT" + "Fri, 14 May 2021 17:41:50 GMT" ], "Content-Length": [ "20" @@ -4725,16 +4045,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/providers/Microsoft.Devices/operationResults/b3NfaWhfYjBlYzYzMzgtMTJlNC00YTBmLWIzOWEtYjcxMGM5ZTNjNjVm?api-version=2020-03-01&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmWWpCbFl6WXpNemd0TVRKbE5DMDBZVEJtTFdJek9XRXRZamN4TUdNNVpUTmpOalZtP2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEmb3BlcmF0aW9uU291cmNlPW9zX2loJmFzeW5jaW5mbw==", + "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/providers/Microsoft.Devices/operationResults/b3NfaWhfNDUwZmMxM2MtOThjNS00OTllLThlMGItYzkyZjI1ZmM3ZTM1?api-version=2021-03-31&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTkRVd1ptTXhNMk10T1Roak5TMDBPVGxsTFRobE1HSXRZemt5WmpJMVptTTNaVE0xP2FwaS12ZXJzaW9uPTIwMjEtMDMtMzEmb3BlcmF0aW9uU291cmNlPW9zX2loJmFzeW5jaW5mbw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.0.0.0" ] }, "ResponseHeaders": { @@ -4748,16 +4068,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11959" + "11967" ], "x-ms-request-id": [ - "5850a0cf-a07c-4e0e-9490-30a447476bf8" + "0055b1ad-ffff-412f-a0fd-8f3072d7ea9e" ], "x-ms-correlation-request-id": [ - "5850a0cf-a07c-4e0e-9490-30a447476bf8" + "0055b1ad-ffff-412f-a0fd-8f3072d7ea9e" ], "x-ms-routing-request-id": [ - "WESTUS2:20210219T192913Z:5850a0cf-a07c-4e0e-9490-30a447476bf8" + "WESTUS2:20210514T174205Z:0055b1ad-ffff-412f-a0fd-8f3072d7ea9e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4766,7 +4086,7 @@ "nosniff" ], "Date": [ - "Fri, 19 Feb 2021 19:29:13 GMT" + "Fri, 14 May 2021 17:42:05 GMT" ], "Content-Length": [ "20" @@ -4782,16 +4102,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/providers/Microsoft.Devices/operationResults/b3NfaWhfYjBlYzYzMzgtMTJlNC00YTBmLWIzOWEtYjcxMGM5ZTNjNjVm?api-version=2020-03-01&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmWWpCbFl6WXpNemd0TVRKbE5DMDBZVEJtTFdJek9XRXRZamN4TUdNNVpUTmpOalZtP2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEmb3BlcmF0aW9uU291cmNlPW9zX2loJmFzeW5jaW5mbw==", + "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/providers/Microsoft.Devices/operationResults/b3NfaWhfNDUwZmMxM2MtOThjNS00OTllLThlMGItYzkyZjI1ZmM3ZTM1?api-version=2021-03-31&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTkRVd1ptTXhNMk10T1Roak5TMDBPVGxsTFRobE1HSXRZemt5WmpJMVptTTNaVE0xP2FwaS12ZXJzaW9uPTIwMjEtMDMtMzEmb3BlcmF0aW9uU291cmNlPW9zX2loJmFzeW5jaW5mbw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.0.0.0" ] }, "ResponseHeaders": { @@ -4805,16 +4125,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11958" + "11966" ], "x-ms-request-id": [ - "2f341afb-1995-46eb-a22f-21d18600dd78" + "78d44582-b4d3-4e98-a797-515468e6029a" ], "x-ms-correlation-request-id": [ - "2f341afb-1995-46eb-a22f-21d18600dd78" + "78d44582-b4d3-4e98-a797-515468e6029a" ], "x-ms-routing-request-id": [ - "WESTUS2:20210219T192929Z:2f341afb-1995-46eb-a22f-21d18600dd78" + "WESTUS2:20210514T174221Z:78d44582-b4d3-4e98-a797-515468e6029a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4823,7 +4143,7 @@ "nosniff" ], "Date": [ - "Fri, 19 Feb 2021 19:29:28 GMT" + "Fri, 14 May 2021 17:42:20 GMT" ], "Content-Length": [ "20" @@ -4839,16 +4159,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/providers/Microsoft.Devices/operationResults/b3NfaWhfYjBlYzYzMzgtMTJlNC00YTBmLWIzOWEtYjcxMGM5ZTNjNjVm?api-version=2020-03-01&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmWWpCbFl6WXpNemd0TVRKbE5DMDBZVEJtTFdJek9XRXRZamN4TUdNNVpUTmpOalZtP2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEmb3BlcmF0aW9uU291cmNlPW9zX2loJmFzeW5jaW5mbw==", + "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/providers/Microsoft.Devices/operationResults/b3NfaWhfNDUwZmMxM2MtOThjNS00OTllLThlMGItYzkyZjI1ZmM3ZTM1?api-version=2021-03-31&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTkRVd1ptTXhNMk10T1Roak5TMDBPVGxsTFRobE1HSXRZemt5WmpJMVptTTNaVE0xP2FwaS12ZXJzaW9uPTIwMjEtMDMtMzEmb3BlcmF0aW9uU291cmNlPW9zX2loJmFzeW5jaW5mbw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.0.0.0" ] }, "ResponseHeaders": { @@ -4862,16 +4182,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11957" + "11965" ], "x-ms-request-id": [ - "8ec906a7-9474-4e34-88f6-28e4522043f6" + "7260dce8-d7a2-4bf3-a376-15ac3e1846ff" ], "x-ms-correlation-request-id": [ - "8ec906a7-9474-4e34-88f6-28e4522043f6" + "7260dce8-d7a2-4bf3-a376-15ac3e1846ff" ], "x-ms-routing-request-id": [ - "WESTUS2:20210219T192944Z:8ec906a7-9474-4e34-88f6-28e4522043f6" + "WESTUS2:20210514T174236Z:7260dce8-d7a2-4bf3-a376-15ac3e1846ff" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4880,7 +4200,7 @@ "nosniff" ], "Date": [ - "Fri, 19 Feb 2021 19:29:43 GMT" + "Fri, 14 May 2021 17:42:36 GMT" ], "Content-Length": [ "20" @@ -4896,16 +4216,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/providers/Microsoft.Devices/operationResults/b3NfaWhfYjBlYzYzMzgtMTJlNC00YTBmLWIzOWEtYjcxMGM5ZTNjNjVm?api-version=2020-03-01&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmWWpCbFl6WXpNemd0TVRKbE5DMDBZVEJtTFdJek9XRXRZamN4TUdNNVpUTmpOalZtP2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEmb3BlcmF0aW9uU291cmNlPW9zX2loJmFzeW5jaW5mbw==", + "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/providers/Microsoft.Devices/operationResults/b3NfaWhfNDUwZmMxM2MtOThjNS00OTllLThlMGItYzkyZjI1ZmM3ZTM1?api-version=2021-03-31&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTkRVd1ptTXhNMk10T1Roak5TMDBPVGxsTFRobE1HSXRZemt5WmpJMVptTTNaVE0xP2FwaS12ZXJzaW9uPTIwMjEtMDMtMzEmb3BlcmF0aW9uU291cmNlPW9zX2loJmFzeW5jaW5mbw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.0.0.0" ] }, "ResponseHeaders": { @@ -4919,16 +4239,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11956" + "11964" ], "x-ms-request-id": [ - "7cd877fe-921b-46f6-a1c8-2f684b2a6c4f" + "29c24adf-23a4-4349-b512-62d7fea220a6" ], "x-ms-correlation-request-id": [ - "7cd877fe-921b-46f6-a1c8-2f684b2a6c4f" + "29c24adf-23a4-4349-b512-62d7fea220a6" ], "x-ms-routing-request-id": [ - "WESTUS2:20210219T192959Z:7cd877fe-921b-46f6-a1c8-2f684b2a6c4f" + "WESTUS2:20210514T174251Z:29c24adf-23a4-4349-b512-62d7fea220a6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4937,7 +4257,7 @@ "nosniff" ], "Date": [ - "Fri, 19 Feb 2021 19:29:58 GMT" + "Fri, 14 May 2021 17:42:51 GMT" ], "Content-Length": [ "20" @@ -4953,16 +4273,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/providers/Microsoft.Devices/operationResults/b3NfaWhfYjBlYzYzMzgtMTJlNC00YTBmLWIzOWEtYjcxMGM5ZTNjNjVm?api-version=2020-03-01&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmWWpCbFl6WXpNemd0TVRKbE5DMDBZVEJtTFdJek9XRXRZamN4TUdNNVpUTmpOalZtP2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEmb3BlcmF0aW9uU291cmNlPW9zX2loJmFzeW5jaW5mbw==", + "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/providers/Microsoft.Devices/operationResults/b3NfaWhfNDUwZmMxM2MtOThjNS00OTllLThlMGItYzkyZjI1ZmM3ZTM1?api-version=2021-03-31&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTkRVd1ptTXhNMk10T1Roak5TMDBPVGxsTFRobE1HSXRZemt5WmpJMVptTTNaVE0xP2FwaS12ZXJzaW9uPTIwMjEtMDMtMzEmb3BlcmF0aW9uU291cmNlPW9zX2loJmFzeW5jaW5mbw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.0.0.0" ] }, "ResponseHeaders": { @@ -4976,16 +4296,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11955" + "11963" ], "x-ms-request-id": [ - "5decf51c-64fd-40b5-9c3f-d248ca421968" + "5c02d973-c150-4088-931d-7104e55b6a09" ], "x-ms-correlation-request-id": [ - "5decf51c-64fd-40b5-9c3f-d248ca421968" + "5c02d973-c150-4088-931d-7104e55b6a09" ], "x-ms-routing-request-id": [ - "WESTUS2:20210219T193014Z:5decf51c-64fd-40b5-9c3f-d248ca421968" + "WESTUS2:20210514T174306Z:5c02d973-c150-4088-931d-7104e55b6a09" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4994,7 +4314,7 @@ "nosniff" ], "Date": [ - "Fri, 19 Feb 2021 19:30:14 GMT" + "Fri, 14 May 2021 17:43:06 GMT" ], "Content-Length": [ "20" @@ -5010,16 +4330,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/providers/Microsoft.Devices/operationResults/b3NfaWhfYjBlYzYzMzgtMTJlNC00YTBmLWIzOWEtYjcxMGM5ZTNjNjVm?api-version=2020-03-01&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmWWpCbFl6WXpNemd0TVRKbE5DMDBZVEJtTFdJek9XRXRZamN4TUdNNVpUTmpOalZtP2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEmb3BlcmF0aW9uU291cmNlPW9zX2loJmFzeW5jaW5mbw==", + "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/providers/Microsoft.Devices/operationResults/b3NfaWhfNDUwZmMxM2MtOThjNS00OTllLThlMGItYzkyZjI1ZmM3ZTM1?api-version=2021-03-31&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTkRVd1ptTXhNMk10T1Roak5TMDBPVGxsTFRobE1HSXRZemt5WmpJMVptTTNaVE0xP2FwaS12ZXJzaW9uPTIwMjEtMDMtMzEmb3BlcmF0aW9uU291cmNlPW9zX2loJmFzeW5jaW5mbw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.0.0.0" ] }, "ResponseHeaders": { @@ -5033,16 +4353,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11954" + "11962" ], "x-ms-request-id": [ - "b74db01e-862b-450d-8505-1a78a8b8d7e8" + "eebe182f-9b74-4f94-b1dc-d67d1ad16a9f" ], "x-ms-correlation-request-id": [ - "b74db01e-862b-450d-8505-1a78a8b8d7e8" + "eebe182f-9b74-4f94-b1dc-d67d1ad16a9f" ], "x-ms-routing-request-id": [ - "WESTUS2:20210219T193030Z:b74db01e-862b-450d-8505-1a78a8b8d7e8" + "WESTUS2:20210514T174321Z:eebe182f-9b74-4f94-b1dc-d67d1ad16a9f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5051,7 +4371,7 @@ "nosniff" ], "Date": [ - "Fri, 19 Feb 2021 19:30:29 GMT" + "Fri, 14 May 2021 17:43:21 GMT" ], "Content-Length": [ "20" @@ -5067,16 +4387,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/providers/Microsoft.Devices/operationResults/b3NfaWhfYjBlYzYzMzgtMTJlNC00YTBmLWIzOWEtYjcxMGM5ZTNjNjVm?api-version=2020-03-01&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmWWpCbFl6WXpNemd0TVRKbE5DMDBZVEJtTFdJek9XRXRZamN4TUdNNVpUTmpOalZtP2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEmb3BlcmF0aW9uU291cmNlPW9zX2loJmFzeW5jaW5mbw==", + "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/providers/Microsoft.Devices/operationResults/b3NfaWhfNDUwZmMxM2MtOThjNS00OTllLThlMGItYzkyZjI1ZmM3ZTM1?api-version=2021-03-31&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTkRVd1ptTXhNMk10T1Roak5TMDBPVGxsTFRobE1HSXRZemt5WmpJMVptTTNaVE0xP2FwaS12ZXJzaW9uPTIwMjEtMDMtMzEmb3BlcmF0aW9uU291cmNlPW9zX2loJmFzeW5jaW5mbw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.0.0.0" ] }, "ResponseHeaders": { @@ -5090,16 +4410,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11953" + "11961" ], "x-ms-request-id": [ - "43e371c6-ec40-4df8-9f8c-4f6d26eceac0" + "be6409ff-8d5f-44de-9b12-afb9da4d4e25" ], "x-ms-correlation-request-id": [ - "43e371c6-ec40-4df8-9f8c-4f6d26eceac0" + "be6409ff-8d5f-44de-9b12-afb9da4d4e25" ], "x-ms-routing-request-id": [ - "WESTUS2:20210219T193045Z:43e371c6-ec40-4df8-9f8c-4f6d26eceac0" + "WESTUS2:20210514T174337Z:be6409ff-8d5f-44de-9b12-afb9da4d4e25" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5108,7 +4428,7 @@ "nosniff" ], "Date": [ - "Fri, 19 Feb 2021 19:30:45 GMT" + "Fri, 14 May 2021 17:43:36 GMT" ], "Content-Length": [ "20" @@ -5124,16 +4444,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/providers/Microsoft.Devices/operationResults/b3NfaWhfYjBlYzYzMzgtMTJlNC00YTBmLWIzOWEtYjcxMGM5ZTNjNjVm?api-version=2020-03-01&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmWWpCbFl6WXpNemd0TVRKbE5DMDBZVEJtTFdJek9XRXRZamN4TUdNNVpUTmpOalZtP2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEmb3BlcmF0aW9uU291cmNlPW9zX2loJmFzeW5jaW5mbw==", + "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/providers/Microsoft.Devices/operationResults/b3NfaWhfNDUwZmMxM2MtOThjNS00OTllLThlMGItYzkyZjI1ZmM3ZTM1?api-version=2021-03-31&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTkRVd1ptTXhNMk10T1Roak5TMDBPVGxsTFRobE1HSXRZemt5WmpJMVptTTNaVE0xP2FwaS12ZXJzaW9uPTIwMjEtMDMtMzEmb3BlcmF0aW9uU291cmNlPW9zX2loJmFzeW5jaW5mbw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.0.0.0" ] }, "ResponseHeaders": { @@ -5147,16 +4467,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11952" + "11960" ], "x-ms-request-id": [ - "6b1aca89-c8ef-46c0-aa7a-be04c7926ed9" + "4d27ed30-9415-4662-97f9-3362942b86cb" ], "x-ms-correlation-request-id": [ - "6b1aca89-c8ef-46c0-aa7a-be04c7926ed9" + "4d27ed30-9415-4662-97f9-3362942b86cb" ], "x-ms-routing-request-id": [ - "WESTUS2:20210219T193100Z:6b1aca89-c8ef-46c0-aa7a-be04c7926ed9" + "WESTUS2:20210514T174352Z:4d27ed30-9415-4662-97f9-3362942b86cb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5165,7 +4485,7 @@ "nosniff" ], "Date": [ - "Fri, 19 Feb 2021 19:31:00 GMT" + "Fri, 14 May 2021 17:43:51 GMT" ], "Content-Length": [ "20" @@ -5181,16 +4501,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/providers/Microsoft.Devices/operationResults/b3NfaWhfYjBlYzYzMzgtMTJlNC00YTBmLWIzOWEtYjcxMGM5ZTNjNjVm?api-version=2020-03-01&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmWWpCbFl6WXpNemd0TVRKbE5DMDBZVEJtTFdJek9XRXRZamN4TUdNNVpUTmpOalZtP2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEmb3BlcmF0aW9uU291cmNlPW9zX2loJmFzeW5jaW5mbw==", + "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/providers/Microsoft.Devices/operationResults/b3NfaWhfNDUwZmMxM2MtOThjNS00OTllLThlMGItYzkyZjI1ZmM3ZTM1?api-version=2021-03-31&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTkRVd1ptTXhNMk10T1Roak5TMDBPVGxsTFRobE1HSXRZemt5WmpJMVptTTNaVE0xP2FwaS12ZXJzaW9uPTIwMjEtMDMtMzEmb3BlcmF0aW9uU291cmNlPW9zX2loJmFzeW5jaW5mbw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.0.0.0" ] }, "ResponseHeaders": { @@ -5204,16 +4524,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11951" + "11959" ], "x-ms-request-id": [ - "3735ed29-8ff8-46f4-a012-edf716896b47" + "b3492e12-5662-4611-b3eb-f0687d6b5a6b" ], "x-ms-correlation-request-id": [ - "3735ed29-8ff8-46f4-a012-edf716896b47" + "b3492e12-5662-4611-b3eb-f0687d6b5a6b" ], "x-ms-routing-request-id": [ - "WESTUS2:20210219T193115Z:3735ed29-8ff8-46f4-a012-edf716896b47" + "WESTUS2:20210514T174407Z:b3492e12-5662-4611-b3eb-f0687d6b5a6b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5222,7 +4542,7 @@ "nosniff" ], "Date": [ - "Fri, 19 Feb 2021 19:31:15 GMT" + "Fri, 14 May 2021 17:44:06 GMT" ], "Content-Length": [ "20" @@ -5238,16 +4558,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/providers/Microsoft.Devices/operationResults/b3NfaWhfYjBlYzYzMzgtMTJlNC00YTBmLWIzOWEtYjcxMGM5ZTNjNjVm?api-version=2020-03-01&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmWWpCbFl6WXpNemd0TVRKbE5DMDBZVEJtTFdJek9XRXRZamN4TUdNNVpUTmpOalZtP2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEmb3BlcmF0aW9uU291cmNlPW9zX2loJmFzeW5jaW5mbw==", + "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/providers/Microsoft.Devices/operationResults/b3NfaWhfNDUwZmMxM2MtOThjNS00OTllLThlMGItYzkyZjI1ZmM3ZTM1?api-version=2021-03-31&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTkRVd1ptTXhNMk10T1Roak5TMDBPVGxsTFRobE1HSXRZemt5WmpJMVptTTNaVE0xP2FwaS12ZXJzaW9uPTIwMjEtMDMtMzEmb3BlcmF0aW9uU291cmNlPW9zX2loJmFzeW5jaW5mbw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.0.0.0" ] }, "ResponseHeaders": { @@ -5261,16 +4581,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11950" + "11958" ], "x-ms-request-id": [ - "c62c18df-de85-4ce0-a7c9-cb31184bedd7" + "1cc7e2e4-23ba-48bf-8a89-6fed57703860" ], "x-ms-correlation-request-id": [ - "c62c18df-de85-4ce0-a7c9-cb31184bedd7" + "1cc7e2e4-23ba-48bf-8a89-6fed57703860" ], "x-ms-routing-request-id": [ - "WESTUS2:20210219T193130Z:c62c18df-de85-4ce0-a7c9-cb31184bedd7" + "WESTUS2:20210514T174422Z:1cc7e2e4-23ba-48bf-8a89-6fed57703860" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5279,7 +4599,7 @@ "nosniff" ], "Date": [ - "Fri, 19 Feb 2021 19:31:30 GMT" + "Fri, 14 May 2021 17:44:21 GMT" ], "Content-Length": [ "20" @@ -5295,16 +4615,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/providers/Microsoft.Devices/operationResults/b3NfaWhfYjBlYzYzMzgtMTJlNC00YTBmLWIzOWEtYjcxMGM5ZTNjNjVm?api-version=2020-03-01&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmWWpCbFl6WXpNemd0TVRKbE5DMDBZVEJtTFdJek9XRXRZamN4TUdNNVpUTmpOalZtP2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEmb3BlcmF0aW9uU291cmNlPW9zX2loJmFzeW5jaW5mbw==", + "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/providers/Microsoft.Devices/operationResults/b3NfaWhfNDUwZmMxM2MtOThjNS00OTllLThlMGItYzkyZjI1ZmM3ZTM1?api-version=2021-03-31&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTkRVd1ptTXhNMk10T1Roak5TMDBPVGxsTFRobE1HSXRZemt5WmpJMVptTTNaVE0xP2FwaS12ZXJzaW9uPTIwMjEtMDMtMzEmb3BlcmF0aW9uU291cmNlPW9zX2loJmFzeW5jaW5mbw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.0.0.0" ] }, "ResponseHeaders": { @@ -5318,16 +4638,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11949" + "11957" ], "x-ms-request-id": [ - "79f09b08-b975-4b3f-90d8-1b167bcb4802" + "86c03899-bf76-4cdf-a0b0-30d70c4891e6" ], "x-ms-correlation-request-id": [ - "79f09b08-b975-4b3f-90d8-1b167bcb4802" + "86c03899-bf76-4cdf-a0b0-30d70c4891e6" ], "x-ms-routing-request-id": [ - "WESTUS2:20210219T193146Z:79f09b08-b975-4b3f-90d8-1b167bcb4802" + "WESTUS2:20210514T174437Z:86c03899-bf76-4cdf-a0b0-30d70c4891e6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5336,7 +4656,7 @@ "nosniff" ], "Date": [ - "Fri, 19 Feb 2021 19:31:46 GMT" + "Fri, 14 May 2021 17:44:37 GMT" ], "Content-Length": [ "20" @@ -5352,16 +4672,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/providers/Microsoft.Devices/operationResults/b3NfaWhfYjBlYzYzMzgtMTJlNC00YTBmLWIzOWEtYjcxMGM5ZTNjNjVm?api-version=2020-03-01&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmWWpCbFl6WXpNemd0TVRKbE5DMDBZVEJtTFdJek9XRXRZamN4TUdNNVpUTmpOalZtP2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEmb3BlcmF0aW9uU291cmNlPW9zX2loJmFzeW5jaW5mbw==", + "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/providers/Microsoft.Devices/operationResults/b3NfaWhfNDUwZmMxM2MtOThjNS00OTllLThlMGItYzkyZjI1ZmM3ZTM1?api-version=2021-03-31&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTkRVd1ptTXhNMk10T1Roak5TMDBPVGxsTFRobE1HSXRZemt5WmpJMVptTTNaVE0xP2FwaS12ZXJzaW9uPTIwMjEtMDMtMzEmb3BlcmF0aW9uU291cmNlPW9zX2loJmFzeW5jaW5mbw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.0.0.0" ] }, "ResponseHeaders": { @@ -5375,16 +4695,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11948" + "11956" ], "x-ms-request-id": [ - "c24caf23-376c-4bb2-b325-97f8a45454c2" + "ffb0745d-2358-46f6-b39c-4b9a7bfaa438" ], "x-ms-correlation-request-id": [ - "c24caf23-376c-4bb2-b325-97f8a45454c2" + "ffb0745d-2358-46f6-b39c-4b9a7bfaa438" ], "x-ms-routing-request-id": [ - "WESTUS2:20210219T193201Z:c24caf23-376c-4bb2-b325-97f8a45454c2" + "WESTUS2:20210514T174452Z:ffb0745d-2358-46f6-b39c-4b9a7bfaa438" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5393,7 +4713,7 @@ "nosniff" ], "Date": [ - "Fri, 19 Feb 2021 19:32:00 GMT" + "Fri, 14 May 2021 17:44:52 GMT" ], "Content-Length": [ "20" @@ -5409,16 +4729,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/providers/Microsoft.Devices/operationResults/b3NfaWhfYjBlYzYzMzgtMTJlNC00YTBmLWIzOWEtYjcxMGM5ZTNjNjVm?api-version=2020-03-01&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmWWpCbFl6WXpNemd0TVRKbE5DMDBZVEJtTFdJek9XRXRZamN4TUdNNVpUTmpOalZtP2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEmb3BlcmF0aW9uU291cmNlPW9zX2loJmFzeW5jaW5mbw==", + "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/providers/Microsoft.Devices/operationResults/b3NfaWhfNDUwZmMxM2MtOThjNS00OTllLThlMGItYzkyZjI1ZmM3ZTM1?api-version=2021-03-31&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTkRVd1ptTXhNMk10T1Roak5TMDBPVGxsTFRobE1HSXRZemt5WmpJMVptTTNaVE0xP2FwaS12ZXJzaW9uPTIwMjEtMDMtMzEmb3BlcmF0aW9uU291cmNlPW9zX2loJmFzeW5jaW5mbw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.0.0.0" ] }, "ResponseHeaders": { @@ -5432,16 +4752,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11947" + "11955" ], "x-ms-request-id": [ - "5c276b96-805f-497e-b801-6e7d3cb4eaff" + "41954571-ef04-4180-9633-515f76d0f03e" ], "x-ms-correlation-request-id": [ - "5c276b96-805f-497e-b801-6e7d3cb4eaff" + "41954571-ef04-4180-9633-515f76d0f03e" ], "x-ms-routing-request-id": [ - "WESTUS2:20210219T193216Z:5c276b96-805f-497e-b801-6e7d3cb4eaff" + "WESTUS2:20210514T174508Z:41954571-ef04-4180-9633-515f76d0f03e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5450,7 +4770,7 @@ "nosniff" ], "Date": [ - "Fri, 19 Feb 2021 19:32:15 GMT" + "Fri, 14 May 2021 17:45:07 GMT" ], "Content-Length": [ "20" @@ -5466,16 +4786,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/providers/Microsoft.Devices/operationResults/b3NfaWhfYjBlYzYzMzgtMTJlNC00YTBmLWIzOWEtYjcxMGM5ZTNjNjVm?api-version=2020-03-01&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmWWpCbFl6WXpNemd0TVRKbE5DMDBZVEJtTFdJek9XRXRZamN4TUdNNVpUTmpOalZtP2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEmb3BlcmF0aW9uU291cmNlPW9zX2loJmFzeW5jaW5mbw==", + "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/providers/Microsoft.Devices/operationResults/b3NfaWhfNDUwZmMxM2MtOThjNS00OTllLThlMGItYzkyZjI1ZmM3ZTM1?api-version=2021-03-31&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTkRVd1ptTXhNMk10T1Roak5TMDBPVGxsTFRobE1HSXRZemt5WmpJMVptTTNaVE0xP2FwaS12ZXJzaW9uPTIwMjEtMDMtMzEmb3BlcmF0aW9uU291cmNlPW9zX2loJmFzeW5jaW5mbw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.0.0.0" ] }, "ResponseHeaders": { @@ -5489,16 +4809,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11946" + "11954" ], "x-ms-request-id": [ - "c549b7c7-5118-4928-8823-65e5b6323edf" + "38b43347-f6d1-4131-a89f-fc494ce8e901" ], "x-ms-correlation-request-id": [ - "c549b7c7-5118-4928-8823-65e5b6323edf" + "38b43347-f6d1-4131-a89f-fc494ce8e901" ], "x-ms-routing-request-id": [ - "WESTUS2:20210219T193231Z:c549b7c7-5118-4928-8823-65e5b6323edf" + "WESTUS2:20210514T174523Z:38b43347-f6d1-4131-a89f-fc494ce8e901" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5507,7 +4827,7 @@ "nosniff" ], "Date": [ - "Fri, 19 Feb 2021 19:32:30 GMT" + "Fri, 14 May 2021 17:45:22 GMT" ], "Content-Length": [ "20" @@ -5523,16 +4843,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/providers/Microsoft.Devices/operationResults/b3NfaWhfYjBlYzYzMzgtMTJlNC00YTBmLWIzOWEtYjcxMGM5ZTNjNjVm?api-version=2020-03-01&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmWWpCbFl6WXpNemd0TVRKbE5DMDBZVEJtTFdJek9XRXRZamN4TUdNNVpUTmpOalZtP2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEmb3BlcmF0aW9uU291cmNlPW9zX2loJmFzeW5jaW5mbw==", + "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/providers/Microsoft.Devices/operationResults/b3NfaWhfNDUwZmMxM2MtOThjNS00OTllLThlMGItYzkyZjI1ZmM3ZTM1?api-version=2021-03-31&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTkRVd1ptTXhNMk10T1Roak5TMDBPVGxsTFRobE1HSXRZemt5WmpJMVptTTNaVE0xP2FwaS12ZXJzaW9uPTIwMjEtMDMtMzEmb3BlcmF0aW9uU291cmNlPW9zX2loJmFzeW5jaW5mbw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.0.0.0" ] }, "ResponseHeaders": { @@ -5546,16 +4866,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11945" + "11953" ], "x-ms-request-id": [ - "b61d1e65-fa48-4878-85f4-52ce28a32523" + "f3a68471-f202-4af7-94e3-ba42b8555bf7" ], "x-ms-correlation-request-id": [ - "b61d1e65-fa48-4878-85f4-52ce28a32523" + "f3a68471-f202-4af7-94e3-ba42b8555bf7" ], "x-ms-routing-request-id": [ - "WESTUS2:20210219T193246Z:b61d1e65-fa48-4878-85f4-52ce28a32523" + "WESTUS2:20210514T174538Z:f3a68471-f202-4af7-94e3-ba42b8555bf7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5564,7 +4884,7 @@ "nosniff" ], "Date": [ - "Fri, 19 Feb 2021 19:32:46 GMT" + "Fri, 14 May 2021 17:45:37 GMT" ], "Content-Length": [ "20" @@ -5580,16 +4900,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/providers/Microsoft.Devices/operationResults/b3NfaWhfYjBlYzYzMzgtMTJlNC00YTBmLWIzOWEtYjcxMGM5ZTNjNjVm?api-version=2020-03-01&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmWWpCbFl6WXpNemd0TVRKbE5DMDBZVEJtTFdJek9XRXRZamN4TUdNNVpUTmpOalZtP2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEmb3BlcmF0aW9uU291cmNlPW9zX2loJmFzeW5jaW5mbw==", + "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/providers/Microsoft.Devices/operationResults/b3NfaWhfNDUwZmMxM2MtOThjNS00OTllLThlMGItYzkyZjI1ZmM3ZTM1?api-version=2021-03-31&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTkRVd1ptTXhNMk10T1Roak5TMDBPVGxsTFRobE1HSXRZemt5WmpJMVptTTNaVE0xP2FwaS12ZXJzaW9uPTIwMjEtMDMtMzEmb3BlcmF0aW9uU291cmNlPW9zX2loJmFzeW5jaW5mbw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.0.0.0" ] }, "ResponseHeaders": { @@ -5603,16 +4923,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11944" + "11952" ], "x-ms-request-id": [ - "78ea4c03-017c-49e0-b23c-ba4a330fb098" + "5a52b158-dbbc-43a1-9cb9-642b846140e1" ], "x-ms-correlation-request-id": [ - "78ea4c03-017c-49e0-b23c-ba4a330fb098" + "5a52b158-dbbc-43a1-9cb9-642b846140e1" ], "x-ms-routing-request-id": [ - "WESTUS2:20210219T193302Z:78ea4c03-017c-49e0-b23c-ba4a330fb098" + "WESTUS2:20210514T174553Z:5a52b158-dbbc-43a1-9cb9-642b846140e1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5621,7 +4941,7 @@ "nosniff" ], "Date": [ - "Fri, 19 Feb 2021 19:33:01 GMT" + "Fri, 14 May 2021 17:45:53 GMT" ], "Content-Length": [ "20" @@ -5637,16 +4957,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/providers/Microsoft.Devices/operationResults/b3NfaWhfYjBlYzYzMzgtMTJlNC00YTBmLWIzOWEtYjcxMGM5ZTNjNjVm?api-version=2020-03-01&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmWWpCbFl6WXpNemd0TVRKbE5DMDBZVEJtTFdJek9XRXRZamN4TUdNNVpUTmpOalZtP2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEmb3BlcmF0aW9uU291cmNlPW9zX2loJmFzeW5jaW5mbw==", + "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/providers/Microsoft.Devices/operationResults/b3NfaWhfNDUwZmMxM2MtOThjNS00OTllLThlMGItYzkyZjI1ZmM3ZTM1?api-version=2021-03-31&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTkRVd1ptTXhNMk10T1Roak5TMDBPVGxsTFRobE1HSXRZemt5WmpJMVptTTNaVE0xP2FwaS12ZXJzaW9uPTIwMjEtMDMtMzEmb3BlcmF0aW9uU291cmNlPW9zX2loJmFzeW5jaW5mbw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.0.0.0" ] }, "ResponseHeaders": { @@ -5660,16 +4980,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11943" + "11951" ], "x-ms-request-id": [ - "cbf2f7f7-1cb0-483e-8c96-8e2209b34e72" + "414a31c8-cd79-4365-9271-20493164db3e" ], "x-ms-correlation-request-id": [ - "cbf2f7f7-1cb0-483e-8c96-8e2209b34e72" + "414a31c8-cd79-4365-9271-20493164db3e" ], "x-ms-routing-request-id": [ - "WESTUS2:20210219T193317Z:cbf2f7f7-1cb0-483e-8c96-8e2209b34e72" + "WESTUS2:20210514T174608Z:414a31c8-cd79-4365-9271-20493164db3e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5678,7 +4998,7 @@ "nosniff" ], "Date": [ - "Fri, 19 Feb 2021 19:33:16 GMT" + "Fri, 14 May 2021 17:46:08 GMT" ], "Content-Length": [ "20" @@ -5694,16 +5014,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/providers/Microsoft.Devices/operationResults/b3NfaWhfYjBlYzYzMzgtMTJlNC00YTBmLWIzOWEtYjcxMGM5ZTNjNjVm?api-version=2020-03-01&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmWWpCbFl6WXpNemd0TVRKbE5DMDBZVEJtTFdJek9XRXRZamN4TUdNNVpUTmpOalZtP2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEmb3BlcmF0aW9uU291cmNlPW9zX2loJmFzeW5jaW5mbw==", + "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/providers/Microsoft.Devices/operationResults/b3NfaWhfNDUwZmMxM2MtOThjNS00OTllLThlMGItYzkyZjI1ZmM3ZTM1?api-version=2021-03-31&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTkRVd1ptTXhNMk10T1Roak5TMDBPVGxsTFRobE1HSXRZemt5WmpJMVptTTNaVE0xP2FwaS12ZXJzaW9uPTIwMjEtMDMtMzEmb3BlcmF0aW9uU291cmNlPW9zX2loJmFzeW5jaW5mbw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.0.0.0" ] }, "ResponseHeaders": { @@ -5717,16 +5037,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11942" + "11950" ], "x-ms-request-id": [ - "def8a15c-1dfc-4137-b5aa-77bbf500e7e5" + "03ae93b0-6d4e-49ad-be3f-6d9bad0b46f6" ], "x-ms-correlation-request-id": [ - "def8a15c-1dfc-4137-b5aa-77bbf500e7e5" + "03ae93b0-6d4e-49ad-be3f-6d9bad0b46f6" ], "x-ms-routing-request-id": [ - "WESTUS2:20210219T193332Z:def8a15c-1dfc-4137-b5aa-77bbf500e7e5" + "WESTUS2:20210514T174624Z:03ae93b0-6d4e-49ad-be3f-6d9bad0b46f6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5735,7 +5055,7 @@ "nosniff" ], "Date": [ - "Fri, 19 Feb 2021 19:33:31 GMT" + "Fri, 14 May 2021 17:46:23 GMT" ], "Content-Length": [ "20" @@ -5751,16 +5071,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/providers/Microsoft.Devices/operationResults/b3NfaWhfYjBlYzYzMzgtMTJlNC00YTBmLWIzOWEtYjcxMGM5ZTNjNjVm?api-version=2020-03-01&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmWWpCbFl6WXpNemd0TVRKbE5DMDBZVEJtTFdJek9XRXRZamN4TUdNNVpUTmpOalZtP2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEmb3BlcmF0aW9uU291cmNlPW9zX2loJmFzeW5jaW5mbw==", + "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/providers/Microsoft.Devices/operationResults/b3NfaWhfNDUwZmMxM2MtOThjNS00OTllLThlMGItYzkyZjI1ZmM3ZTM1?api-version=2021-03-31&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTkRVd1ptTXhNMk10T1Roak5TMDBPVGxsTFRobE1HSXRZemt5WmpJMVptTTNaVE0xP2FwaS12ZXJzaW9uPTIwMjEtMDMtMzEmb3BlcmF0aW9uU291cmNlPW9zX2loJmFzeW5jaW5mbw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.0.0.0" ] }, "ResponseHeaders": { @@ -5774,16 +5094,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11941" + "11949" ], "x-ms-request-id": [ - "87004572-b963-4232-a1b3-8d01e27e2cc2" + "cd213ec9-eac1-4dbd-a959-41beb3c114a6" ], "x-ms-correlation-request-id": [ - "87004572-b963-4232-a1b3-8d01e27e2cc2" + "cd213ec9-eac1-4dbd-a959-41beb3c114a6" ], "x-ms-routing-request-id": [ - "WESTUS2:20210219T193347Z:87004572-b963-4232-a1b3-8d01e27e2cc2" + "WESTUS2:20210514T174639Z:cd213ec9-eac1-4dbd-a959-41beb3c114a6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5792,7 +5112,7 @@ "nosniff" ], "Date": [ - "Fri, 19 Feb 2021 19:33:47 GMT" + "Fri, 14 May 2021 17:46:38 GMT" ], "Content-Length": [ "22" @@ -5808,16 +5128,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/providers/Microsoft.Devices/operationResults/b3NfaWhfYjBlYzYzMzgtMTJlNC00YTBmLWIzOWEtYjcxMGM5ZTNjNjVm?api-version=2020-03-01&operationSource=os_ih", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmWWpCbFl6WXpNemd0TVRKbE5DMDBZVEJtTFdJek9XRXRZamN4TUdNNVpUTmpOalZtP2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEmb3BlcmF0aW9uU291cmNlPW9zX2lo", + "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/providers/Microsoft.Devices/operationResults/b3NfaWhfNDUwZmMxM2MtOThjNS00OTllLThlMGItYzkyZjI1ZmM3ZTM1?api-version=2021-03-31&operationSource=os_ih", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTkRVd1ptTXhNMk10T1Roak5TMDBPVGxsTFRobE1HSXRZemt5WmpJMVptTTNaVE0xP2FwaS12ZXJzaW9uPTIwMjEtMDMtMzEmb3BlcmF0aW9uU291cmNlPW9zX2lo", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.0.0.0" ] }, "ResponseHeaders": { @@ -5828,7 +5148,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/providers/Microsoft.Devices/operationResults/b3NfaWhfYjBlYzYzMzgtMTJlNC00YTBmLWIzOWEtYjcxMGM5ZTNjNjVm?api-version=2020-03-01&operationSource=os_ih" + "https://management.azure.com/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/providers/Microsoft.Devices/operationResults/b3NfaWhfNDUwZmMxM2MtOThjNS00OTllLThlMGItYzkyZjI1ZmM3ZTM1?api-version=2021-03-31&operationSource=os_ih" ], "Retry-After": [ "15" @@ -5837,16 +5157,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11940" + "11948" ], "x-ms-request-id": [ - "279e44c8-be5d-4b06-bbde-ab24874fe5c0" + "bf5d63fe-00cd-4527-9386-a7cf2ce564d2" ], "x-ms-correlation-request-id": [ - "279e44c8-be5d-4b06-bbde-ab24874fe5c0" + "bf5d63fe-00cd-4527-9386-a7cf2ce564d2" ], "x-ms-routing-request-id": [ - "WESTUS2:20210219T193347Z:279e44c8-be5d-4b06-bbde-ab24874fe5c0" + "WESTUS2:20210514T174639Z:bf5d63fe-00cd-4527-9386-a7cf2ce564d2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5855,7 +5175,7 @@ "nosniff" ], "Date": [ - "Fri, 19 Feb 2021 19:33:47 GMT" + "Fri, 14 May 2021 17:46:38 GMT" ], "Expires": [ "-1" diff --git a/sdk/iothub/Microsoft.Azure.Management.IotHub/tests/SessionRecords/IotHubClientTests/IotHubClient_HubUpdate.json b/sdk/iothub/Microsoft.Azure.Management.IotHub/tests/SessionRecords/IotHubClientTests/IotHubClient_HubUpdate.json index 569624d1ab7bf..3a20b08ac40b5 100644 --- a/sdk/iothub/Microsoft.Azure.Management.IotHub/tests/SessionRecords/IotHubClientTests/IotHubClient_HubUpdate.json +++ b/sdk/iothub/Microsoft.Azure.Management.IotHub/tests/SessionRecords/IotHubClientTests/IotHubClient_HubUpdate.json @@ -1,21 +1,21 @@ { "Entries": [ { - "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourcegroups/UpdateDotNetHubRG?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Jlc291cmNlZ3JvdXBzL1VwZGF0ZURvdE5ldEh1YlJHP2FwaS12ZXJzaW9uPTIwMTctMDUtMTA=", + "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourcegroups/UpdatedDotNetHubRG?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Jlc291cmNlZ3JvdXBzL1VwZGF0ZWREb3ROZXRIdWJSRz9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"WestUS2\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "9af5ca28-5ba2-413d-ba73-7bdab77803c3" + "b2806400-1593-47ba-b954-0c204c708360" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.19043.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" ], "Content-Type": [ @@ -36,13 +36,13 @@ "1199" ], "x-ms-request-id": [ - "5c7577bd-b0b8-4f63-986a-fc9e519e33f8" + "28751907-8880-4239-93bd-8e650daaec51" ], "x-ms-correlation-request-id": [ - "5c7577bd-b0b8-4f63-986a-fc9e519e33f8" + "28751907-8880-4239-93bd-8e650daaec51" ], "x-ms-routing-request-id": [ - "WESTUS2:20210219T190313Z:5c7577bd-b0b8-4f63-986a-fc9e519e33f8" + "WESTUS2:20210514T185249Z:28751907-8880-4239-93bd-8e650daaec51" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,10 +51,10 @@ "nosniff" ], "Date": [ - "Fri, 19 Feb 2021 19:03:13 GMT" + "Fri, 14 May 2021 18:52:49 GMT" ], "Content-Length": [ - "188" + "190" ], "Content-Type": [ "application/json; charset=utf-8" @@ -63,26 +63,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/UpdateDotNetHubRG\",\r\n \"name\": \"UpdateDotNetHubRG\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/UpdatedDotNetHubRG\",\r\n \"name\": \"UpdatedDotNetHubRG\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/providers/Microsoft.Devices/checkNameAvailability?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9jaGVja05hbWVBdmFpbGFiaWxpdHk/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/providers/Microsoft.Devices/checkNameAvailability?api-version=2021-03-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9jaGVja05hbWVBdmFpbGFiaWxpdHk/YXBpLXZlcnNpb249MjAyMS0wMy0zMQ==", "RequestMethod": "POST", "RequestBody": "{\r\n \"name\": \"UpdateDotNetHub\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "f941a0b3-f1d2-4894-ba22-5cba735bd21b" + "6131dcf4-1554-4ed9-9079-b0270a5bc4b7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -105,13 +105,13 @@ "1199" ], "x-ms-request-id": [ - "21af3995-469c-492e-b77c-09e776aad276" + "1e9d375d-ec2f-4ded-9940-f48e9b3dee41" ], "x-ms-correlation-request-id": [ - "21af3995-469c-492e-b77c-09e776aad276" + "1e9d375d-ec2f-4ded-9940-f48e9b3dee41" ], "x-ms-routing-request-id": [ - "WESTUS2:20210219T190313Z:21af3995-469c-492e-b77c-09e776aad276" + "WESTUS2:20210514T185250Z:1e9d375d-ec2f-4ded-9940-f48e9b3dee41" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -120,7 +120,7 @@ "nosniff" ], "Date": [ - "Fri, 19 Feb 2021 19:03:13 GMT" + "Fri, 14 May 2021 18:52:49 GMT" ], "Content-Length": [ "56" @@ -136,22 +136,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/UpdateDotNetHubRG/providers/Microsoft.Devices/IotHubs/UpdateDotNetHub?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Jlc291cmNlR3JvdXBzL1VwZGF0ZURvdE5ldEh1YlJHL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9Jb3RIdWJzL1VwZGF0ZURvdE5ldEh1Yj9hcGktdmVyc2lvbj0yMDIwLTAzLTAx", + "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/UpdatedDotNetHubRG/providers/Microsoft.Devices/IotHubs/UpdateDotNetHub?api-version=2021-03-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Jlc291cmNlR3JvdXBzL1VwZGF0ZWREb3ROZXRIdWJSRy9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9VcGRhdGVEb3ROZXRIdWI/YXBpLXZlcnNpb249MjAyMS0wMy0zMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"WestUS2\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "d8adec46-6534-4092-8bbe-0e1ac160f401" + "281eb518-a320-4dcc-9cfc-10665885350f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -168,7 +168,7 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/providers/Microsoft.Devices/operationResults/b3NfaWhfNzdmZTNlZjgtN2JiMC00MzkzLWEzZjMtZDc1OTVkMTc5ZjM4?api-version=2020-03-01&operationSource=os_ih&asyncinfo" + "https://management.azure.com/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/providers/Microsoft.Devices/operationResults/b3NfaWhfY2E2YjM2ZGUtMDQ0Yi00YjA2LThkZWYtYmJiODAxOTdjNDRh?api-version=2021-03-31&operationSource=os_ih&asyncinfo" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -177,13 +177,13 @@ "4999" ], "x-ms-request-id": [ - "b66f8af1-034d-4f07-87d9-fd223fcb6769" + "865d2e51-79c4-4e79-a78a-2b45c475df33" ], "x-ms-correlation-request-id": [ - "b66f8af1-034d-4f07-87d9-fd223fcb6769" + "865d2e51-79c4-4e79-a78a-2b45c475df33" ], "x-ms-routing-request-id": [ - "WESTUS2:20210219T190317Z:b66f8af1-034d-4f07-87d9-fd223fcb6769" + "WESTUS2:20210514T185254Z:865d2e51-79c4-4e79-a78a-2b45c475df33" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -192,10 +192,10 @@ "nosniff" ], "Date": [ - "Fri, 19 Feb 2021 19:03:17 GMT" + "Fri, 14 May 2021 18:52:53 GMT" ], "Content-Length": [ - "659" + "661" ], "Content-Type": [ "application/json; charset=utf-8" @@ -204,32 +204,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/UpdateDotNetHubRG/providers/Microsoft.Devices/IotHubs/UpdateDotNetHub\",\r\n \"name\": \"UpdateDotNetHub\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"WestUS2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"9dbb02fa-c9d2-4593-967e-ffc99c566c5c\",\r\n \"resourcegroup\": \"UpdateDotNetHubRG\",\r\n \"properties\": {\r\n \"state\": \"Activating\",\r\n \"provisioningState\": \"Accepted\",\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/UpdatedDotNetHubRG/providers/Microsoft.Devices/IotHubs/UpdateDotNetHub\",\r\n \"name\": \"UpdateDotNetHub\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"WestUS2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"9dbb02fa-c9d2-4593-967e-ffc99c566c5c\",\r\n \"resourcegroup\": \"UpdatedDotNetHubRG\",\r\n \"properties\": {\r\n \"state\": \"Activating\",\r\n \"provisioningState\": \"Accepted\",\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/UpdateDotNetHubRG/providers/Microsoft.Devices/IotHubs/UpdateDotNetHub?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Jlc291cmNlR3JvdXBzL1VwZGF0ZURvdE5ldEh1YlJHL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9Jb3RIdWJzL1VwZGF0ZURvdE5ldEh1Yj9hcGktdmVyc2lvbj0yMDIwLTAzLTAx", + "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/UpdatedDotNetHubRG/providers/Microsoft.Devices/IotHubs/UpdateDotNetHub?api-version=2021-03-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Jlc291cmNlR3JvdXBzL1VwZGF0ZWREb3ROZXRIdWJSRy9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9VcGRhdGVEb3ROZXRIdWI/YXBpLXZlcnNpb249MjAyMS0wMy0zMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"etag\": \"AAAACmu6LgE=\",\r\n \"properties\": {\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true,\r\n \"source\": \"DeviceMessages\"\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"capacity\": 2\r\n },\r\n \"location\": \"WestUS2\",\r\n \"tags\": {}\r\n}", + "RequestBody": "{\r\n \"etag\": \"AAAADEo7aKE=\",\r\n \"properties\": {\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true,\r\n \"source\": \"DeviceMessages\"\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"capacity\": 2\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"location\": \"WestUS2\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "3bce3374-38ca-46e8-95b1-a927f03b4f4f" + "7bc885fe-4e27-4ed5-81a5-27a6ca26c0d1" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "1382" + "1425" ] }, "ResponseHeaders": { @@ -240,7 +240,7 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/providers/Microsoft.Devices/operationResults/b3NfaWhfOGNmZWI5MGYtYzlkOC00ZThjLThjOGItY2M4ZDMyNjBiYTY3?api-version=2020-03-01&operationSource=os_ih&asyncinfo" + "https://management.azure.com/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/providers/Microsoft.Devices/operationResults/b3NfaWhfOTlhYTRlYjItYTE5NC00NzZlLWI5ODEtY2UyZGVmZDkwODc3?api-version=2021-03-31&operationSource=os_ih&asyncinfo" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -249,13 +249,13 @@ "4998" ], "x-ms-request-id": [ - "3b633950-983b-4b84-855f-1ecd035d81b5" + "b9e78d76-f398-48a3-86c6-535acd573ec8" ], "x-ms-correlation-request-id": [ - "3b633950-983b-4b84-855f-1ecd035d81b5" + "b9e78d76-f398-48a3-86c6-535acd573ec8" ], "x-ms-routing-request-id": [ - "WESTUS2:20210219T190521Z:3b633950-983b-4b84-855f-1ecd035d81b5" + "WESTUS2:20210514T185528Z:b9e78d76-f398-48a3-86c6-535acd573ec8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -264,10 +264,10 @@ "nosniff" ], "Date": [ - "Fri, 19 Feb 2021 19:05:21 GMT" + "Fri, 14 May 2021 18:55:27 GMT" ], "Content-Length": [ - "4008" + "4038" ], "Content-Type": [ "application/json; charset=utf-8" @@ -276,32 +276,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/UpdateDotNetHubRG/providers/Microsoft.Devices/IotHubs/UpdateDotNetHub\",\r\n \"name\": \"UpdateDotNetHub\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"WestUS2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"9dbb02fa-c9d2-4593-967e-ffc99c566c5c\",\r\n \"resourcegroup\": \"UpdateDotNetHubRG\",\r\n \"etag\": \"AAAACmu6LgE=\",\r\n \"properties\": {\r\n \"operationsMonitoringProperties\": {\r\n \"events\": {\r\n \"None\": \"None\",\r\n \"Connections\": \"None\",\r\n \"DeviceTelemetry\": \"None\",\r\n \"C2DCommands\": \"None\",\r\n \"DeviceIdentityOperations\": \"None\",\r\n \"FileUploadOperations\": \"None\",\r\n \"Routes\": \"None\"\r\n }\r\n },\r\n \"provisioningState\": \"Accepted\",\r\n \"authorizationPolicies\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"E2DnzIxaB8ecvBQyIKIKQtECmQeOdbL0fg6uurKAd3M=\",\r\n \"secondaryKey\": \"9Fv3WRJ/j+oXtSEn35y0qDtZJSB/K0VYjdpRtaEDRaY=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"NPUuZtx3Tkr0hKjJY3DFC291+B8Ejw7e6hE2Ym5rBVo=\",\r\n \"secondaryKey\": \"Q73ehGUZ8RrOY467doVtR1S7Jnhu+OndgiJ2TklZWTM=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"5Ao64uR/e7P1RP1oUV6sjcdXrpUEuPLsQFY1bJIBMjU=\",\r\n \"secondaryKey\": \"U0dH2F9/qnf6s21WwXEMl/2+UmP1oeFGVC5x9oqGFfU=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"+xoeCjqlIP9k11hXVXW6s80ma19MeuNzPlRtgGUWYBw=\",\r\n \"secondaryKey\": \"Po+lOKzRdDgdkfrzIISLEIAGIW1wva+LQY8fWNxFrho=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"66aXOxDePm1vNQlCYONKh4QK663zhH4XplKUi+pjLr4=\",\r\n \"secondaryKey\": \"0vdDDaVJlyLTQP+c6Uo91wZy9gLb2suFUaLuTZHXJAo=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ],\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4\r\n },\r\n \"operationsMonitoringEvents\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"updatedotnethub-operationmonitoring\",\r\n \"endpoint\": \"sb://iothub-ns-updatedotn-8263284-14a51bbc83.servicebus.windows.net/\",\r\n \"internalAuthorizationPolicies\": [\r\n {\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"KeyName\": \"scaleunitsend-01c48093-c3ce-4a4c-9c32-18f42c453940-iothub\",\r\n \"PrimaryKey\": \"5xmzybPeMrm7FWBnWNyiD3fsqPabYWyIp4WdfmsS5KE=\",\r\n \"SecondaryKey\": \"PvbHXE+sD2uB5itxl7atwkCfhNlWKnhs0mS/jaK2XCM=\",\r\n \"Rights\": [\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Fri, 19 Feb 2021 19:04:52 GMT\",\r\n \"ModifiedTime\": \"Fri, 19 Feb 2021 19:04:52 GMT\"\r\n },\r\n {\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"KeyName\": \"owner-93992fef-dff3-4e1a-bfd2-d8cd3af6cb93-iothub\",\r\n \"PrimaryKey\": \"joMaWuySyOhRDZx51RXcQiBjc+o1erlqMxr19nCHxC4=\",\r\n \"SecondaryKey\": \"qmqBlJ96IDvsKMQfM6k2p25hWc+jjbQ2aZAOXKtLBSg=\",\r\n \"Rights\": [\r\n \"Listen\",\r\n \"Manage\",\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Fri, 19 Feb 2021 19:04:52 GMT\",\r\n \"ModifiedTime\": \"Fri, 19 Feb 2021 19:04:52 GMT\"\r\n }\r\n ],\r\n \"authorizationPolicies\": [\r\n {\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"KeyName\": \"iothubowner\",\r\n \"PrimaryKey\": \"E2DnzIxaB8ecvBQyIKIKQtECmQeOdbL0fg6uurKAd3M=\",\r\n \"SecondaryKey\": \"9Fv3WRJ/j+oXtSEn35y0qDtZJSB/K0VYjdpRtaEDRaY=\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Fri, 19 Feb 2021 19:04:52 GMT\",\r\n \"ModifiedTime\": \"Fri, 19 Feb 2021 19:04:52 GMT\"\r\n },\r\n {\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"KeyName\": \"service\",\r\n \"PrimaryKey\": \"NPUuZtx3Tkr0hKjJY3DFC291+B8Ejw7e6hE2Ym5rBVo=\",\r\n \"SecondaryKey\": \"Q73ehGUZ8RrOY467doVtR1S7Jnhu+OndgiJ2TklZWTM=\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Fri, 19 Feb 2021 19:04:52 GMT\",\r\n \"ModifiedTime\": \"Fri, 19 Feb 2021 19:04:52 GMT\"\r\n }\r\n ]\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": [],\r\n \"cosmosDBSqlCollections\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/UpdatedDotNetHubRG/providers/Microsoft.Devices/IotHubs/UpdateDotNetHub\",\r\n \"name\": \"UpdateDotNetHub\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"WestUS2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"9dbb02fa-c9d2-4593-967e-ffc99c566c5c\",\r\n \"resourcegroup\": \"UpdatedDotNetHubRG\",\r\n \"etag\": \"AAAADEo7aKE=\",\r\n \"properties\": {\r\n \"operationsMonitoringProperties\": {\r\n \"events\": {\r\n \"None\": \"None\",\r\n \"Connections\": \"None\",\r\n \"DeviceTelemetry\": \"None\",\r\n \"C2DCommands\": \"None\",\r\n \"DeviceIdentityOperations\": \"None\",\r\n \"FileUploadOperations\": \"None\",\r\n \"Routes\": \"None\"\r\n }\r\n },\r\n \"provisioningState\": \"Accepted\",\r\n \"authorizationPolicies\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"mp4ZFbrDi4JQZ8cQ9U8ubeRldo+Gg/lgYfNfBp20vSw=\",\r\n \"secondaryKey\": \"LnrBjNJZM3qFWH6ZP+c5oXsYVFIgrDPkBicREjMlYZo=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"FZbn8OI1Hem5SikvpbAFMvj0LczGQ3e5CxQIS4H0RZ4=\",\r\n \"secondaryKey\": \"s/d8tBgOJ2PmyhF+lrqkvfXjO0QphashXuQU1oxLfcI=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"/lKZdtKBAe2dvK/DH388fhRW2PX8sxkHMWc8QzSLbjs=\",\r\n \"secondaryKey\": \"wunW+/CwVtlw7fYPPacsI1UhLku02ROdCqS9S1+eYzk=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"9UiwMdpvjhay4KGGSOHiCPPEoT/rtcpml675sspfqW4=\",\r\n \"secondaryKey\": \"bfFqklM6MREPuu3bW5UW1SauFB9Nyooeqva5qPGRQ4I=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"g8HQSYLr71DgARoIOdFEGobqNlxCyeL05QNCy5YbPGQ=\",\r\n \"secondaryKey\": \"zfYigSn+h4Sj5mNg/rMlJYtSaOPIHODWfzPpmJVBQ6Y=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ],\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4\r\n },\r\n \"operationsMonitoringEvents\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"updatedotnethub-operationmonitoring\",\r\n \"endpoint\": \"sb://iothub-ns-updatedotn-10943902-89fab0f372.servicebus.windows.net/\",\r\n \"internalAuthorizationPolicies\": [\r\n {\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"KeyName\": \"scaleunitsend-08e6d927-f430-41fe-b4e1-7e14bee3dc9a-iothub\",\r\n \"PrimaryKey\": \"7EYuastyBTS0XIpM1KcjD4BaaZ9HMo+50zr8FHVSABg=\",\r\n \"SecondaryKey\": \"F0hqtISe8NvvCxFzhE2a1XM8qlmB3vSZzOgOctgrn6w=\",\r\n \"Rights\": [\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Fri, 14 May 2021 18:54:35 GMT\",\r\n \"ModifiedTime\": \"Fri, 14 May 2021 18:54:35 GMT\"\r\n },\r\n {\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"KeyName\": \"owner-1c38c83f-c3c3-4ac8-86f1-3a83d2bb669c-iothub\",\r\n \"PrimaryKey\": \"FEo/BGgj7vxT3LDGr+lhkGBkRROGTfW2VX8e/wgLpVI=\",\r\n \"SecondaryKey\": \"3+LGFfRCsAXEuly2Pw4u40VdJSxJ9ZmpdXWcU/0ULTI=\",\r\n \"Rights\": [\r\n \"Listen\",\r\n \"Manage\",\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Fri, 14 May 2021 18:54:35 GMT\",\r\n \"ModifiedTime\": \"Fri, 14 May 2021 18:54:35 GMT\"\r\n }\r\n ],\r\n \"authorizationPolicies\": [\r\n {\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"KeyName\": \"iothubowner\",\r\n \"PrimaryKey\": \"mp4ZFbrDi4JQZ8cQ9U8ubeRldo+Gg/lgYfNfBp20vSw=\",\r\n \"SecondaryKey\": \"LnrBjNJZM3qFWH6ZP+c5oXsYVFIgrDPkBicREjMlYZo=\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Fri, 14 May 2021 18:54:35 GMT\",\r\n \"ModifiedTime\": \"Fri, 14 May 2021 18:54:35 GMT\"\r\n },\r\n {\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"KeyName\": \"service\",\r\n \"PrimaryKey\": \"FZbn8OI1Hem5SikvpbAFMvj0LczGQ3e5CxQIS4H0RZ4=\",\r\n \"SecondaryKey\": \"s/d8tBgOJ2PmyhF+lrqkvfXjO0QphashXuQU1oxLfcI=\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Fri, 14 May 2021 18:54:35 GMT\",\r\n \"ModifiedTime\": \"Fri, 14 May 2021 18:54:35 GMT\"\r\n }\r\n ]\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": [],\r\n \"cosmosDBSqlCollections\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/UpdateDotNetHubRG/providers/Microsoft.Devices/IotHubs/UpdateDotNetHub?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Jlc291cmNlR3JvdXBzL1VwZGF0ZURvdE5ldEh1YlJHL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9Jb3RIdWJzL1VwZGF0ZURvdE5ldEh1Yj9hcGktdmVyc2lvbj0yMDIwLTAzLTAx", + "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/UpdatedDotNetHubRG/providers/Microsoft.Devices/IotHubs/UpdateDotNetHub?api-version=2021-03-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Jlc291cmNlR3JvdXBzL1VwZGF0ZWREb3ROZXRIdWJSRy9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9VcGRhdGVEb3ROZXRIdWI/YXBpLXZlcnNpb249MjAyMS0wMy0zMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"etag\": \"AAAACmu6LgE=\",\r\n \"properties\": {\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://iothubcsharpsdksbnamespacetest.servicebus.windows.net/;SharedAccessKeyName=iotHubCSharpSDKSBTopicTestRule;SharedAccessKey=unJTi9bfs6Z2ESZ+WWsvULvn92g/zMqL/0cxaWGFj2U=;EntityPath=iotHubCSharpSDKSBTest\",\r\n \"name\": \"sb1\"\r\n }\r\n ],\r\n \"serviceBusTopics\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://iothubcsharpsdksbnamespacetest.servicebus.windows.net/;SharedAccessKeyName=iotHubCSharpSDKSBTopicTestRule;SharedAccessKey=j1GyxZFU2rIeY+9IgVCDNtl9pe5acBUFLLFyU5w2OOI=;EntityPath=iotHubCSharpSDKTopicTest\",\r\n \"name\": \"tp1\"\r\n }\r\n ],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://iothubcsharpsdkehnamespacetest.servicebus.windows.net/;SharedAccessKeyName=iothubcsharpsdkehtestrule;SharedAccessKey=jJdNKM6NazP+yGXk09kxHyIKzo+RNtqJybrAYnDdvB4=;EntityPath=iothubcsharpsdkehtest\",\r\n \"name\": \"eh1\"\r\n }\r\n ]\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route1\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route2\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route3\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"sb1\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route4\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"tp1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ]\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"capacity\": 2\r\n },\r\n \"location\": \"WestUS2\",\r\n \"tags\": {}\r\n}", + "RequestBody": "{\r\n \"etag\": \"AAAADEo7aKE=\",\r\n \"properties\": {\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://iothubcsharpsdksbnamespacetest.servicebus.windows.net/;SharedAccessKeyName=iotHubCSharpSDKSBTopicTestRule;SharedAccessKey=y8O5lI5ELdT/DNjpLzkpdyU0kdnPmY/G572WzLwQttc=;EntityPath=iotHubCSharpSDKSBTest\",\r\n \"name\": \"sb1\"\r\n }\r\n ],\r\n \"serviceBusTopics\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://iothubcsharpsdksbnamespacetest.servicebus.windows.net/;SharedAccessKeyName=iotHubCSharpSDKSBTopicTestRule;SharedAccessKey=it2eOWUNPrIf8joTv+CkhKWevpy3Om/Vef3mBGaVd5A=;EntityPath=iotHubCSharpSDKTopicTest\",\r\n \"name\": \"tp1\"\r\n }\r\n ],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://iothubcsharpsdkehnamespacetest.servicebus.windows.net/;SharedAccessKeyName=iothubcsharpsdkehtestrule;SharedAccessKey=3EJxCkZ7wvm9ph/QNxX5PESHHhh1z7WHX/jS9ddKr8w=;EntityPath=iothubcsharpsdkehtest\",\r\n \"name\": \"eh1\"\r\n }\r\n ]\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route1\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route2\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route3\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"sb1\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route4\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"tp1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ]\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"capacity\": 2\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"location\": \"WestUS2\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "774cc9aa-339f-43ac-852d-e50ac6e9dfdf" + "199196ee-d979-4abb-bdc6-135da33438d7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "2935" + "2978" ] }, "ResponseHeaders": { @@ -312,7 +312,7 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/providers/Microsoft.Devices/operationResults/b3NfaWhfNDI5ZmE0M2QtM2U0Zi00MzJhLTg1MTMtZjVkNGRmOTA3ZDY5?api-version=2020-03-01&operationSource=os_ih&asyncinfo" + "https://management.azure.com/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/providers/Microsoft.Devices/operationResults/b3NfaWhfNjJlNWJhMzQtODJiMy00OTQzLWFlZjAtOTQ4Yjc4MDBiOTgx?api-version=2021-03-31&operationSource=os_ih&asyncinfo" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -321,13 +321,13 @@ "4999" ], "x-ms-request-id": [ - "de660fb4-5e7c-4d7c-8643-9850df0200e7" + "4ad80998-84e3-4dc3-99c5-1bd390c6e10f" ], "x-ms-correlation-request-id": [ - "de660fb4-5e7c-4d7c-8643-9850df0200e7" + "4ad80998-84e3-4dc3-99c5-1bd390c6e10f" ], "x-ms-routing-request-id": [ - "WESTUS2:20210219T190829Z:de660fb4-5e7c-4d7c-8643-9850df0200e7" + "WESTUS2:20210514T185837Z:4ad80998-84e3-4dc3-99c5-1bd390c6e10f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -336,10 +336,10 @@ "nosniff" ], "Date": [ - "Fri, 19 Feb 2021 19:08:29 GMT" + "Fri, 14 May 2021 18:58:37 GMT" ], "Content-Length": [ - "5304" + "5334" ], "Content-Type": [ "application/json; charset=utf-8" @@ -348,32 +348,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/UpdateDotNetHubRG/providers/Microsoft.Devices/IotHubs/UpdateDotNetHub\",\r\n \"name\": \"UpdateDotNetHub\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"WestUS2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"9dbb02fa-c9d2-4593-967e-ffc99c566c5c\",\r\n \"resourcegroup\": \"UpdateDotNetHubRG\",\r\n \"etag\": \"AAAACmu6LgE=\",\r\n \"properties\": {\r\n \"operationsMonitoringProperties\": {\r\n \"events\": {\r\n \"None\": \"None\",\r\n \"Connections\": \"None\",\r\n \"DeviceTelemetry\": \"None\",\r\n \"C2DCommands\": \"None\",\r\n \"DeviceIdentityOperations\": \"None\",\r\n \"FileUploadOperations\": \"None\",\r\n \"Routes\": \"None\"\r\n }\r\n },\r\n \"provisioningState\": \"Accepted\",\r\n \"authorizationPolicies\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"E2DnzIxaB8ecvBQyIKIKQtECmQeOdbL0fg6uurKAd3M=\",\r\n \"secondaryKey\": \"9Fv3WRJ/j+oXtSEn35y0qDtZJSB/K0VYjdpRtaEDRaY=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"NPUuZtx3Tkr0hKjJY3DFC291+B8Ejw7e6hE2Ym5rBVo=\",\r\n \"secondaryKey\": \"Q73ehGUZ8RrOY467doVtR1S7Jnhu+OndgiJ2TklZWTM=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"5Ao64uR/e7P1RP1oUV6sjcdXrpUEuPLsQFY1bJIBMjU=\",\r\n \"secondaryKey\": \"U0dH2F9/qnf6s21WwXEMl/2+UmP1oeFGVC5x9oqGFfU=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"+xoeCjqlIP9k11hXVXW6s80ma19MeuNzPlRtgGUWYBw=\",\r\n \"secondaryKey\": \"Po+lOKzRdDgdkfrzIISLEIAGIW1wva+LQY8fWNxFrho=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"66aXOxDePm1vNQlCYONKh4QK663zhH4XplKUi+pjLr4=\",\r\n \"secondaryKey\": \"0vdDDaVJlyLTQP+c6Uo91wZy9gLb2suFUaLuTZHXJAo=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ],\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4\r\n },\r\n \"operationsMonitoringEvents\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"updatedotnethub-operationmonitoring\",\r\n \"endpoint\": \"sb://iothub-ns-updatedotn-8263284-14a51bbc83.servicebus.windows.net/\",\r\n \"internalAuthorizationPolicies\": [\r\n {\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"KeyName\": \"scaleunitsend-01c48093-c3ce-4a4c-9c32-18f42c453940-iothub\",\r\n \"PrimaryKey\": \"5xmzybPeMrm7FWBnWNyiD3fsqPabYWyIp4WdfmsS5KE=\",\r\n \"SecondaryKey\": \"PvbHXE+sD2uB5itxl7atwkCfhNlWKnhs0mS/jaK2XCM=\",\r\n \"Rights\": [\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Fri, 19 Feb 2021 19:04:52 GMT\",\r\n \"ModifiedTime\": \"Fri, 19 Feb 2021 19:04:52 GMT\"\r\n },\r\n {\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"KeyName\": \"owner-93992fef-dff3-4e1a-bfd2-d8cd3af6cb93-iothub\",\r\n \"PrimaryKey\": \"joMaWuySyOhRDZx51RXcQiBjc+o1erlqMxr19nCHxC4=\",\r\n \"SecondaryKey\": \"qmqBlJ96IDvsKMQfM6k2p25hWc+jjbQ2aZAOXKtLBSg=\",\r\n \"Rights\": [\r\n \"Listen\",\r\n \"Manage\",\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Fri, 19 Feb 2021 19:04:52 GMT\",\r\n \"ModifiedTime\": \"Fri, 19 Feb 2021 19:04:52 GMT\"\r\n }\r\n ],\r\n \"authorizationPolicies\": [\r\n {\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"KeyName\": \"iothubowner\",\r\n \"PrimaryKey\": \"E2DnzIxaB8ecvBQyIKIKQtECmQeOdbL0fg6uurKAd3M=\",\r\n \"SecondaryKey\": \"9Fv3WRJ/j+oXtSEn35y0qDtZJSB/K0VYjdpRtaEDRaY=\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Fri, 19 Feb 2021 19:04:52 GMT\",\r\n \"ModifiedTime\": \"Fri, 19 Feb 2021 19:04:52 GMT\"\r\n },\r\n {\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"KeyName\": \"service\",\r\n \"PrimaryKey\": \"NPUuZtx3Tkr0hKjJY3DFC291+B8Ejw7e6hE2Ym5rBVo=\",\r\n \"SecondaryKey\": \"Q73ehGUZ8RrOY467doVtR1S7Jnhu+OndgiJ2TklZWTM=\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Fri, 19 Feb 2021 19:04:52 GMT\",\r\n \"ModifiedTime\": \"Fri, 19 Feb 2021 19:04:52 GMT\"\r\n }\r\n ]\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://iothubcsharpsdksbnamespacetest.servicebus.windows.net/;SharedAccessKeyName=iotHubCSharpSDKSBTopicTestRule;SharedAccessKey=unJTi9bfs6Z2ESZ+WWsvULvn92g/zMqL/0cxaWGFj2U=;EntityPath=iotHubCSharpSDKSBTest\",\r\n \"name\": \"sb1\",\r\n \"id\": \"99fa5fdc-79e4-4dae-bc66-fd035f357f31\"\r\n }\r\n ],\r\n \"serviceBusTopics\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://iothubcsharpsdksbnamespacetest.servicebus.windows.net/;SharedAccessKeyName=iotHubCSharpSDKSBTopicTestRule;SharedAccessKey=j1GyxZFU2rIeY+9IgVCDNtl9pe5acBUFLLFyU5w2OOI=;EntityPath=iotHubCSharpSDKTopicTest\",\r\n \"name\": \"tp1\",\r\n \"id\": \"203a318b-e4bf-470e-a2b5-c27afa6459e4\"\r\n }\r\n ],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://iothubcsharpsdkehnamespacetest.servicebus.windows.net/;SharedAccessKeyName=iothubcsharpsdkehtestrule;SharedAccessKey=jJdNKM6NazP+yGXk09kxHyIKzo+RNtqJybrAYnDdvB4=;EntityPath=iothubcsharpsdkehtest\",\r\n \"name\": \"eh1\",\r\n \"id\": \"af0829d9-74ad-4d09-a673-4e74d8f12656\"\r\n }\r\n ],\r\n \"storageContainers\": [],\r\n \"cosmosDBSqlCollections\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route1\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route2\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route3\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"sb1\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route4\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"tp1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/UpdatedDotNetHubRG/providers/Microsoft.Devices/IotHubs/UpdateDotNetHub\",\r\n \"name\": \"UpdateDotNetHub\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"WestUS2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"9dbb02fa-c9d2-4593-967e-ffc99c566c5c\",\r\n \"resourcegroup\": \"UpdatedDotNetHubRG\",\r\n \"etag\": \"AAAADEo7aKE=\",\r\n \"properties\": {\r\n \"operationsMonitoringProperties\": {\r\n \"events\": {\r\n \"None\": \"None\",\r\n \"Connections\": \"None\",\r\n \"DeviceTelemetry\": \"None\",\r\n \"C2DCommands\": \"None\",\r\n \"DeviceIdentityOperations\": \"None\",\r\n \"FileUploadOperations\": \"None\",\r\n \"Routes\": \"None\"\r\n }\r\n },\r\n \"provisioningState\": \"Accepted\",\r\n \"authorizationPolicies\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"mp4ZFbrDi4JQZ8cQ9U8ubeRldo+Gg/lgYfNfBp20vSw=\",\r\n \"secondaryKey\": \"LnrBjNJZM3qFWH6ZP+c5oXsYVFIgrDPkBicREjMlYZo=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"FZbn8OI1Hem5SikvpbAFMvj0LczGQ3e5CxQIS4H0RZ4=\",\r\n \"secondaryKey\": \"s/d8tBgOJ2PmyhF+lrqkvfXjO0QphashXuQU1oxLfcI=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"/lKZdtKBAe2dvK/DH388fhRW2PX8sxkHMWc8QzSLbjs=\",\r\n \"secondaryKey\": \"wunW+/CwVtlw7fYPPacsI1UhLku02ROdCqS9S1+eYzk=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"9UiwMdpvjhay4KGGSOHiCPPEoT/rtcpml675sspfqW4=\",\r\n \"secondaryKey\": \"bfFqklM6MREPuu3bW5UW1SauFB9Nyooeqva5qPGRQ4I=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"g8HQSYLr71DgARoIOdFEGobqNlxCyeL05QNCy5YbPGQ=\",\r\n \"secondaryKey\": \"zfYigSn+h4Sj5mNg/rMlJYtSaOPIHODWfzPpmJVBQ6Y=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ],\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4\r\n },\r\n \"operationsMonitoringEvents\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"updatedotnethub-operationmonitoring\",\r\n \"endpoint\": \"sb://iothub-ns-updatedotn-10943902-89fab0f372.servicebus.windows.net/\",\r\n \"internalAuthorizationPolicies\": [\r\n {\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"KeyName\": \"scaleunitsend-08e6d927-f430-41fe-b4e1-7e14bee3dc9a-iothub\",\r\n \"PrimaryKey\": \"7EYuastyBTS0XIpM1KcjD4BaaZ9HMo+50zr8FHVSABg=\",\r\n \"SecondaryKey\": \"F0hqtISe8NvvCxFzhE2a1XM8qlmB3vSZzOgOctgrn6w=\",\r\n \"Rights\": [\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Fri, 14 May 2021 18:54:35 GMT\",\r\n \"ModifiedTime\": \"Fri, 14 May 2021 18:54:35 GMT\"\r\n },\r\n {\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"KeyName\": \"owner-1c38c83f-c3c3-4ac8-86f1-3a83d2bb669c-iothub\",\r\n \"PrimaryKey\": \"FEo/BGgj7vxT3LDGr+lhkGBkRROGTfW2VX8e/wgLpVI=\",\r\n \"SecondaryKey\": \"3+LGFfRCsAXEuly2Pw4u40VdJSxJ9ZmpdXWcU/0ULTI=\",\r\n \"Rights\": [\r\n \"Listen\",\r\n \"Manage\",\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Fri, 14 May 2021 18:54:35 GMT\",\r\n \"ModifiedTime\": \"Fri, 14 May 2021 18:54:35 GMT\"\r\n }\r\n ],\r\n \"authorizationPolicies\": [\r\n {\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"KeyName\": \"iothubowner\",\r\n \"PrimaryKey\": \"mp4ZFbrDi4JQZ8cQ9U8ubeRldo+Gg/lgYfNfBp20vSw=\",\r\n \"SecondaryKey\": \"LnrBjNJZM3qFWH6ZP+c5oXsYVFIgrDPkBicREjMlYZo=\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Fri, 14 May 2021 18:54:35 GMT\",\r\n \"ModifiedTime\": \"Fri, 14 May 2021 18:54:35 GMT\"\r\n },\r\n {\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"KeyName\": \"service\",\r\n \"PrimaryKey\": \"FZbn8OI1Hem5SikvpbAFMvj0LczGQ3e5CxQIS4H0RZ4=\",\r\n \"SecondaryKey\": \"s/d8tBgOJ2PmyhF+lrqkvfXjO0QphashXuQU1oxLfcI=\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Fri, 14 May 2021 18:54:35 GMT\",\r\n \"ModifiedTime\": \"Fri, 14 May 2021 18:54:35 GMT\"\r\n }\r\n ]\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://iothubcsharpsdksbnamespacetest.servicebus.windows.net/;SharedAccessKeyName=iotHubCSharpSDKSBTopicTestRule;SharedAccessKey=y8O5lI5ELdT/DNjpLzkpdyU0kdnPmY/G572WzLwQttc=;EntityPath=iotHubCSharpSDKSBTest\",\r\n \"name\": \"sb1\",\r\n \"id\": \"65fe948b-e9a2-4464-9c7e-5bbebe253bff\"\r\n }\r\n ],\r\n \"serviceBusTopics\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://iothubcsharpsdksbnamespacetest.servicebus.windows.net/;SharedAccessKeyName=iotHubCSharpSDKSBTopicTestRule;SharedAccessKey=it2eOWUNPrIf8joTv+CkhKWevpy3Om/Vef3mBGaVd5A=;EntityPath=iotHubCSharpSDKTopicTest\",\r\n \"name\": \"tp1\",\r\n \"id\": \"0b428fb2-ce3b-496a-b43c-fe5976c772f8\"\r\n }\r\n ],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://iothubcsharpsdkehnamespacetest.servicebus.windows.net/;SharedAccessKeyName=iothubcsharpsdkehtestrule;SharedAccessKey=3EJxCkZ7wvm9ph/QNxX5PESHHhh1z7WHX/jS9ddKr8w=;EntityPath=iothubcsharpsdkehtest\",\r\n \"name\": \"eh1\",\r\n \"id\": \"215492b4-b349-4c0a-832e-cf4953048c66\"\r\n }\r\n ],\r\n \"storageContainers\": [],\r\n \"cosmosDBSqlCollections\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route1\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route2\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route3\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"sb1\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route4\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"tp1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/UpdateDotNetHubRG/providers/Microsoft.Devices/IotHubs/UpdateDotNetHub?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Jlc291cmNlR3JvdXBzL1VwZGF0ZURvdE5ldEh1YlJHL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9Jb3RIdWJzL1VwZGF0ZURvdE5ldEh1Yj9hcGktdmVyc2lvbj0yMDIwLTAzLTAx", + "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/UpdatedDotNetHubRG/providers/Microsoft.Devices/IotHubs/UpdateDotNetHub?api-version=2021-03-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Jlc291cmNlR3JvdXBzL1VwZGF0ZWREb3ROZXRIdWJSRy9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9VcGRhdGVEb3ROZXRIdWI/YXBpLXZlcnNpb249MjAyMS0wMy0zMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"etag\": \"AAAACmvHmpA=\",\r\n \"properties\": {\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [\r\n {\r\n \"id\": \"99fa5fdc-79e4-4dae-bc66-fd035f357f31\",\r\n \"connectionString\": \"Endpoint=sb://iothubcsharpsdksbnamespacetest.servicebus.windows.net:5671/;SharedAccessKeyName=iotHubCSharpSDKSBTopicTestRule;SharedAccessKey=****;EntityPath=iotHubCSharpSDKSBTest\",\r\n \"name\": \"sb1\"\r\n }\r\n ],\r\n \"serviceBusTopics\": [\r\n {\r\n \"id\": \"203a318b-e4bf-470e-a2b5-c27afa6459e4\",\r\n \"connectionString\": \"Endpoint=sb://iothubcsharpsdksbnamespacetest.servicebus.windows.net:5671/;SharedAccessKeyName=iotHubCSharpSDKSBTopicTestRule;SharedAccessKey=****;EntityPath=iotHubCSharpSDKTopicTest\",\r\n \"name\": \"tp1\"\r\n }\r\n ],\r\n \"eventHubs\": [\r\n {\r\n \"id\": \"af0829d9-74ad-4d09-a673-4e74d8f12656\",\r\n \"connectionString\": \"Endpoint=sb://iothubcsharpsdkehnamespacetest.servicebus.windows.net:5671/;SharedAccessKeyName=iothubcsharpsdkehtestrule;SharedAccessKey=****;EntityPath=iothubcsharpsdkehtest\",\r\n \"name\": \"eh1\",\r\n \"resourceGroup\": \"1\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route1\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route2\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route3\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"sb1\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route4\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"tp1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false,\r\n \"source\": \"DeviceMessages\"\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"capacity\": 2\r\n },\r\n \"location\": \"WestUS2\",\r\n \"tags\": {}\r\n}", + "RequestBody": "{\r\n \"etag\": \"AAAADEo7ffE=\",\r\n \"properties\": {\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [\r\n {\r\n \"id\": \"65fe948b-e9a2-4464-9c7e-5bbebe253bff\",\r\n \"connectionString\": \"Endpoint=sb://iothubcsharpsdksbnamespacetest.servicebus.windows.net:5671/;SharedAccessKeyName=iotHubCSharpSDKSBTopicTestRule;SharedAccessKey=****;EntityPath=iotHubCSharpSDKSBTest\",\r\n \"name\": \"sb1\"\r\n }\r\n ],\r\n \"serviceBusTopics\": [\r\n {\r\n \"id\": \"0b428fb2-ce3b-496a-b43c-fe5976c772f8\",\r\n \"connectionString\": \"Endpoint=sb://iothubcsharpsdksbnamespacetest.servicebus.windows.net:5671/;SharedAccessKeyName=iotHubCSharpSDKSBTopicTestRule;SharedAccessKey=****;EntityPath=iotHubCSharpSDKTopicTest\",\r\n \"name\": \"tp1\"\r\n }\r\n ],\r\n \"eventHubs\": [\r\n {\r\n \"id\": \"215492b4-b349-4c0a-832e-cf4953048c66\",\r\n \"connectionString\": \"Endpoint=sb://iothubcsharpsdkehnamespacetest.servicebus.windows.net:5671/;SharedAccessKeyName=iothubcsharpsdkehtestrule;SharedAccessKey=****;EntityPath=iothubcsharpsdkehtest\",\r\n \"name\": \"eh1\",\r\n \"resourceGroup\": \"1\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route1\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route2\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route3\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"sb1\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route4\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"tp1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false,\r\n \"source\": \"DeviceMessages\"\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"capacity\": 2\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"location\": \"WestUS2\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "287eb598-cbc2-4abb-ac15-5b985c5f5c4f" + "99c646cb-d40a-4566-a204-a983f81e0c34" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "3297" + "3340" ] }, "ResponseHeaders": { @@ -384,7 +384,7 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/providers/Microsoft.Devices/operationResults/b3NfaWhfZjI1NzJjMDMtYzNjNi00OTE1LTllMDgtZDBkMmNlYjBlZDQy?api-version=2020-03-01&operationSource=os_ih&asyncinfo" + "https://management.azure.com/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/providers/Microsoft.Devices/operationResults/b3NfaWhfMjcxNGFiMDYtYzNkYS00NDA1LWEwYmUtMmMxNTdiZGQxMmJl?api-version=2021-03-31&operationSource=os_ih&asyncinfo" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -393,13 +393,13 @@ "4998" ], "x-ms-request-id": [ - "226b468f-b7f7-449d-8628-a237b1e1e46a" + "3c1f0bf5-199a-4c88-8c08-d430243c677c" ], "x-ms-correlation-request-id": [ - "226b468f-b7f7-449d-8628-a237b1e1e46a" + "3c1f0bf5-199a-4c88-8c08-d430243c677c" ], "x-ms-routing-request-id": [ - "WESTUS2:20210219T191004Z:226b468f-b7f7-449d-8628-a237b1e1e46a" + "WESTUS2:20210514T190012Z:3c1f0bf5-199a-4c88-8c08-d430243c677c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -408,10 +408,10 @@ "nosniff" ], "Date": [ - "Fri, 19 Feb 2021 19:10:03 GMT" + "Fri, 14 May 2021 19:00:12 GMT" ], "Content-Length": [ - "5324" + "5354" ], "Content-Type": [ "application/json; charset=utf-8" @@ -420,20 +420,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/UpdateDotNetHubRG/providers/Microsoft.Devices/IotHubs/UpdateDotNetHub\",\r\n \"name\": \"UpdateDotNetHub\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"WestUS2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"9dbb02fa-c9d2-4593-967e-ffc99c566c5c\",\r\n \"resourcegroup\": \"UpdateDotNetHubRG\",\r\n \"etag\": \"AAAACmvHmpA=\",\r\n \"properties\": {\r\n \"operationsMonitoringProperties\": {\r\n \"events\": {\r\n \"None\": \"None\",\r\n \"Connections\": \"None\",\r\n \"DeviceTelemetry\": \"None\",\r\n \"C2DCommands\": \"None\",\r\n \"DeviceIdentityOperations\": \"None\",\r\n \"FileUploadOperations\": \"None\",\r\n \"Routes\": \"None\"\r\n }\r\n },\r\n \"provisioningState\": \"Accepted\",\r\n \"authorizationPolicies\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"E2DnzIxaB8ecvBQyIKIKQtECmQeOdbL0fg6uurKAd3M=\",\r\n \"secondaryKey\": \"9Fv3WRJ/j+oXtSEn35y0qDtZJSB/K0VYjdpRtaEDRaY=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"NPUuZtx3Tkr0hKjJY3DFC291+B8Ejw7e6hE2Ym5rBVo=\",\r\n \"secondaryKey\": \"Q73ehGUZ8RrOY467doVtR1S7Jnhu+OndgiJ2TklZWTM=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"5Ao64uR/e7P1RP1oUV6sjcdXrpUEuPLsQFY1bJIBMjU=\",\r\n \"secondaryKey\": \"U0dH2F9/qnf6s21WwXEMl/2+UmP1oeFGVC5x9oqGFfU=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"+xoeCjqlIP9k11hXVXW6s80ma19MeuNzPlRtgGUWYBw=\",\r\n \"secondaryKey\": \"Po+lOKzRdDgdkfrzIISLEIAGIW1wva+LQY8fWNxFrho=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"66aXOxDePm1vNQlCYONKh4QK663zhH4XplKUi+pjLr4=\",\r\n \"secondaryKey\": \"0vdDDaVJlyLTQP+c6Uo91wZy9gLb2suFUaLuTZHXJAo=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ],\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4\r\n },\r\n \"operationsMonitoringEvents\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"updatedotnethub-operationmonitoring\",\r\n \"endpoint\": \"sb://iothub-ns-updatedotn-8263284-14a51bbc83.servicebus.windows.net/\",\r\n \"internalAuthorizationPolicies\": [\r\n {\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"KeyName\": \"scaleunitsend-01c48093-c3ce-4a4c-9c32-18f42c453940-iothub\",\r\n \"PrimaryKey\": \"5xmzybPeMrm7FWBnWNyiD3fsqPabYWyIp4WdfmsS5KE=\",\r\n \"SecondaryKey\": \"PvbHXE+sD2uB5itxl7atwkCfhNlWKnhs0mS/jaK2XCM=\",\r\n \"Rights\": [\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Fri, 19 Feb 2021 19:04:52 GMT\",\r\n \"ModifiedTime\": \"Fri, 19 Feb 2021 19:04:52 GMT\"\r\n },\r\n {\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"KeyName\": \"owner-93992fef-dff3-4e1a-bfd2-d8cd3af6cb93-iothub\",\r\n \"PrimaryKey\": \"joMaWuySyOhRDZx51RXcQiBjc+o1erlqMxr19nCHxC4=\",\r\n \"SecondaryKey\": \"qmqBlJ96IDvsKMQfM6k2p25hWc+jjbQ2aZAOXKtLBSg=\",\r\n \"Rights\": [\r\n \"Listen\",\r\n \"Manage\",\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Fri, 19 Feb 2021 19:04:52 GMT\",\r\n \"ModifiedTime\": \"Fri, 19 Feb 2021 19:04:52 GMT\"\r\n }\r\n ],\r\n \"authorizationPolicies\": [\r\n {\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"KeyName\": \"iothubowner\",\r\n \"PrimaryKey\": \"E2DnzIxaB8ecvBQyIKIKQtECmQeOdbL0fg6uurKAd3M=\",\r\n \"SecondaryKey\": \"9Fv3WRJ/j+oXtSEn35y0qDtZJSB/K0VYjdpRtaEDRaY=\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Fri, 19 Feb 2021 19:04:52 GMT\",\r\n \"ModifiedTime\": \"Fri, 19 Feb 2021 19:04:52 GMT\"\r\n },\r\n {\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"KeyName\": \"service\",\r\n \"PrimaryKey\": \"NPUuZtx3Tkr0hKjJY3DFC291+B8Ejw7e6hE2Ym5rBVo=\",\r\n \"SecondaryKey\": \"Q73ehGUZ8RrOY467doVtR1S7Jnhu+OndgiJ2TklZWTM=\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Fri, 19 Feb 2021 19:04:52 GMT\",\r\n \"ModifiedTime\": \"Fri, 19 Feb 2021 19:04:52 GMT\"\r\n }\r\n ]\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://iothubcsharpsdksbnamespacetest.servicebus.windows.net/;SharedAccessKeyName=iotHubCSharpSDKSBTopicTestRule;SharedAccessKey=unJTi9bfs6Z2ESZ+WWsvULvn92g/zMqL/0cxaWGFj2U=;EntityPath=iotHubCSharpSDKSBTest\",\r\n \"name\": \"sb1\",\r\n \"id\": \"99fa5fdc-79e4-4dae-bc66-fd035f357f31\"\r\n }\r\n ],\r\n \"serviceBusTopics\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://iothubcsharpsdksbnamespacetest.servicebus.windows.net/;SharedAccessKeyName=iotHubCSharpSDKSBTopicTestRule;SharedAccessKey=j1GyxZFU2rIeY+9IgVCDNtl9pe5acBUFLLFyU5w2OOI=;EntityPath=iotHubCSharpSDKTopicTest\",\r\n \"name\": \"tp1\",\r\n \"id\": \"203a318b-e4bf-470e-a2b5-c27afa6459e4\"\r\n }\r\n ],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://iothubcsharpsdkehnamespacetest.servicebus.windows.net/;SharedAccessKeyName=iothubcsharpsdkehtestrule;SharedAccessKey=jJdNKM6NazP+yGXk09kxHyIKzo+RNtqJybrAYnDdvB4=;EntityPath=iothubcsharpsdkehtest\",\r\n \"name\": \"eh1\",\r\n \"id\": \"af0829d9-74ad-4d09-a673-4e74d8f12656\",\r\n \"resourceGroup\": \"1\"\r\n }\r\n ],\r\n \"storageContainers\": [],\r\n \"cosmosDBSqlCollections\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route1\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route2\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route3\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"sb1\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route4\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"tp1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/UpdatedDotNetHubRG/providers/Microsoft.Devices/IotHubs/UpdateDotNetHub\",\r\n \"name\": \"UpdateDotNetHub\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"WestUS2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"9dbb02fa-c9d2-4593-967e-ffc99c566c5c\",\r\n \"resourcegroup\": \"UpdatedDotNetHubRG\",\r\n \"etag\": \"AAAADEo7ffE=\",\r\n \"properties\": {\r\n \"operationsMonitoringProperties\": {\r\n \"events\": {\r\n \"None\": \"None\",\r\n \"Connections\": \"None\",\r\n \"DeviceTelemetry\": \"None\",\r\n \"C2DCommands\": \"None\",\r\n \"DeviceIdentityOperations\": \"None\",\r\n \"FileUploadOperations\": \"None\",\r\n \"Routes\": \"None\"\r\n }\r\n },\r\n \"provisioningState\": \"Accepted\",\r\n \"authorizationPolicies\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"mp4ZFbrDi4JQZ8cQ9U8ubeRldo+Gg/lgYfNfBp20vSw=\",\r\n \"secondaryKey\": \"LnrBjNJZM3qFWH6ZP+c5oXsYVFIgrDPkBicREjMlYZo=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"FZbn8OI1Hem5SikvpbAFMvj0LczGQ3e5CxQIS4H0RZ4=\",\r\n \"secondaryKey\": \"s/d8tBgOJ2PmyhF+lrqkvfXjO0QphashXuQU1oxLfcI=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"/lKZdtKBAe2dvK/DH388fhRW2PX8sxkHMWc8QzSLbjs=\",\r\n \"secondaryKey\": \"wunW+/CwVtlw7fYPPacsI1UhLku02ROdCqS9S1+eYzk=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"9UiwMdpvjhay4KGGSOHiCPPEoT/rtcpml675sspfqW4=\",\r\n \"secondaryKey\": \"bfFqklM6MREPuu3bW5UW1SauFB9Nyooeqva5qPGRQ4I=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"g8HQSYLr71DgARoIOdFEGobqNlxCyeL05QNCy5YbPGQ=\",\r\n \"secondaryKey\": \"zfYigSn+h4Sj5mNg/rMlJYtSaOPIHODWfzPpmJVBQ6Y=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ],\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4\r\n },\r\n \"operationsMonitoringEvents\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"updatedotnethub-operationmonitoring\",\r\n \"endpoint\": \"sb://iothub-ns-updatedotn-10943902-89fab0f372.servicebus.windows.net/\",\r\n \"internalAuthorizationPolicies\": [\r\n {\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"KeyName\": \"scaleunitsend-08e6d927-f430-41fe-b4e1-7e14bee3dc9a-iothub\",\r\n \"PrimaryKey\": \"7EYuastyBTS0XIpM1KcjD4BaaZ9HMo+50zr8FHVSABg=\",\r\n \"SecondaryKey\": \"F0hqtISe8NvvCxFzhE2a1XM8qlmB3vSZzOgOctgrn6w=\",\r\n \"Rights\": [\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Fri, 14 May 2021 18:54:35 GMT\",\r\n \"ModifiedTime\": \"Fri, 14 May 2021 18:54:35 GMT\"\r\n },\r\n {\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"KeyName\": \"owner-1c38c83f-c3c3-4ac8-86f1-3a83d2bb669c-iothub\",\r\n \"PrimaryKey\": \"FEo/BGgj7vxT3LDGr+lhkGBkRROGTfW2VX8e/wgLpVI=\",\r\n \"SecondaryKey\": \"3+LGFfRCsAXEuly2Pw4u40VdJSxJ9ZmpdXWcU/0ULTI=\",\r\n \"Rights\": [\r\n \"Listen\",\r\n \"Manage\",\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Fri, 14 May 2021 18:54:35 GMT\",\r\n \"ModifiedTime\": \"Fri, 14 May 2021 18:54:35 GMT\"\r\n }\r\n ],\r\n \"authorizationPolicies\": [\r\n {\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"KeyName\": \"iothubowner\",\r\n \"PrimaryKey\": \"mp4ZFbrDi4JQZ8cQ9U8ubeRldo+Gg/lgYfNfBp20vSw=\",\r\n \"SecondaryKey\": \"LnrBjNJZM3qFWH6ZP+c5oXsYVFIgrDPkBicREjMlYZo=\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Fri, 14 May 2021 18:54:35 GMT\",\r\n \"ModifiedTime\": \"Fri, 14 May 2021 18:54:35 GMT\"\r\n },\r\n {\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"KeyName\": \"service\",\r\n \"PrimaryKey\": \"FZbn8OI1Hem5SikvpbAFMvj0LczGQ3e5CxQIS4H0RZ4=\",\r\n \"SecondaryKey\": \"s/d8tBgOJ2PmyhF+lrqkvfXjO0QphashXuQU1oxLfcI=\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Fri, 14 May 2021 18:54:35 GMT\",\r\n \"ModifiedTime\": \"Fri, 14 May 2021 18:54:35 GMT\"\r\n }\r\n ]\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://iothubcsharpsdksbnamespacetest.servicebus.windows.net/;SharedAccessKeyName=iotHubCSharpSDKSBTopicTestRule;SharedAccessKey=y8O5lI5ELdT/DNjpLzkpdyU0kdnPmY/G572WzLwQttc=;EntityPath=iotHubCSharpSDKSBTest\",\r\n \"name\": \"sb1\",\r\n \"id\": \"65fe948b-e9a2-4464-9c7e-5bbebe253bff\"\r\n }\r\n ],\r\n \"serviceBusTopics\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://iothubcsharpsdksbnamespacetest.servicebus.windows.net/;SharedAccessKeyName=iotHubCSharpSDKSBTopicTestRule;SharedAccessKey=it2eOWUNPrIf8joTv+CkhKWevpy3Om/Vef3mBGaVd5A=;EntityPath=iotHubCSharpSDKTopicTest\",\r\n \"name\": \"tp1\",\r\n \"id\": \"0b428fb2-ce3b-496a-b43c-fe5976c772f8\"\r\n }\r\n ],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://iothubcsharpsdkehnamespacetest.servicebus.windows.net/;SharedAccessKeyName=iothubcsharpsdkehtestrule;SharedAccessKey=3EJxCkZ7wvm9ph/QNxX5PESHHhh1z7WHX/jS9ddKr8w=;EntityPath=iothubcsharpsdkehtest\",\r\n \"name\": \"eh1\",\r\n \"id\": \"215492b4-b349-4c0a-832e-cf4953048c66\",\r\n \"resourceGroup\": \"1\"\r\n }\r\n ],\r\n \"storageContainers\": [],\r\n \"cosmosDBSqlCollections\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route1\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route2\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route3\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"sb1\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route4\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"tp1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/providers/Microsoft.Devices/operationResults/b3NfaWhfNzdmZTNlZjgtN2JiMC00MzkzLWEzZjMtZDc1OTVkMTc5ZjM4?api-version=2020-03-01&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTnpkbVpUTmxaamd0TjJKaU1DMDBNemt6TFdFelpqTXRaRGMxT1RWa01UYzVaak00P2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEmb3BlcmF0aW9uU291cmNlPW9zX2loJmFzeW5jaW5mbw==", + "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/providers/Microsoft.Devices/operationResults/b3NfaWhfY2E2YjM2ZGUtMDQ0Yi00YjA2LThkZWYtYmJiODAxOTdjNDRh?api-version=2021-03-31&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmWTJFMllqTTJaR1V0TURRMFlpMDBZakEyTFRoa1pXWXRZbUppT0RBeE9UZGpORFJoP2FwaS12ZXJzaW9uPTIwMjEtMDMtMzEmb3BlcmF0aW9uU291cmNlPW9zX2loJmFzeW5jaW5mbw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.0.0.0" ] }, "ResponseHeaders": { @@ -450,13 +450,13 @@ "11999" ], "x-ms-request-id": [ - "ccde43c4-01cb-4c69-b5ce-9121b041883b" + "fafc28fb-7ad4-4ba3-93bb-4eb3c6017147" ], "x-ms-correlation-request-id": [ - "ccde43c4-01cb-4c69-b5ce-9121b041883b" + "fafc28fb-7ad4-4ba3-93bb-4eb3c6017147" ], "x-ms-routing-request-id": [ - "WESTUS2:20210219T190348Z:ccde43c4-01cb-4c69-b5ce-9121b041883b" + "WESTUS2:20210514T185324Z:fafc28fb-7ad4-4ba3-93bb-4eb3c6017147" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -465,7 +465,7 @@ "nosniff" ], "Date": [ - "Fri, 19 Feb 2021 19:03:47 GMT" + "Fri, 14 May 2021 18:53:24 GMT" ], "Content-Length": [ "20" @@ -481,16 +481,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/providers/Microsoft.Devices/operationResults/b3NfaWhfNzdmZTNlZjgtN2JiMC00MzkzLWEzZjMtZDc1OTVkMTc5ZjM4?api-version=2020-03-01&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTnpkbVpUTmxaamd0TjJKaU1DMDBNemt6TFdFelpqTXRaRGMxT1RWa01UYzVaak00P2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEmb3BlcmF0aW9uU291cmNlPW9zX2loJmFzeW5jaW5mbw==", + "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/providers/Microsoft.Devices/operationResults/b3NfaWhfY2E2YjM2ZGUtMDQ0Yi00YjA2LThkZWYtYmJiODAxOTdjNDRh?api-version=2021-03-31&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmWTJFMllqTTJaR1V0TURRMFlpMDBZakEyTFRoa1pXWXRZbUppT0RBeE9UZGpORFJoP2FwaS12ZXJzaW9uPTIwMjEtMDMtMzEmb3BlcmF0aW9uU291cmNlPW9zX2loJmFzeW5jaW5mbw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.0.0.0" ] }, "ResponseHeaders": { @@ -507,13 +507,13 @@ "11998" ], "x-ms-request-id": [ - "687aec4c-0a0e-4d1f-bf6c-79b48af954d8" + "e058be54-2727-4618-a254-4ace6838f7b4" ], "x-ms-correlation-request-id": [ - "687aec4c-0a0e-4d1f-bf6c-79b48af954d8" + "e058be54-2727-4618-a254-4ace6838f7b4" ], "x-ms-routing-request-id": [ - "WESTUS2:20210219T190418Z:687aec4c-0a0e-4d1f-bf6c-79b48af954d8" + "WESTUS2:20210514T185354Z:e058be54-2727-4618-a254-4ace6838f7b4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -522,7 +522,7 @@ "nosniff" ], "Date": [ - "Fri, 19 Feb 2021 19:04:18 GMT" + "Fri, 14 May 2021 18:53:54 GMT" ], "Content-Length": [ "20" @@ -538,16 +538,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/providers/Microsoft.Devices/operationResults/b3NfaWhfNzdmZTNlZjgtN2JiMC00MzkzLWEzZjMtZDc1OTVkMTc5ZjM4?api-version=2020-03-01&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTnpkbVpUTmxaamd0TjJKaU1DMDBNemt6TFdFelpqTXRaRGMxT1RWa01UYzVaak00P2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEmb3BlcmF0aW9uU291cmNlPW9zX2loJmFzeW5jaW5mbw==", + "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/providers/Microsoft.Devices/operationResults/b3NfaWhfY2E2YjM2ZGUtMDQ0Yi00YjA2LThkZWYtYmJiODAxOTdjNDRh?api-version=2021-03-31&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmWTJFMllqTTJaR1V0TURRMFlpMDBZakEyTFRoa1pXWXRZbUppT0RBeE9UZGpORFJoP2FwaS12ZXJzaW9uPTIwMjEtMDMtMzEmb3BlcmF0aW9uU291cmNlPW9zX2loJmFzeW5jaW5mbw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.0.0.0" ] }, "ResponseHeaders": { @@ -564,13 +564,13 @@ "11997" ], "x-ms-request-id": [ - "ce67b087-4add-4f04-9206-a1027677bb5d" + "06782423-501b-41a9-a78e-f8f9b1f8752c" ], "x-ms-correlation-request-id": [ - "ce67b087-4add-4f04-9206-a1027677bb5d" + "06782423-501b-41a9-a78e-f8f9b1f8752c" ], "x-ms-routing-request-id": [ - "WESTUS2:20210219T190448Z:ce67b087-4add-4f04-9206-a1027677bb5d" + "WESTUS2:20210514T185424Z:06782423-501b-41a9-a78e-f8f9b1f8752c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -579,7 +579,7 @@ "nosniff" ], "Date": [ - "Fri, 19 Feb 2021 19:04:48 GMT" + "Fri, 14 May 2021 18:54:24 GMT" ], "Content-Length": [ "20" @@ -595,16 +595,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/providers/Microsoft.Devices/operationResults/b3NfaWhfNzdmZTNlZjgtN2JiMC00MzkzLWEzZjMtZDc1OTVkMTc5ZjM4?api-version=2020-03-01&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTnpkbVpUTmxaamd0TjJKaU1DMDBNemt6TFdFelpqTXRaRGMxT1RWa01UYzVaak00P2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEmb3BlcmF0aW9uU291cmNlPW9zX2loJmFzeW5jaW5mbw==", + "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/providers/Microsoft.Devices/operationResults/b3NfaWhfY2E2YjM2ZGUtMDQ0Yi00YjA2LThkZWYtYmJiODAxOTdjNDRh?api-version=2021-03-31&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmWTJFMllqTTJaR1V0TURRMFlpMDBZakEyTFRoa1pXWXRZbUppT0RBeE9UZGpORFJoP2FwaS12ZXJzaW9uPTIwMjEtMDMtMzEmb3BlcmF0aW9uU291cmNlPW9zX2loJmFzeW5jaW5mbw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.0.0.0" ] }, "ResponseHeaders": { @@ -621,13 +621,13 @@ "11996" ], "x-ms-request-id": [ - "95f846b2-6da4-48ff-8ef3-4c0a958e892b" + "355076bf-c47d-4489-b166-1c10ea2b8ef0" ], "x-ms-correlation-request-id": [ - "95f846b2-6da4-48ff-8ef3-4c0a958e892b" + "355076bf-c47d-4489-b166-1c10ea2b8ef0" ], "x-ms-routing-request-id": [ - "WESTUS2:20210219T190518Z:95f846b2-6da4-48ff-8ef3-4c0a958e892b" + "WESTUS2:20210514T185455Z:355076bf-c47d-4489-b166-1c10ea2b8ef0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -636,7 +636,64 @@ "nosniff" ], "Date": [ - "Fri, 19 Feb 2021 19:05:18 GMT" + "Fri, 14 May 2021 18:54:54 GMT" + ], + "Content-Length": [ + "20" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Running\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/providers/Microsoft.Devices/operationResults/b3NfaWhfY2E2YjM2ZGUtMDQ0Yi00YjA2LThkZWYtYmJiODAxOTdjNDRh?api-version=2021-03-31&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmWTJFMllqTTJaR1V0TURRMFlpMDBZakEyTFRoa1pXWXRZbUppT0RBeE9UZGpORFJoP2FwaS12ZXJzaW9uPTIwMjEtMDMtMzEmb3BlcmF0aW9uU291cmNlPW9zX2loJmFzeW5jaW5mbw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.30015.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-request-id": [ + "d931bc9e-5594-43b7-a081-182e1d85d1aa" + ], + "x-ms-correlation-request-id": [ + "d931bc9e-5594-43b7-a081-182e1d85d1aa" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210514T185525Z:d931bc9e-5594-43b7-a081-182e1d85d1aa" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 14 May 2021 18:55:24 GMT" ], "Content-Length": [ "22" @@ -652,16 +709,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/UpdateDotNetHubRG/providers/Microsoft.Devices/IotHubs/UpdateDotNetHub?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Jlc291cmNlR3JvdXBzL1VwZGF0ZURvdE5ldEh1YlJHL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9Jb3RIdWJzL1VwZGF0ZURvdE5ldEh1Yj9hcGktdmVyc2lvbj0yMDIwLTAzLTAx", + "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/UpdatedDotNetHubRG/providers/Microsoft.Devices/IotHubs/UpdateDotNetHub?api-version=2021-03-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Jlc291cmNlR3JvdXBzL1VwZGF0ZWREb3ROZXRIdWJSRy9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9VcGRhdGVEb3ROZXRIdWI/YXBpLXZlcnNpb249MjAyMS0wMy0zMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.0.0.0" ] }, "ResponseHeaders": { @@ -675,16 +732,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11994" ], "x-ms-request-id": [ - "c65c9c25-e31a-498e-915c-13eb3606fa8d" + "7352d7a3-700a-426c-a7dd-b6031499bdb3" ], "x-ms-correlation-request-id": [ - "c65c9c25-e31a-498e-915c-13eb3606fa8d" + "7352d7a3-700a-426c-a7dd-b6031499bdb3" ], "x-ms-routing-request-id": [ - "WESTUS2:20210219T190519Z:c65c9c25-e31a-498e-915c-13eb3606fa8d" + "WESTUS2:20210514T185525Z:7352d7a3-700a-426c-a7dd-b6031499bdb3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -693,10 +750,10 @@ "nosniff" ], "Date": [ - "Fri, 19 Feb 2021 19:05:19 GMT" + "Fri, 14 May 2021 18:55:25 GMT" ], "Content-Length": [ - "1559" + "1562" ], "Content-Type": [ "application/json; charset=utf-8" @@ -705,20 +762,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/UpdateDotNetHubRG/providers/Microsoft.Devices/IotHubs/UpdateDotNetHub\",\r\n \"name\": \"UpdateDotNetHub\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"WestUS2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"9dbb02fa-c9d2-4593-967e-ffc99c566c5c\",\r\n \"resourcegroup\": \"UpdateDotNetHubRG\",\r\n \"etag\": \"AAAACmu6LgE=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"UpdateDotNetHub.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"updatedotnethub\",\r\n \"endpoint\": \"sb://iothub-ns-updatedotn-8263284-14a51bbc83.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/UpdatedDotNetHubRG/providers/Microsoft.Devices/IotHubs/UpdateDotNetHub\",\r\n \"name\": \"UpdateDotNetHub\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"WestUS2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"9dbb02fa-c9d2-4593-967e-ffc99c566c5c\",\r\n \"resourcegroup\": \"UpdatedDotNetHubRG\",\r\n \"etag\": \"AAAADEo7aKE=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"UpdateDotNetHub.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"updatedotnethub\",\r\n \"endpoint\": \"sb://iothub-ns-updatedotn-10943902-89fab0f372.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/UpdateDotNetHubRG/providers/Microsoft.Devices/IotHubs/UpdateDotNetHub?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Jlc291cmNlR3JvdXBzL1VwZGF0ZURvdE5ldEh1YlJHL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9Jb3RIdWJzL1VwZGF0ZURvdE5ldEh1Yj9hcGktdmVyc2lvbj0yMDIwLTAzLTAx", + "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/UpdatedDotNetHubRG/providers/Microsoft.Devices/IotHubs/UpdateDotNetHub?api-version=2021-03-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Jlc291cmNlR3JvdXBzL1VwZGF0ZWREb3ROZXRIdWJSRy9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9VcGRhdGVEb3ROZXRIdWI/YXBpLXZlcnNpb249MjAyMS0wMy0zMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.0.0.0" ] }, "ResponseHeaders": { @@ -732,16 +789,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11992" ], "x-ms-request-id": [ - "02b367c1-8190-49ba-9a71-cfb46157f720" + "f12f51be-0940-4e07-b7ba-71eedc9ad1ab" ], "x-ms-correlation-request-id": [ - "02b367c1-8190-49ba-9a71-cfb46157f720" + "f12f51be-0940-4e07-b7ba-71eedc9ad1ab" ], "x-ms-routing-request-id": [ - "WESTUS2:20210219T190552Z:02b367c1-8190-49ba-9a71-cfb46157f720" + "WESTUS2:20210514T185559Z:f12f51be-0940-4e07-b7ba-71eedc9ad1ab" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -750,10 +807,10 @@ "nosniff" ], "Date": [ - "Fri, 19 Feb 2021 19:05:52 GMT" + "Fri, 14 May 2021 18:55:59 GMT" ], "Content-Length": [ - "1559" + "1562" ], "Content-Type": [ "application/json; charset=utf-8" @@ -762,20 +819,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/UpdateDotNetHubRG/providers/Microsoft.Devices/IotHubs/UpdateDotNetHub\",\r\n \"name\": \"UpdateDotNetHub\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"WestUS2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"9dbb02fa-c9d2-4593-967e-ffc99c566c5c\",\r\n \"resourcegroup\": \"UpdateDotNetHubRG\",\r\n \"etag\": \"AAAACmu6xn8=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"UpdateDotNetHub.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"updatedotnethub\",\r\n \"endpoint\": \"sb://iothub-ns-updatedotn-8263284-14a51bbc83.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/UpdatedDotNetHubRG/providers/Microsoft.Devices/IotHubs/UpdateDotNetHub\",\r\n \"name\": \"UpdateDotNetHub\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"WestUS2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"9dbb02fa-c9d2-4593-967e-ffc99c566c5c\",\r\n \"resourcegroup\": \"UpdatedDotNetHubRG\",\r\n \"etag\": \"AAAADEo7bEM=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"UpdateDotNetHub.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"updatedotnethub\",\r\n \"endpoint\": \"sb://iothub-ns-updatedotn-10943902-89fab0f372.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/UpdateDotNetHubRG/providers/Microsoft.Devices/IotHubs/UpdateDotNetHub?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Jlc291cmNlR3JvdXBzL1VwZGF0ZURvdE5ldEh1YlJHL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9Jb3RIdWJzL1VwZGF0ZURvdE5ldEh1Yj9hcGktdmVyc2lvbj0yMDIwLTAzLTAx", + "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/UpdatedDotNetHubRG/providers/Microsoft.Devices/IotHubs/UpdateDotNetHub?api-version=2021-03-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Jlc291cmNlR3JvdXBzL1VwZGF0ZWREb3ROZXRIdWJSRy9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9VcGRhdGVEb3ROZXRIdWI/YXBpLXZlcnNpb249MjAyMS0wMy0zMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.0.0.0" ] }, "ResponseHeaders": { @@ -792,13 +849,13 @@ "11996" ], "x-ms-request-id": [ - "12841568-dee3-4dbb-be69-e368a7663282" + "7d5d9194-55bd-467a-9f98-254f3fc0c645" ], "x-ms-correlation-request-id": [ - "12841568-dee3-4dbb-be69-e368a7663282" + "7d5d9194-55bd-467a-9f98-254f3fc0c645" ], "x-ms-routing-request-id": [ - "WESTUS2:20210219T191001Z:12841568-dee3-4dbb-be69-e368a7663282" + "WESTUS2:20210514T190008Z:7d5d9194-55bd-467a-9f98-254f3fc0c645" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -807,10 +864,10 @@ "nosniff" ], "Date": [ - "Fri, 19 Feb 2021 19:10:00 GMT" + "Fri, 14 May 2021 19:00:08 GMT" ], "Content-Length": [ - "2750" + "2753" ], "Content-Type": [ "application/json; charset=utf-8" @@ -819,26 +876,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/UpdateDotNetHubRG/providers/Microsoft.Devices/IotHubs/UpdateDotNetHub\",\r\n \"name\": \"UpdateDotNetHub\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"WestUS2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"9dbb02fa-c9d2-4593-967e-ffc99c566c5c\",\r\n \"resourcegroup\": \"UpdateDotNetHubRG\",\r\n \"etag\": \"AAAACmvHmpA=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"UpdateDotNetHub.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"updatedotnethub\",\r\n \"endpoint\": \"sb://iothub-ns-updatedotn-8263284-14a51bbc83.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://iothubcsharpsdksbnamespacetest.servicebus.windows.net:5671/;SharedAccessKeyName=iotHubCSharpSDKSBTopicTestRule;SharedAccessKey=****;EntityPath=iotHubCSharpSDKSBTest\",\r\n \"name\": \"sb1\",\r\n \"id\": \"99fa5fdc-79e4-4dae-bc66-fd035f357f31\"\r\n }\r\n ],\r\n \"serviceBusTopics\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://iothubcsharpsdksbnamespacetest.servicebus.windows.net:5671/;SharedAccessKeyName=iotHubCSharpSDKSBTopicTestRule;SharedAccessKey=****;EntityPath=iotHubCSharpSDKTopicTest\",\r\n \"name\": \"tp1\",\r\n \"id\": \"203a318b-e4bf-470e-a2b5-c27afa6459e4\"\r\n }\r\n ],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://iothubcsharpsdkehnamespacetest.servicebus.windows.net:5671/;SharedAccessKeyName=iothubcsharpsdkehtestrule;SharedAccessKey=****;EntityPath=iothubcsharpsdkehtest\",\r\n \"name\": \"eh1\",\r\n \"id\": \"af0829d9-74ad-4d09-a673-4e74d8f12656\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route1\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route2\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route3\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"sb1\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route4\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"tp1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/UpdatedDotNetHubRG/providers/Microsoft.Devices/IotHubs/UpdateDotNetHub\",\r\n \"name\": \"UpdateDotNetHub\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"WestUS2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"9dbb02fa-c9d2-4593-967e-ffc99c566c5c\",\r\n \"resourcegroup\": \"UpdatedDotNetHubRG\",\r\n \"etag\": \"AAAADEo7ffE=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"UpdateDotNetHub.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"updatedotnethub\",\r\n \"endpoint\": \"sb://iothub-ns-updatedotn-10943902-89fab0f372.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://iothubcsharpsdksbnamespacetest.servicebus.windows.net:5671/;SharedAccessKeyName=iotHubCSharpSDKSBTopicTestRule;SharedAccessKey=****;EntityPath=iotHubCSharpSDKSBTest\",\r\n \"name\": \"sb1\",\r\n \"id\": \"65fe948b-e9a2-4464-9c7e-5bbebe253bff\"\r\n }\r\n ],\r\n \"serviceBusTopics\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://iothubcsharpsdksbnamespacetest.servicebus.windows.net:5671/;SharedAccessKeyName=iotHubCSharpSDKSBTopicTestRule;SharedAccessKey=****;EntityPath=iotHubCSharpSDKTopicTest\",\r\n \"name\": \"tp1\",\r\n \"id\": \"0b428fb2-ce3b-496a-b43c-fe5976c772f8\"\r\n }\r\n ],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://iothubcsharpsdkehnamespacetest.servicebus.windows.net:5671/;SharedAccessKeyName=iothubcsharpsdkehtestrule;SharedAccessKey=****;EntityPath=iothubcsharpsdkehtest\",\r\n \"name\": \"eh1\",\r\n \"id\": \"215492b4-b349-4c0a-832e-cf4953048c66\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route1\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route2\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route3\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"sb1\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route4\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"tp1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/UpdateDotNetHubRG/providers/Microsoft.Devices/IotHubs/UpdateDotNetHub?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Jlc291cmNlR3JvdXBzL1VwZGF0ZURvdE5ldEh1YlJHL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9Jb3RIdWJzL1VwZGF0ZURvdE5ldEh1Yj9hcGktdmVyc2lvbj0yMDIwLTAzLTAx", + "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/UpdatedDotNetHubRG/providers/Microsoft.Devices/IotHubs/UpdateDotNetHub?api-version=2021-03-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Jlc291cmNlR3JvdXBzL1VwZGF0ZWREb3ROZXRIdWJSRy9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9VcGRhdGVEb3ROZXRIdWI/YXBpLXZlcnNpb249MjAyMS0wMy0zMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a766886e-6868-4deb-99af-99ae81916843" + "afe69693-5820-44fc-a5c6-55305adef001" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.0.0.0" ] }, "ResponseHeaders": { @@ -855,13 +912,13 @@ "11995" ], "x-ms-request-id": [ - "bc744e2d-8ec6-4ae3-a2e8-cefe21cf5dd6" + "c053092a-2760-4ddd-a137-9a6536b2b69e" ], "x-ms-correlation-request-id": [ - "bc744e2d-8ec6-4ae3-a2e8-cefe21cf5dd6" + "c053092a-2760-4ddd-a137-9a6536b2b69e" ], "x-ms-routing-request-id": [ - "WESTUS2:20210219T191001Z:bc744e2d-8ec6-4ae3-a2e8-cefe21cf5dd6" + "WESTUS2:20210514T190009Z:c053092a-2760-4ddd-a137-9a6536b2b69e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -870,10 +927,10 @@ "nosniff" ], "Date": [ - "Fri, 19 Feb 2021 19:10:00 GMT" + "Fri, 14 May 2021 19:00:09 GMT" ], "Content-Length": [ - "2750" + "2753" ], "Content-Type": [ "application/json; charset=utf-8" @@ -882,20 +939,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/UpdateDotNetHubRG/providers/Microsoft.Devices/IotHubs/UpdateDotNetHub\",\r\n \"name\": \"UpdateDotNetHub\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"WestUS2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"9dbb02fa-c9d2-4593-967e-ffc99c566c5c\",\r\n \"resourcegroup\": \"UpdateDotNetHubRG\",\r\n \"etag\": \"AAAACmvHmpA=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"UpdateDotNetHub.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"updatedotnethub\",\r\n \"endpoint\": \"sb://iothub-ns-updatedotn-8263284-14a51bbc83.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://iothubcsharpsdksbnamespacetest.servicebus.windows.net:5671/;SharedAccessKeyName=iotHubCSharpSDKSBTopicTestRule;SharedAccessKey=****;EntityPath=iotHubCSharpSDKSBTest\",\r\n \"name\": \"sb1\",\r\n \"id\": \"99fa5fdc-79e4-4dae-bc66-fd035f357f31\"\r\n }\r\n ],\r\n \"serviceBusTopics\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://iothubcsharpsdksbnamespacetest.servicebus.windows.net:5671/;SharedAccessKeyName=iotHubCSharpSDKSBTopicTestRule;SharedAccessKey=****;EntityPath=iotHubCSharpSDKTopicTest\",\r\n \"name\": \"tp1\",\r\n \"id\": \"203a318b-e4bf-470e-a2b5-c27afa6459e4\"\r\n }\r\n ],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://iothubcsharpsdkehnamespacetest.servicebus.windows.net:5671/;SharedAccessKeyName=iothubcsharpsdkehtestrule;SharedAccessKey=****;EntityPath=iothubcsharpsdkehtest\",\r\n \"name\": \"eh1\",\r\n \"id\": \"af0829d9-74ad-4d09-a673-4e74d8f12656\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route1\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route2\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route3\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"sb1\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route4\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"tp1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/UpdatedDotNetHubRG/providers/Microsoft.Devices/IotHubs/UpdateDotNetHub\",\r\n \"name\": \"UpdateDotNetHub\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"WestUS2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"9dbb02fa-c9d2-4593-967e-ffc99c566c5c\",\r\n \"resourcegroup\": \"UpdatedDotNetHubRG\",\r\n \"etag\": \"AAAADEo7ffE=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"UpdateDotNetHub.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"updatedotnethub\",\r\n \"endpoint\": \"sb://iothub-ns-updatedotn-10943902-89fab0f372.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://iothubcsharpsdksbnamespacetest.servicebus.windows.net:5671/;SharedAccessKeyName=iotHubCSharpSDKSBTopicTestRule;SharedAccessKey=****;EntityPath=iotHubCSharpSDKSBTest\",\r\n \"name\": \"sb1\",\r\n \"id\": \"65fe948b-e9a2-4464-9c7e-5bbebe253bff\"\r\n }\r\n ],\r\n \"serviceBusTopics\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://iothubcsharpsdksbnamespacetest.servicebus.windows.net:5671/;SharedAccessKeyName=iotHubCSharpSDKSBTopicTestRule;SharedAccessKey=****;EntityPath=iotHubCSharpSDKTopicTest\",\r\n \"name\": \"tp1\",\r\n \"id\": \"0b428fb2-ce3b-496a-b43c-fe5976c772f8\"\r\n }\r\n ],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://iothubcsharpsdkehnamespacetest.servicebus.windows.net:5671/;SharedAccessKeyName=iothubcsharpsdkehtestrule;SharedAccessKey=****;EntityPath=iothubcsharpsdkehtest\",\r\n \"name\": \"eh1\",\r\n \"id\": \"215492b4-b349-4c0a-832e-cf4953048c66\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route1\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route2\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route3\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"sb1\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route4\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"tp1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/UpdateDotNetHubRG/providers/Microsoft.Devices/IotHubs/UpdateDotNetHub?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Jlc291cmNlR3JvdXBzL1VwZGF0ZURvdE5ldEh1YlJHL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9Jb3RIdWJzL1VwZGF0ZURvdE5ldEh1Yj9hcGktdmVyc2lvbj0yMDIwLTAzLTAx", + "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/UpdatedDotNetHubRG/providers/Microsoft.Devices/IotHubs/UpdateDotNetHub?api-version=2021-03-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Jlc291cmNlR3JvdXBzL1VwZGF0ZWREb3ROZXRIdWJSRy9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9VcGRhdGVEb3ROZXRIdWI/YXBpLXZlcnNpb249MjAyMS0wMy0zMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.0.0.0" ] }, "ResponseHeaders": { @@ -912,13 +969,13 @@ "11993" ], "x-ms-request-id": [ - "468664f6-7957-48e0-b682-04ea3dfa6af1" + "e2ea5d19-d0bb-4d56-a203-941a39e4b125" ], "x-ms-correlation-request-id": [ - "468664f6-7957-48e0-b682-04ea3dfa6af1" + "e2ea5d19-d0bb-4d56-a203-941a39e4b125" ], "x-ms-routing-request-id": [ - "WESTUS2:20210219T191035Z:468664f6-7957-48e0-b682-04ea3dfa6af1" + "WESTUS2:20210514T190043Z:e2ea5d19-d0bb-4d56-a203-941a39e4b125" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -927,10 +984,10 @@ "nosniff" ], "Date": [ - "Fri, 19 Feb 2021 19:10:34 GMT" + "Fri, 14 May 2021 19:00:42 GMT" ], "Content-Length": [ - "2770" + "2773" ], "Content-Type": [ "application/json; charset=utf-8" @@ -939,20 +996,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/UpdateDotNetHubRG/providers/Microsoft.Devices/IotHubs/UpdateDotNetHub\",\r\n \"name\": \"UpdateDotNetHub\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"WestUS2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"9dbb02fa-c9d2-4593-967e-ffc99c566c5c\",\r\n \"resourcegroup\": \"UpdateDotNetHubRG\",\r\n \"etag\": \"AAAACmvJFj8=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"UpdateDotNetHub.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"updatedotnethub\",\r\n \"endpoint\": \"sb://iothub-ns-updatedotn-8263284-14a51bbc83.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://iothubcsharpsdksbnamespacetest.servicebus.windows.net:5671/;SharedAccessKeyName=iotHubCSharpSDKSBTopicTestRule;SharedAccessKey=****;EntityPath=iotHubCSharpSDKSBTest\",\r\n \"name\": \"sb1\",\r\n \"id\": \"99fa5fdc-79e4-4dae-bc66-fd035f357f31\"\r\n }\r\n ],\r\n \"serviceBusTopics\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://iothubcsharpsdksbnamespacetest.servicebus.windows.net:5671/;SharedAccessKeyName=iotHubCSharpSDKSBTopicTestRule;SharedAccessKey=****;EntityPath=iotHubCSharpSDKTopicTest\",\r\n \"name\": \"tp1\",\r\n \"id\": \"203a318b-e4bf-470e-a2b5-c27afa6459e4\"\r\n }\r\n ],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://iothubcsharpsdkehnamespacetest.servicebus.windows.net:5671/;SharedAccessKeyName=iothubcsharpsdkehtestrule;SharedAccessKey=****;EntityPath=iothubcsharpsdkehtest\",\r\n \"name\": \"eh1\",\r\n \"id\": \"af0829d9-74ad-4d09-a673-4e74d8f12656\",\r\n \"resourceGroup\": \"1\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route1\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route2\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route3\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"sb1\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route4\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"tp1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/UpdatedDotNetHubRG/providers/Microsoft.Devices/IotHubs/UpdateDotNetHub\",\r\n \"name\": \"UpdateDotNetHub\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"WestUS2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"9dbb02fa-c9d2-4593-967e-ffc99c566c5c\",\r\n \"resourcegroup\": \"UpdatedDotNetHubRG\",\r\n \"etag\": \"AAAADEo7g/U=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"UpdateDotNetHub.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"updatedotnethub\",\r\n \"endpoint\": \"sb://iothub-ns-updatedotn-10943902-89fab0f372.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://iothubcsharpsdksbnamespacetest.servicebus.windows.net:5671/;SharedAccessKeyName=iotHubCSharpSDKSBTopicTestRule;SharedAccessKey=****;EntityPath=iotHubCSharpSDKSBTest\",\r\n \"name\": \"sb1\",\r\n \"id\": \"65fe948b-e9a2-4464-9c7e-5bbebe253bff\"\r\n }\r\n ],\r\n \"serviceBusTopics\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://iothubcsharpsdksbnamespacetest.servicebus.windows.net:5671/;SharedAccessKeyName=iotHubCSharpSDKSBTopicTestRule;SharedAccessKey=****;EntityPath=iotHubCSharpSDKTopicTest\",\r\n \"name\": \"tp1\",\r\n \"id\": \"0b428fb2-ce3b-496a-b43c-fe5976c772f8\"\r\n }\r\n ],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://iothubcsharpsdkehnamespacetest.servicebus.windows.net:5671/;SharedAccessKeyName=iothubcsharpsdkehtestrule;SharedAccessKey=****;EntityPath=iothubcsharpsdkehtest\",\r\n \"name\": \"eh1\",\r\n \"id\": \"215492b4-b349-4c0a-832e-cf4953048c66\",\r\n \"resourceGroup\": \"1\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route1\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route2\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route3\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"sb1\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route4\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"tp1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/providers/Microsoft.Devices/operationResults/b3NfaWhfOGNmZWI5MGYtYzlkOC00ZThjLThjOGItY2M4ZDMyNjBiYTY3?api-version=2020-03-01&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmT0dObVpXSTVNR1l0WXpsa09DMDBaVGhqTFRoak9HSXRZMk00WkRNeU5qQmlZVFkzP2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEmb3BlcmF0aW9uU291cmNlPW9zX2loJmFzeW5jaW5mbw==", + "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/providers/Microsoft.Devices/operationResults/b3NfaWhfOTlhYTRlYjItYTE5NC00NzZlLWI5ODEtY2UyZGVmZDkwODc3?api-version=2021-03-31&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmT1RsaFlUUmxZakl0WVRFNU5DMDBOelpsTFdJNU9ERXRZMlV5WkdWbVpEa3dPRGMzP2FwaS12ZXJzaW9uPTIwMjEtMDMtMzEmb3BlcmF0aW9uU291cmNlPW9zX2loJmFzeW5jaW5mbw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.0.0.0" ] }, "ResponseHeaders": { @@ -966,16 +1023,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11993" ], "x-ms-request-id": [ - "d37be146-f476-4208-bf7c-e114eaa77f17" + "169e04b7-bfb6-4e88-a798-50f1538f96bd" ], "x-ms-correlation-request-id": [ - "d37be146-f476-4208-bf7c-e114eaa77f17" + "169e04b7-bfb6-4e88-a798-50f1538f96bd" ], "x-ms-routing-request-id": [ - "WESTUS2:20210219T190552Z:d37be146-f476-4208-bf7c-e114eaa77f17" + "WESTUS2:20210514T185558Z:169e04b7-bfb6-4e88-a798-50f1538f96bd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -984,7 +1041,7 @@ "nosniff" ], "Date": [ - "Fri, 19 Feb 2021 19:05:51 GMT" + "Fri, 14 May 2021 18:55:58 GMT" ], "Content-Length": [ "22" @@ -1000,21 +1057,21 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/UpdateDotNetHubRG/providers/Microsoft.EventHub/namespaces/iothubcsharpsdkehnamespacetest?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Jlc291cmNlR3JvdXBzL1VwZGF0ZURvdE5ldEh1YlJHL3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9pb3RodWJjc2hhcnBzZGtlaG5hbWVzcGFjZXRlc3Q/YXBpLXZlcnNpb249MjAxNS0wOC0wMQ==", + "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/UpdatedDotNetHubRG/providers/Microsoft.EventHub/namespaces/iothubcsharpsdkehnamespacetest?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Jlc291cmNlR3JvdXBzL1VwZGF0ZWREb3ROZXRIdWJSRy9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvaW90aHViY3NoYXJwc2RrZWhuYW1lc3BhY2V0ZXN0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"WestUS2\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "33f1aa9a-045e-496d-86fc-4cba43877341" + "1cb44a7e-c422-4fe4-a48c-e99d3d06d5c4" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.19043.", "Microsoft.Azure.Management.EventHub.EventHubManagementClient/1.2.0.0" ], "Content-Type": [ @@ -1032,23 +1089,23 @@ "no-cache" ], "x-ms-request-id": [ - "7fb2f65f-504a-4650-bf08-1ff3409b3362_M10CH3_M10CH3" + "a4e8b647-cfe4-49d0-9d36-77db0de3e5d1_M10SN1_M10SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "49" ], "x-ms-correlation-request-id": [ - "2508b115-b9f8-478e-8db8-769bcab91e6c" + "bbce48f3-bc9e-446c-8543-88ba6995807c" ], "x-ms-routing-request-id": [ - "WESTUS2:20210219T190553Z:2508b115-b9f8-478e-8db8-769bcab91e6c" + "WESTUS2:20210514T185600Z:bbce48f3-bc9e-446c-8543-88ba6995807c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1057,10 +1114,10 @@ "nosniff" ], "Date": [ - "Fri, 19 Feb 2021 19:05:53 GMT" + "Fri, 14 May 2021 18:55:59 GMT" ], "Content-Length": [ - "526" + "527" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1069,19 +1126,19 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/UpdateDotNetHubRG/providers/Microsoft.EventHub/namespaces/iothubcsharpsdkehnamespacetest\",\r\n \"name\": \"iothubcsharpsdkehnamespacetest\",\r\n \"type\": \"Microsoft.EventHub/namespaces\",\r\n \"location\": \"West US 2\",\r\n \"kind\": \"EventHub\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Unknown\",\r\n \"metricId\": \"9dbb02fa-c9d2-4593-967e-ffc99c566c5c:iothubcsharpsdkehnamespacetest\",\r\n \"enabled\": false,\r\n \"namespaceType\": \"EventHub\",\r\n \"messagingSku\": 2\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/UpdatedDotNetHubRG/providers/Microsoft.EventHub/namespaces/iothubcsharpsdkehnamespacetest\",\r\n \"name\": \"iothubcsharpsdkehnamespacetest\",\r\n \"type\": \"Microsoft.EventHub/namespaces\",\r\n \"location\": \"West US 2\",\r\n \"kind\": \"EventHub\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Unknown\",\r\n \"metricId\": \"9dbb02fa-c9d2-4593-967e-ffc99c566c5c:iothubcsharpsdkehnamespacetest\",\r\n \"enabled\": false,\r\n \"namespaceType\": \"EventHub\",\r\n \"messagingSku\": 2\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/UpdateDotNetHubRG/providers/Microsoft.EventHub/namespaces/iothubcsharpsdkehnamespacetest?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Jlc291cmNlR3JvdXBzL1VwZGF0ZURvdE5ldEh1YlJHL3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9pb3RodWJjc2hhcnBzZGtlaG5hbWVzcGFjZXRlc3Q/YXBpLXZlcnNpb249MjAxNS0wOC0wMQ==", + "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/UpdatedDotNetHubRG/providers/Microsoft.EventHub/namespaces/iothubcsharpsdkehnamespacetest?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Jlc291cmNlR3JvdXBzL1VwZGF0ZWREb3ROZXRIdWJSRy9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvaW90aHViY3NoYXJwc2RrZWhuYW1lc3BhY2V0ZXN0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.19043.", "Microsoft.Azure.Management.EventHub.EventHubManagementClient/1.2.0.0" ] }, @@ -1093,23 +1150,23 @@ "no-cache" ], "x-ms-request-id": [ - "82b4646b-0de9-4bda-8acd-58fe4f2fbab9_M10CH3_M10CH3" + "a3041ae9-f854-47f7-81aa-655ad93f1a32_M8SN1_M8SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11999" ], "x-ms-correlation-request-id": [ - "ad879985-40bc-4860-b415-8913b606219b" + "9918ea15-46f7-486a-a4ec-26ebfd30f89a" ], "x-ms-routing-request-id": [ - "WESTUS2:20210219T190623Z:ad879985-40bc-4860-b415-8913b606219b" + "WESTUS2:20210514T185631Z:9918ea15-46f7-486a-a4ec-26ebfd30f89a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1118,10 +1175,10 @@ "nosniff" ], "Date": [ - "Fri, 19 Feb 2021 19:06:23 GMT" + "Fri, 14 May 2021 18:56:30 GMT" ], "Content-Length": [ - "763" + "764" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1130,19 +1187,19 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/UpdateDotNetHubRG/providers/Microsoft.EventHub/namespaces/iothubcsharpsdkehnamespacetest\",\r\n \"name\": \"iothubcsharpsdkehnamespacetest\",\r\n \"type\": \"Microsoft.EventHub/namespaces\",\r\n \"location\": \"West US 2\",\r\n \"kind\": \"EventHub\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Created\",\r\n \"metricId\": \"9dbb02fa-c9d2-4593-967e-ffc99c566c5c:iothubcsharpsdkehnamespacetest\",\r\n \"status\": \"Created\",\r\n \"createdAt\": \"2021-02-19T19:05:53.267Z\",\r\n \"serviceBusEndpoint\": \"https://iothubcsharpsdkehnamespacetest.servicebus.windows.net:443/\",\r\n \"enabled\": true,\r\n \"critical\": false,\r\n \"updatedAt\": \"2021-02-19T19:05:53.267Z\",\r\n \"eventHubEnabled\": true,\r\n \"namespaceType\": \"EventHub\",\r\n \"messagingSku\": 2\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/UpdatedDotNetHubRG/providers/Microsoft.EventHub/namespaces/iothubcsharpsdkehnamespacetest\",\r\n \"name\": \"iothubcsharpsdkehnamespacetest\",\r\n \"type\": \"Microsoft.EventHub/namespaces\",\r\n \"location\": \"West US 2\",\r\n \"kind\": \"EventHub\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Created\",\r\n \"metricId\": \"9dbb02fa-c9d2-4593-967e-ffc99c566c5c:iothubcsharpsdkehnamespacetest\",\r\n \"status\": \"Created\",\r\n \"createdAt\": \"2021-05-14T18:55:59.903Z\",\r\n \"serviceBusEndpoint\": \"https://iothubcsharpsdkehnamespacetest.servicebus.windows.net:443/\",\r\n \"enabled\": true,\r\n \"critical\": false,\r\n \"updatedAt\": \"2021-05-14T18:55:59.903Z\",\r\n \"eventHubEnabled\": true,\r\n \"namespaceType\": \"EventHub\",\r\n \"messagingSku\": 2\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/UpdateDotNetHubRG/providers/Microsoft.EventHub/namespaces/iothubcsharpsdkehnamespacetest?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Jlc291cmNlR3JvdXBzL1VwZGF0ZURvdE5ldEh1YlJHL3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9pb3RodWJjc2hhcnBzZGtlaG5hbWVzcGFjZXRlc3Q/YXBpLXZlcnNpb249MjAxNS0wOC0wMQ==", + "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/UpdatedDotNetHubRG/providers/Microsoft.EventHub/namespaces/iothubcsharpsdkehnamespacetest?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Jlc291cmNlR3JvdXBzL1VwZGF0ZWREb3ROZXRIdWJSRy9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvaW90aHViY3NoYXJwc2RrZWhuYW1lc3BhY2V0ZXN0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.19043.", "Microsoft.Azure.Management.EventHub.EventHubManagementClient/1.2.0.0" ] }, @@ -1154,23 +1211,23 @@ "no-cache" ], "x-ms-request-id": [ - "d5fae5af-463d-4568-9155-0ba4b148bd42_M2CH3_M2CH3" + "1ab544f4-9f05-4235-83d4-1781ba8a8d66_M8SN1_M8SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11998" ], "x-ms-correlation-request-id": [ - "65b7600e-7d59-4d62-90b5-3a5f034ac861" + "c8c8fc26-44c5-4946-9003-d0b735ba4d42" ], "x-ms-routing-request-id": [ - "WESTUS2:20210219T190653Z:65b7600e-7d59-4d62-90b5-3a5f034ac861" + "WESTUS2:20210514T185701Z:c8c8fc26-44c5-4946-9003-d0b735ba4d42" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1179,7 +1236,7 @@ "nosniff" ], "Date": [ - "Fri, 19 Feb 2021 19:06:53 GMT" + "Fri, 14 May 2021 18:57:00 GMT" ], "Content-Length": [ "764" @@ -1191,25 +1248,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/UpdateDotNetHubRG/providers/Microsoft.EventHub/namespaces/iothubcsharpsdkehnamespacetest\",\r\n \"name\": \"iothubcsharpsdkehnamespacetest\",\r\n \"type\": \"Microsoft.EventHub/namespaces\",\r\n \"location\": \"West US 2\",\r\n \"kind\": \"EventHub\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"9dbb02fa-c9d2-4593-967e-ffc99c566c5c:iothubcsharpsdkehnamespacetest\",\r\n \"status\": \"Active\",\r\n \"createdAt\": \"2021-02-19T19:05:53.267Z\",\r\n \"serviceBusEndpoint\": \"https://iothubcsharpsdkehnamespacetest.servicebus.windows.net:443/\",\r\n \"enabled\": true,\r\n \"critical\": false,\r\n \"updatedAt\": \"2021-02-19T19:06:47.723Z\",\r\n \"eventHubEnabled\": true,\r\n \"namespaceType\": \"EventHub\",\r\n \"messagingSku\": 2\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/UpdatedDotNetHubRG/providers/Microsoft.EventHub/namespaces/iothubcsharpsdkehnamespacetest\",\r\n \"name\": \"iothubcsharpsdkehnamespacetest\",\r\n \"type\": \"Microsoft.EventHub/namespaces\",\r\n \"location\": \"West US 2\",\r\n \"kind\": \"EventHub\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"9dbb02fa-c9d2-4593-967e-ffc99c566c5c:iothubcsharpsdkehnamespacetest\",\r\n \"status\": \"Active\",\r\n \"createdAt\": \"2021-05-14T18:55:59.903Z\",\r\n \"serviceBusEndpoint\": \"https://iothubcsharpsdkehnamespacetest.servicebus.windows.net:443/\",\r\n \"enabled\": true,\r\n \"critical\": false,\r\n \"updatedAt\": \"2021-05-14T18:56:52.69Z\",\r\n \"eventHubEnabled\": true,\r\n \"namespaceType\": \"EventHub\",\r\n \"messagingSku\": 2\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/UpdateDotNetHubRG/providers/Microsoft.EventHub/namespaces/iothubcsharpsdkehnamespacetest/eventhubs/iothubcsharpsdkehtest?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Jlc291cmNlR3JvdXBzL1VwZGF0ZURvdE5ldEh1YlJHL3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9pb3RodWJjc2hhcnBzZGtlaG5hbWVzcGFjZXRlc3QvZXZlbnRodWJzL2lvdGh1YmNzaGFycHNka2VodGVzdD9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/UpdatedDotNetHubRG/providers/Microsoft.EventHub/namespaces/iothubcsharpsdkehnamespacetest/eventhubs/iothubcsharpsdkehtest?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Jlc291cmNlR3JvdXBzL1VwZGF0ZWREb3ROZXRIdWJSRy9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvaW90aHViY3NoYXJwc2RrZWhuYW1lc3BhY2V0ZXN0L2V2ZW50aHVicy9pb3RodWJjc2hhcnBzZGtlaHRlc3Q/YXBpLXZlcnNpb249MjAxNS0wOC0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"WestUS2\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "50ffa750-b04e-4833-9f5b-a424dbb46f99" + "6608a25a-97b5-4c69-8c42-c1a5e1c1b7e3" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.19043.", "Microsoft.Azure.Management.EventHub.EventHubManagementClient/1.2.0.0" ], "Content-Type": [ @@ -1227,23 +1284,23 @@ "no-cache" ], "x-ms-request-id": [ - "564adfa5-6238-4724-aaf7-b6981d1b8556_M2CH3_M2CH3" + "e0d8d939-96c4-49cd-a0ff-68f0c87afd7b_M8SN1_M8SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], "x-ms-correlation-request-id": [ - "cc67c116-2dc1-43c3-9c2a-f062dbc234ea" + "6c1d236e-8dfb-4688-b52a-2de248071de2" ], "x-ms-routing-request-id": [ - "WESTUS2:20210219T190701Z:cc67c116-2dc1-43c3-9c2a-f062dbc234ea" + "WESTUS2:20210514T185709Z:6c1d236e-8dfb-4688-b52a-2de248071de2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1252,10 +1309,10 @@ "nosniff" ], "Date": [ - "Fri, 19 Feb 2021 19:07:00 GMT" + "Fri, 14 May 2021 18:57:09 GMT" ], "Content-Length": [ - "521" + "522" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1264,25 +1321,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/UpdateDotNetHubRG/providers/Microsoft.EventHub/namespaces/iothubcsharpsdkehnamespacetest/eventhubs/iothubcsharpsdkehtest\",\r\n \"name\": \"iothubcsharpsdkehtest\",\r\n \"type\": \"Microsoft.EventHub/EventHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"path\": \"iothubcsharpsdkehtest\",\r\n \"messageRetentionInDays\": 7,\r\n \"status\": \"Active\",\r\n \"createdAt\": \"2021-02-19T19:06:55.557Z\",\r\n \"updatedAt\": \"2021-02-19T19:06:55.813Z\",\r\n \"partitionCount\": 4,\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/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/UpdatedDotNetHubRG/providers/Microsoft.EventHub/namespaces/iothubcsharpsdkehnamespacetest/eventhubs/iothubcsharpsdkehtest\",\r\n \"name\": \"iothubcsharpsdkehtest\",\r\n \"type\": \"Microsoft.EventHub/EventHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"path\": \"iothubcsharpsdkehtest\",\r\n \"messageRetentionInDays\": 7,\r\n \"status\": \"Active\",\r\n \"createdAt\": \"2021-05-14T18:57:03.267Z\",\r\n \"updatedAt\": \"2021-05-14T18:57:03.443Z\",\r\n \"partitionCount\": 4,\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/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/UpdateDotNetHubRG/providers/Microsoft.EventHub/namespaces/iothubcsharpsdkehnamespacetest/eventhubs/iothubcsharpsdkehtest/authorizationRules/iothubcsharpsdkehtestrule?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Jlc291cmNlR3JvdXBzL1VwZGF0ZURvdE5ldEh1YlJHL3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9pb3RodWJjc2hhcnBzZGtlaG5hbWVzcGFjZXRlc3QvZXZlbnRodWJzL2lvdGh1YmNzaGFycHNka2VodGVzdC9hdXRob3JpemF0aW9uUnVsZXMvaW90aHViY3NoYXJwc2RrZWh0ZXN0cnVsZT9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/UpdatedDotNetHubRG/providers/Microsoft.EventHub/namespaces/iothubcsharpsdkehnamespacetest/eventhubs/iothubcsharpsdkehtest/authorizationRules/iothubcsharpsdkehtestrule?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Jlc291cmNlR3JvdXBzL1VwZGF0ZWREb3ROZXRIdWJSRy9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvaW90aHViY3NoYXJwc2RrZWhuYW1lc3BhY2V0ZXN0L2V2ZW50aHVicy9pb3RodWJjc2hhcnBzZGtlaHRlc3QvYXV0aG9yaXphdGlvblJ1bGVzL2lvdGh1YmNzaGFycHNka2VodGVzdHJ1bGU/YXBpLXZlcnNpb249MjAxNS0wOC0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"WestUS2\",\r\n \"properties\": {\r\n \"rights\": [\r\n \"Send\",\r\n \"Listen\"\r\n ]\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "144c62a5-3bad-4f6b-9b70-980f0bc6b451" + "6781ae9d-6970-4be6-9b06-14de79aca038" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.19043.", "Microsoft.Azure.Management.EventHub.EventHubManagementClient/1.2.0.0" ], "Content-Type": [ @@ -1300,7 +1357,7 @@ "no-cache" ], "x-ms-request-id": [ - "cf7ae313-e073-41bb-83dc-2bcef2a2926d_M6SN1_M6SN1" + "cc48645c-118b-46fb-95bf-3ecdfa0ddb74_M8SN1_M8SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" @@ -1313,10 +1370,10 @@ "1198" ], "x-ms-correlation-request-id": [ - "07d5dcd3-f12c-4db3-a198-2d7bb7859d2f" + "4a92f85b-7b55-4950-b022-51034df6f083" ], "x-ms-routing-request-id": [ - "WESTUS2:20210219T190707Z:07d5dcd3-f12c-4db3-a198-2d7bb7859d2f" + "WESTUS2:20210514T185714Z:4a92f85b-7b55-4950-b022-51034df6f083" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1325,10 +1382,10 @@ "nosniff" ], "Date": [ - "Fri, 19 Feb 2021 19:07:06 GMT" + "Fri, 14 May 2021 18:57:14 GMT" ], "Content-Length": [ - "400" + "401" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1337,25 +1394,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/UpdateDotNetHubRG/providers/Microsoft.EventHub/namespaces/iothubcsharpsdkehnamespacetest/eventhubs/iothubcsharpsdkehtest/authorizationRules/iothubcsharpsdkehtestrule\",\r\n \"name\": \"iothubcsharpsdkehtestrule\",\r\n \"type\": \"Microsoft.EventHub/AuthorizationRules\",\r\n \"location\": \"West US 2\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"rights\": [\r\n \"Send\",\r\n \"Listen\"\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/UpdatedDotNetHubRG/providers/Microsoft.EventHub/namespaces/iothubcsharpsdkehnamespacetest/eventhubs/iothubcsharpsdkehtest/authorizationRules/iothubcsharpsdkehtestrule\",\r\n \"name\": \"iothubcsharpsdkehtestrule\",\r\n \"type\": \"Microsoft.EventHub/AuthorizationRules\",\r\n \"location\": \"West US 2\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"rights\": [\r\n \"Send\",\r\n \"Listen\"\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/UpdateDotNetHubRG/providers/Microsoft.EventHub/namespaces/iothubcsharpsdkehnamespacetest/eventhubs/iothubcsharpsdkehtest/authorizationRules/iothubcsharpsdkehtestrule/ListKeys?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Jlc291cmNlR3JvdXBzL1VwZGF0ZURvdE5ldEh1YlJHL3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9pb3RodWJjc2hhcnBzZGtlaG5hbWVzcGFjZXRlc3QvZXZlbnRodWJzL2lvdGh1YmNzaGFycHNka2VodGVzdC9hdXRob3JpemF0aW9uUnVsZXMvaW90aHViY3NoYXJwc2RrZWh0ZXN0cnVsZS9MaXN0S2V5cz9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/UpdatedDotNetHubRG/providers/Microsoft.EventHub/namespaces/iothubcsharpsdkehnamespacetest/eventhubs/iothubcsharpsdkehtest/authorizationRules/iothubcsharpsdkehtestrule/ListKeys?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Jlc291cmNlR3JvdXBzL1VwZGF0ZWREb3ROZXRIdWJSRy9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvaW90aHViY3NoYXJwc2RrZWhuYW1lc3BhY2V0ZXN0L2V2ZW50aHVicy9pb3RodWJjc2hhcnBzZGtlaHRlc3QvYXV0aG9yaXphdGlvblJ1bGVzL2lvdGh1YmNzaGFycHNka2VodGVzdHJ1bGUvTGlzdEtleXM/YXBpLXZlcnNpb249MjAxNS0wOC0wMQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f5fa62f7-c210-457c-8a89-f38afdc2fdf3" + "81d2f5e1-999f-434a-b007-ec36ba84c17c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.19043.", "Microsoft.Azure.Management.EventHub.EventHubManagementClient/1.2.0.0" ] }, @@ -1367,7 +1424,7 @@ "no-cache" ], "x-ms-request-id": [ - "848245af-67ff-40c3-a06a-f877946ce598_M6SN1_M6SN1" + "ff2264d3-feba-4b5d-b2ce-66706d99d263_M9SN1_M9SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" @@ -1380,10 +1437,10 @@ "1199" ], "x-ms-correlation-request-id": [ - "3e938b44-961e-4927-a0ce-05a1143cbd36" + "98b2db31-6cea-4daa-a213-aa7876f5cfec" ], "x-ms-routing-request-id": [ - "WESTUS2:20210219T190707Z:3e938b44-961e-4927-a0ce-05a1143cbd36" + "WESTUS2:20210514T185715Z:98b2db31-6cea-4daa-a213-aa7876f5cfec" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1392,7 +1449,7 @@ "nosniff" ], "Date": [ - "Fri, 19 Feb 2021 19:07:06 GMT" + "Fri, 14 May 2021 18:57:15 GMT" ], "Content-Length": [ "637" @@ -1404,25 +1461,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"primaryConnectionString\": \"Endpoint=sb://iothubcsharpsdkehnamespacetest.servicebus.windows.net/;SharedAccessKeyName=iothubcsharpsdkehtestrule;SharedAccessKey=jJdNKM6NazP+yGXk09kxHyIKzo+RNtqJybrAYnDdvB4=;EntityPath=iothubcsharpsdkehtest\",\r\n \"secondaryConnectionString\": \"Endpoint=sb://iothubcsharpsdkehnamespacetest.servicebus.windows.net/;SharedAccessKeyName=iothubcsharpsdkehtestrule;SharedAccessKey=Qy+TdiqzQk1wl8NELoHesDfzDGMGoeB7BVOg7LZ1WJw=;EntityPath=iothubcsharpsdkehtest\",\r\n \"primaryKey\": \"jJdNKM6NazP+yGXk09kxHyIKzo+RNtqJybrAYnDdvB4=\",\r\n \"secondaryKey\": \"Qy+TdiqzQk1wl8NELoHesDfzDGMGoeB7BVOg7LZ1WJw=\",\r\n \"keyName\": \"iothubcsharpsdkehtestrule\"\r\n}", + "ResponseBody": "{\r\n \"primaryConnectionString\": \"Endpoint=sb://iothubcsharpsdkehnamespacetest.servicebus.windows.net/;SharedAccessKeyName=iothubcsharpsdkehtestrule;SharedAccessKey=3EJxCkZ7wvm9ph/QNxX5PESHHhh1z7WHX/jS9ddKr8w=;EntityPath=iothubcsharpsdkehtest\",\r\n \"secondaryConnectionString\": \"Endpoint=sb://iothubcsharpsdkehnamespacetest.servicebus.windows.net/;SharedAccessKeyName=iothubcsharpsdkehtestrule;SharedAccessKey=4rH+rFA2lzJ39ZbE5ZyCZi93OtTIHhOMiRgPaNLPTNM=;EntityPath=iothubcsharpsdkehtest\",\r\n \"primaryKey\": \"3EJxCkZ7wvm9ph/QNxX5PESHHhh1z7WHX/jS9ddKr8w=\",\r\n \"secondaryKey\": \"4rH+rFA2lzJ39ZbE5ZyCZi93OtTIHhOMiRgPaNLPTNM=\",\r\n \"keyName\": \"iothubcsharpsdkehtestrule\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/UpdateDotNetHubRG/providers/Microsoft.ServiceBus/namespaces/iotHubCSharpSDKSBNamespaceTest?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Jlc291cmNlR3JvdXBzL1VwZGF0ZURvdE5ldEh1YlJHL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUJ1cy9uYW1lc3BhY2VzL2lvdEh1YkNTaGFycFNES1NCTmFtZXNwYWNlVGVzdD9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/UpdatedDotNetHubRG/providers/Microsoft.ServiceBus/namespaces/iotHubCSharpSDKSBNamespaceTest?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Jlc291cmNlR3JvdXBzL1VwZGF0ZWREb3ROZXRIdWJSRy9wcm92aWRlcnMvTWljcm9zb2Z0LlNlcnZpY2VCdXMvbmFtZXNwYWNlcy9pb3RIdWJDU2hhcnBTREtTQk5hbWVzcGFjZVRlc3Q/YXBpLXZlcnNpb249MjAxNS0wOC0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"WestUS2\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "4dad656d-6775-4178-af8b-1e713149049c" + "b47f6b00-2a91-4782-926e-b06f545c1923" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.19043.", "Microsoft.Azure.Management.ServiceBus.ServiceBusManagementClient/0.2.0.0" ], "Content-Type": [ @@ -1440,23 +1497,23 @@ "no-cache" ], "x-ms-request-id": [ - "41b3ed51-0702-4191-80a2-b6721d6b0c5b_M8SN1_M8SN1" + "62882cca-42ba-41dd-9fdf-6507bca6e52a_M2CH3_M2CH3" ], "Server-SB": [ - "Service-Bus-Resource-Provider/SN1" + "Service-Bus-Resource-Provider/CH3" ], "Server": [ - "Service-Bus-Resource-Provider/SN1", + "Service-Bus-Resource-Provider/CH3", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], "x-ms-correlation-request-id": [ - "6648772b-4821-4ece-ad0e-5594e46c3785" + "c0917a74-e88a-47b9-9d14-bd7d4a5f9a31" ], "x-ms-routing-request-id": [ - "WESTUS2:20210219T190708Z:6648772b-4821-4ece-ad0e-5594e46c3785" + "WESTUS2:20210514T185716Z:c0917a74-e88a-47b9-9d14-bd7d4a5f9a31" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1465,10 +1522,10 @@ "nosniff" ], "Date": [ - "Fri, 19 Feb 2021 19:07:08 GMT" + "Fri, 14 May 2021 18:57:16 GMT" ], "Content-Length": [ - "532" + "533" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1477,19 +1534,19 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/UpdateDotNetHubRG/providers/Microsoft.ServiceBus/namespaces/iotHubCSharpSDKSBNamespaceTest\",\r\n \"name\": \"iotHubCSharpSDKSBNamespaceTest\",\r\n \"type\": \"Microsoft.ServiceBus/namespaces\",\r\n \"location\": \"West US 2\",\r\n \"kind\": \"Messaging\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Unknown\",\r\n \"metricId\": \"9dbb02fa-c9d2-4593-967e-ffc99c566c5c:iothubcsharpsdksbnamespacetest\",\r\n \"enabled\": false,\r\n \"namespaceType\": \"Messaging\",\r\n \"messagingSku\": 2\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/UpdatedDotNetHubRG/providers/Microsoft.ServiceBus/namespaces/iotHubCSharpSDKSBNamespaceTest\",\r\n \"name\": \"iotHubCSharpSDKSBNamespaceTest\",\r\n \"type\": \"Microsoft.ServiceBus/namespaces\",\r\n \"location\": \"West US 2\",\r\n \"kind\": \"Messaging\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Unknown\",\r\n \"metricId\": \"9dbb02fa-c9d2-4593-967e-ffc99c566c5c:iothubcsharpsdksbnamespacetest\",\r\n \"enabled\": false,\r\n \"namespaceType\": \"Messaging\",\r\n \"messagingSku\": 2\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/UpdateDotNetHubRG/providers/Microsoft.ServiceBus/namespaces/iotHubCSharpSDKSBNamespaceTest?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Jlc291cmNlR3JvdXBzL1VwZGF0ZURvdE5ldEh1YlJHL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUJ1cy9uYW1lc3BhY2VzL2lvdEh1YkNTaGFycFNES1NCTmFtZXNwYWNlVGVzdD9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/UpdatedDotNetHubRG/providers/Microsoft.ServiceBus/namespaces/iotHubCSharpSDKSBNamespaceTest?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Jlc291cmNlR3JvdXBzL1VwZGF0ZWREb3ROZXRIdWJSRy9wcm92aWRlcnMvTWljcm9zb2Z0LlNlcnZpY2VCdXMvbmFtZXNwYWNlcy9pb3RIdWJDU2hhcnBTREtTQk5hbWVzcGFjZVRlc3Q/YXBpLXZlcnNpb249MjAxNS0wOC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.19043.", "Microsoft.Azure.Management.ServiceBus.ServiceBusManagementClient/0.2.0.0" ] }, @@ -1501,23 +1558,23 @@ "no-cache" ], "x-ms-request-id": [ - "f65c2ae7-0e7a-4923-9911-dc521e4ce3c0_M10SN1_M10SN1" + "d1fbd2cf-4890-4c58-a54b-65e7086542d2_M11CH3_M11CH3" ], "Server-SB": [ - "Service-Bus-Resource-Provider/SN1" + "Service-Bus-Resource-Provider/CH3" ], "Server": [ - "Service-Bus-Resource-Provider/SN1", + "Service-Bus-Resource-Provider/CH3", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11999" ], "x-ms-correlation-request-id": [ - "e6961234-2702-4c23-8324-9ef2cc780021" + "e3a57f1f-f050-45b2-bf72-e2893940d807" ], "x-ms-routing-request-id": [ - "WESTUS2:20210219T190738Z:e6961234-2702-4c23-8324-9ef2cc780021" + "WESTUS2:20210514T185746Z:e3a57f1f-f050-45b2-bf72-e2893940d807" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1526,10 +1583,10 @@ "nosniff" ], "Date": [ - "Fri, 19 Feb 2021 19:07:38 GMT" + "Fri, 14 May 2021 18:57:46 GMT" ], "Content-Length": [ - "744" + "747" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1538,19 +1595,19 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/UpdateDotNetHubRG/providers/Microsoft.ServiceBus/namespaces/iotHubCSharpSDKSBNamespaceTest\",\r\n \"name\": \"iotHubCSharpSDKSBNamespaceTest\",\r\n \"type\": \"Microsoft.ServiceBus/namespaces\",\r\n \"location\": \"West US 2\",\r\n \"kind\": \"Messaging\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Created\",\r\n \"metricId\": \"9dbb02fa-c9d2-4593-967e-ffc99c566c5c:iothubcsharpsdksbnamespacetest\",\r\n \"status\": \"Created\",\r\n \"createdAt\": \"2021-02-19T19:07:08.11Z\",\r\n \"serviceBusEndpoint\": \"https://iotHubCSharpSDKSBNamespaceTest.servicebus.windows.net:443/\",\r\n \"enabled\": true,\r\n \"critical\": false,\r\n \"updatedAt\": \"2021-02-19T19:07:08.11Z\",\r\n \"namespaceType\": \"Messaging\",\r\n \"messagingSku\": 2\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/UpdatedDotNetHubRG/providers/Microsoft.ServiceBus/namespaces/iotHubCSharpSDKSBNamespaceTest\",\r\n \"name\": \"iotHubCSharpSDKSBNamespaceTest\",\r\n \"type\": \"Microsoft.ServiceBus/namespaces\",\r\n \"location\": \"West US 2\",\r\n \"kind\": \"Messaging\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Created\",\r\n \"metricId\": \"9dbb02fa-c9d2-4593-967e-ffc99c566c5c:iothubcsharpsdksbnamespacetest\",\r\n \"status\": \"Created\",\r\n \"createdAt\": \"2021-05-14T18:57:16.133Z\",\r\n \"serviceBusEndpoint\": \"https://iotHubCSharpSDKSBNamespaceTest.servicebus.windows.net:443/\",\r\n \"enabled\": true,\r\n \"critical\": false,\r\n \"updatedAt\": \"2021-05-14T18:57:16.133Z\",\r\n \"namespaceType\": \"Messaging\",\r\n \"messagingSku\": 2\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/UpdateDotNetHubRG/providers/Microsoft.ServiceBus/namespaces/iotHubCSharpSDKSBNamespaceTest?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Jlc291cmNlR3JvdXBzL1VwZGF0ZURvdE5ldEh1YlJHL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUJ1cy9uYW1lc3BhY2VzL2lvdEh1YkNTaGFycFNES1NCTmFtZXNwYWNlVGVzdD9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/UpdatedDotNetHubRG/providers/Microsoft.ServiceBus/namespaces/iotHubCSharpSDKSBNamespaceTest?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Jlc291cmNlR3JvdXBzL1VwZGF0ZWREb3ROZXRIdWJSRy9wcm92aWRlcnMvTWljcm9zb2Z0LlNlcnZpY2VCdXMvbmFtZXNwYWNlcy9pb3RIdWJDU2hhcnBTREtTQk5hbWVzcGFjZVRlc3Q/YXBpLXZlcnNpb249MjAxNS0wOC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.19043.", "Microsoft.Azure.Management.ServiceBus.ServiceBusManagementClient/0.2.0.0" ] }, @@ -1562,7 +1619,7 @@ "no-cache" ], "x-ms-request-id": [ - "fe7888cf-5131-4dd4-93e0-21d54baf23af_M1CH3_M1CH3" + "23fbf7dc-3e5a-4333-a268-49a29723d924_M8CH3_M8CH3" ], "Server-SB": [ "Service-Bus-Resource-Provider/CH3" @@ -1575,10 +1632,10 @@ "11998" ], "x-ms-correlation-request-id": [ - "59f220c2-66bf-4f88-a74c-d1f400bda3e7" + "6e598fae-3211-48ad-8d86-bf65970a9d94" ], "x-ms-routing-request-id": [ - "WESTUS2:20210219T190809Z:59f220c2-66bf-4f88-a74c-d1f400bda3e7" + "WESTUS2:20210514T185816Z:6e598fae-3211-48ad-8d86-bf65970a9d94" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1587,10 +1644,10 @@ "nosniff" ], "Date": [ - "Fri, 19 Feb 2021 19:08:08 GMT" + "Fri, 14 May 2021 18:58:16 GMT" ], "Content-Length": [ - "745" + "747" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1599,25 +1656,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/UpdateDotNetHubRG/providers/Microsoft.ServiceBus/namespaces/iotHubCSharpSDKSBNamespaceTest\",\r\n \"name\": \"iotHubCSharpSDKSBNamespaceTest\",\r\n \"type\": \"Microsoft.ServiceBus/namespaces\",\r\n \"location\": \"West US 2\",\r\n \"kind\": \"Messaging\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"9dbb02fa-c9d2-4593-967e-ffc99c566c5c:iothubcsharpsdksbnamespacetest\",\r\n \"status\": \"Active\",\r\n \"createdAt\": \"2021-02-19T19:07:08.11Z\",\r\n \"serviceBusEndpoint\": \"https://iotHubCSharpSDKSBNamespaceTest.servicebus.windows.net:443/\",\r\n \"enabled\": true,\r\n \"critical\": false,\r\n \"updatedAt\": \"2021-02-19T19:07:53.71Z\",\r\n \"namespaceType\": \"Messaging\",\r\n \"messagingSku\": 2\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/UpdatedDotNetHubRG/providers/Microsoft.ServiceBus/namespaces/iotHubCSharpSDKSBNamespaceTest\",\r\n \"name\": \"iotHubCSharpSDKSBNamespaceTest\",\r\n \"type\": \"Microsoft.ServiceBus/namespaces\",\r\n \"location\": \"West US 2\",\r\n \"kind\": \"Messaging\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"9dbb02fa-c9d2-4593-967e-ffc99c566c5c:iothubcsharpsdksbnamespacetest\",\r\n \"status\": \"Active\",\r\n \"createdAt\": \"2021-05-14T18:57:16.133Z\",\r\n \"serviceBusEndpoint\": \"https://iotHubCSharpSDKSBNamespaceTest.servicebus.windows.net:443/\",\r\n \"enabled\": true,\r\n \"critical\": false,\r\n \"updatedAt\": \"2021-05-14T18:57:58.52Z\",\r\n \"namespaceType\": \"Messaging\",\r\n \"messagingSku\": 2\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/UpdateDotNetHubRG/providers/Microsoft.ServiceBus/namespaces/iotHubCSharpSDKSBNamespaceTest/queues/iotHubCSharpSDKSBTest?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Jlc291cmNlR3JvdXBzL1VwZGF0ZURvdE5ldEh1YlJHL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUJ1cy9uYW1lc3BhY2VzL2lvdEh1YkNTaGFycFNES1NCTmFtZXNwYWNlVGVzdC9xdWV1ZXMvaW90SHViQ1NoYXJwU0RLU0JUZXN0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=", + "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/UpdatedDotNetHubRG/providers/Microsoft.ServiceBus/namespaces/iotHubCSharpSDKSBNamespaceTest/queues/iotHubCSharpSDKSBTest?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Jlc291cmNlR3JvdXBzL1VwZGF0ZWREb3ROZXRIdWJSRy9wcm92aWRlcnMvTWljcm9zb2Z0LlNlcnZpY2VCdXMvbmFtZXNwYWNlcy9pb3RIdWJDU2hhcnBTREtTQk5hbWVzcGFjZVRlc3QvcXVldWVzL2lvdEh1YkNTaGFycFNES1NCVGVzdD9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"WestUS2\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "0ceb2124-c7f9-4609-a92b-97e2f5c596e4" + "227fa52f-798a-4cc4-9902-c237baf2bfcd" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.19043.", "Microsoft.Azure.Management.ServiceBus.ServiceBusManagementClient/0.2.0.0" ], "Content-Type": [ @@ -1635,7 +1692,7 @@ "no-cache" ], "x-ms-request-id": [ - "4c953237-2c9d-4c36-9a3f-9fcacbecb3ec_M10CH3_M10CH3" + "91ec0492-1fbd-4af0-acbe-aeb7c2a4c7f3_M8CH3_M8CH3" ], "Server-SB": [ "Service-Bus-Resource-Provider/CH3" @@ -1648,10 +1705,10 @@ "1198" ], "x-ms-correlation-request-id": [ - "5051815a-6eb5-4685-aa11-6b8ba682ecb9" + "f37aaf40-f073-4571-984a-18c499db61b8" ], "x-ms-routing-request-id": [ - "WESTUS2:20210219T190811Z:5051815a-6eb5-4685-aa11-6b8ba682ecb9" + "WESTUS2:20210514T185819Z:f37aaf40-f073-4571-984a-18c499db61b8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1660,10 +1717,10 @@ "nosniff" ], "Date": [ - "Fri, 19 Feb 2021 19:08:11 GMT" + "Fri, 14 May 2021 18:58:19 GMT" ], "Content-Length": [ - "969" + "970" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1672,25 +1729,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/UpdateDotNetHubRG/providers/Microsoft.ServiceBus/namespaces/iotHubCSharpSDKSBNamespaceTest/queues/iotHubCSharpSDKSBTest\",\r\n \"name\": \"iotHubCSharpSDKSBTest\",\r\n \"type\": \"Microsoft.ServiceBus/Queues\",\r\n \"location\": \"West US 2\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"path\": \"iotHubCSharpSDKSBTest\",\r\n \"lockDuration\": \"00:01:00\",\r\n \"maxSizeInMegabytes\": 1024,\r\n \"requiresDuplicateDetection\": false,\r\n \"requiresSession\": false,\r\n \"defaultMessageTimeToLive\": \"10675199.02:48:05.4775807\",\r\n \"deadLetteringOnMessageExpiration\": false,\r\n \"duplicateDetectionHistoryTimeWindow\": \"00:10:00\",\r\n \"maxDeliveryCount\": 10,\r\n \"enableBatchedOperations\": true,\r\n \"sizeInBytes\": 0,\r\n \"messageCount\": 0,\r\n \"isAnonymousAccessible\": false,\r\n \"status\": \"Active\",\r\n \"createdAt\": \"2021-02-19T19:08:11.017Z\",\r\n \"updatedAt\": \"2021-02-19T19:08:11.12Z\",\r\n \"supportOrdering\": true,\r\n \"autoDeleteOnIdle\": \"10675199.02:48:05.4775807\",\r\n \"enablePartitioning\": false,\r\n \"entityAvailabilityStatus\": \"Available\",\r\n \"enableExpress\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/UpdatedDotNetHubRG/providers/Microsoft.ServiceBus/namespaces/iotHubCSharpSDKSBNamespaceTest/queues/iotHubCSharpSDKSBTest\",\r\n \"name\": \"iotHubCSharpSDKSBTest\",\r\n \"type\": \"Microsoft.ServiceBus/Queues\",\r\n \"location\": \"West US 2\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"path\": \"iotHubCSharpSDKSBTest\",\r\n \"lockDuration\": \"00:01:00\",\r\n \"maxSizeInMegabytes\": 1024,\r\n \"requiresDuplicateDetection\": false,\r\n \"requiresSession\": false,\r\n \"defaultMessageTimeToLive\": \"10675199.02:48:05.4775807\",\r\n \"deadLetteringOnMessageExpiration\": false,\r\n \"duplicateDetectionHistoryTimeWindow\": \"00:10:00\",\r\n \"maxDeliveryCount\": 10,\r\n \"enableBatchedOperations\": true,\r\n \"sizeInBytes\": 0,\r\n \"messageCount\": 0,\r\n \"isAnonymousAccessible\": false,\r\n \"status\": \"Active\",\r\n \"createdAt\": \"2021-05-14T18:58:18.59Z\",\r\n \"updatedAt\": \"2021-05-14T18:58:18.633Z\",\r\n \"supportOrdering\": true,\r\n \"autoDeleteOnIdle\": \"10675199.02:48:05.4775807\",\r\n \"enablePartitioning\": false,\r\n \"entityAvailabilityStatus\": \"Available\",\r\n \"enableExpress\": false\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/UpdateDotNetHubRG/providers/Microsoft.ServiceBus/namespaces/iotHubCSharpSDKSBNamespaceTest/topics/iotHubCSharpSDKTopicTest?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Jlc291cmNlR3JvdXBzL1VwZGF0ZURvdE5ldEh1YlJHL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUJ1cy9uYW1lc3BhY2VzL2lvdEh1YkNTaGFycFNES1NCTmFtZXNwYWNlVGVzdC90b3BpY3MvaW90SHViQ1NoYXJwU0RLVG9waWNUZXN0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=", + "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/UpdatedDotNetHubRG/providers/Microsoft.ServiceBus/namespaces/iotHubCSharpSDKSBNamespaceTest/topics/iotHubCSharpSDKTopicTest?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Jlc291cmNlR3JvdXBzL1VwZGF0ZWREb3ROZXRIdWJSRy9wcm92aWRlcnMvTWljcm9zb2Z0LlNlcnZpY2VCdXMvbmFtZXNwYWNlcy9pb3RIdWJDU2hhcnBTREtTQk5hbWVzcGFjZVRlc3QvdG9waWNzL2lvdEh1YkNTaGFycFNES1RvcGljVGVzdD9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"WestUS2\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "015a0f77-17e2-4755-9137-9d078cdd3f43" + "803f323a-7660-4389-8801-32261e07a121" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.19043.", "Microsoft.Azure.Management.ServiceBus.ServiceBusManagementClient/0.2.0.0" ], "Content-Type": [ @@ -1708,7 +1765,7 @@ "no-cache" ], "x-ms-request-id": [ - "073ced22-a3ef-4704-8f49-4d0b9bbaff5a_M10CH3_M10CH3" + "70cb5954-f5be-4f79-b99b-9c9a4a4c4dbe_M8CH3_M8CH3" ], "Server-SB": [ "Service-Bus-Resource-Provider/CH3" @@ -1721,10 +1778,10 @@ "1197" ], "x-ms-correlation-request-id": [ - "1922a700-49e7-4a18-8783-bb69c1e556fa" + "081880c2-1b1f-4a6e-b57f-78c41642a368" ], "x-ms-routing-request-id": [ - "WESTUS2:20210219T190814Z:1922a700-49e7-4a18-8783-bb69c1e556fa" + "WESTUS2:20210514T185821Z:081880c2-1b1f-4a6e-b57f-78c41642a368" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1733,10 +1790,10 @@ "nosniff" ], "Date": [ - "Fri, 19 Feb 2021 19:08:14 GMT" + "Fri, 14 May 2021 18:58:21 GMT" ], "Content-Length": [ - "928" + "930" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1745,25 +1802,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/UpdateDotNetHubRG/providers/Microsoft.ServiceBus/namespaces/iotHubCSharpSDKSBNamespaceTest/topics/iotHubCSharpSDKTopicTest\",\r\n \"name\": \"iotHubCSharpSDKTopicTest\",\r\n \"type\": \"Microsoft.ServiceBus/Topic\",\r\n \"location\": \"West US 2\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"path\": \"iotHubCSharpSDKTopicTest\",\r\n \"defaultMessageTimeToLive\": \"10675199.02:48:05.4775807\",\r\n \"maxSizeInMegabytes\": 1024,\r\n \"requiresDuplicateDetection\": false,\r\n \"duplicateDetectionHistoryTimeWindow\": \"00:10:00\",\r\n \"enableBatchedOperations\": true,\r\n \"sizeInBytes\": 0,\r\n \"filteringMessagesBeforePublishing\": false,\r\n \"isAnonymousAccessible\": false,\r\n \"status\": \"Active\",\r\n \"createdAt\": \"2021-02-19T19:08:13.733Z\",\r\n \"updatedAt\": \"2021-02-19T19:08:13.85Z\",\r\n \"supportOrdering\": true,\r\n \"autoDeleteOnIdle\": \"10675199.02:48:05.4775807\",\r\n \"enablePartitioning\": false,\r\n \"entityAvailabilityStatus\": \"Available\",\r\n \"enableSubscriptionPartitioning\": false,\r\n \"enableExpress\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/UpdatedDotNetHubRG/providers/Microsoft.ServiceBus/namespaces/iotHubCSharpSDKSBNamespaceTest/topics/iotHubCSharpSDKTopicTest\",\r\n \"name\": \"iotHubCSharpSDKTopicTest\",\r\n \"type\": \"Microsoft.ServiceBus/Topic\",\r\n \"location\": \"West US 2\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"path\": \"iotHubCSharpSDKTopicTest\",\r\n \"defaultMessageTimeToLive\": \"10675199.02:48:05.4775807\",\r\n \"maxSizeInMegabytes\": 1024,\r\n \"requiresDuplicateDetection\": false,\r\n \"duplicateDetectionHistoryTimeWindow\": \"00:10:00\",\r\n \"enableBatchedOperations\": true,\r\n \"sizeInBytes\": 0,\r\n \"filteringMessagesBeforePublishing\": false,\r\n \"isAnonymousAccessible\": false,\r\n \"status\": \"Active\",\r\n \"createdAt\": \"2021-05-14T18:58:20.957Z\",\r\n \"updatedAt\": \"2021-05-14T18:58:21.277Z\",\r\n \"supportOrdering\": true,\r\n \"autoDeleteOnIdle\": \"10675199.02:48:05.4775807\",\r\n \"enablePartitioning\": false,\r\n \"entityAvailabilityStatus\": \"Available\",\r\n \"enableSubscriptionPartitioning\": false,\r\n \"enableExpress\": false\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/UpdateDotNetHubRG/providers/Microsoft.ServiceBus/namespaces/iotHubCSharpSDKSBNamespaceTest/queues/iotHubCSharpSDKSBTest/authorizationRules/iotHubCSharpSDKSBTopicTestRule?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Jlc291cmNlR3JvdXBzL1VwZGF0ZURvdE5ldEh1YlJHL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUJ1cy9uYW1lc3BhY2VzL2lvdEh1YkNTaGFycFNES1NCTmFtZXNwYWNlVGVzdC9xdWV1ZXMvaW90SHViQ1NoYXJwU0RLU0JUZXN0L2F1dGhvcml6YXRpb25SdWxlcy9pb3RIdWJDU2hhcnBTREtTQlRvcGljVGVzdFJ1bGU/YXBpLXZlcnNpb249MjAxNS0wOC0wMQ==", + "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/UpdatedDotNetHubRG/providers/Microsoft.ServiceBus/namespaces/iotHubCSharpSDKSBNamespaceTest/queues/iotHubCSharpSDKSBTest/authorizationRules/iotHubCSharpSDKSBTopicTestRule?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Jlc291cmNlR3JvdXBzL1VwZGF0ZWREb3ROZXRIdWJSRy9wcm92aWRlcnMvTWljcm9zb2Z0LlNlcnZpY2VCdXMvbmFtZXNwYWNlcy9pb3RIdWJDU2hhcnBTREtTQk5hbWVzcGFjZVRlc3QvcXVldWVzL2lvdEh1YkNTaGFycFNES1NCVGVzdC9hdXRob3JpemF0aW9uUnVsZXMvaW90SHViQ1NoYXJwU0RLU0JUb3BpY1Rlc3RSdWxlP2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"WestUS2\",\r\n \"properties\": {\r\n \"rights\": [\r\n \"Send\",\r\n \"Listen\"\r\n ]\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "e94651d0-9309-45f4-a938-eb3b16eae98e" + "bf33fe31-ced2-4cbd-924d-503d4875e2f7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.19043.", "Microsoft.Azure.Management.ServiceBus.ServiceBusManagementClient/0.2.0.0" ], "Content-Type": [ @@ -1781,7 +1838,7 @@ "no-cache" ], "x-ms-request-id": [ - "f4ae9f72-3e26-4539-9f6f-87d54764fc1e_M10CH3_M10CH3" + "aebccd5c-89c6-4345-a92a-4e2d62941322_M8CH3_M8CH3" ], "Server-SB": [ "Service-Bus-Resource-Provider/CH3" @@ -1794,10 +1851,10 @@ "1196" ], "x-ms-correlation-request-id": [ - "5a3bbc86-7f3c-4e64-8dbe-ebc28c84ed53" + "c8b28c3e-767e-4476-a599-0146f1d4478e" ], "x-ms-routing-request-id": [ - "WESTUS2:20210219T190820Z:5a3bbc86-7f3c-4e64-8dbe-ebc28c84ed53" + "WESTUS2:20210514T185827Z:c8b28c3e-767e-4476-a599-0146f1d4478e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1806,10 +1863,10 @@ "nosniff" ], "Date": [ - "Fri, 19 Feb 2021 19:08:19 GMT" + "Fri, 14 May 2021 18:58:27 GMT" ], "Content-Length": [ - "411" + "412" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1818,25 +1875,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/UpdateDotNetHubRG/providers/Microsoft.ServiceBus/namespaces/iotHubCSharpSDKSBNamespaceTest/queues/iotHubCSharpSDKSBTest/authorizationRules/iotHubCSharpSDKSBTopicTestRule\",\r\n \"name\": \"iotHubCSharpSDKSBTopicTestRule\",\r\n \"type\": \"Microsoft.ServiceBus/AuthorizationRules\",\r\n \"location\": \"West US 2\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"rights\": [\r\n \"Send\",\r\n \"Listen\"\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/UpdatedDotNetHubRG/providers/Microsoft.ServiceBus/namespaces/iotHubCSharpSDKSBNamespaceTest/queues/iotHubCSharpSDKSBTest/authorizationRules/iotHubCSharpSDKSBTopicTestRule\",\r\n \"name\": \"iotHubCSharpSDKSBTopicTestRule\",\r\n \"type\": \"Microsoft.ServiceBus/AuthorizationRules\",\r\n \"location\": \"West US 2\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"rights\": [\r\n \"Send\",\r\n \"Listen\"\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/UpdateDotNetHubRG/providers/Microsoft.ServiceBus/namespaces/iotHubCSharpSDKSBNamespaceTest/topics/iotHubCSharpSDKTopicTest/authorizationRules/iotHubCSharpSDKSBTopicTestRule?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Jlc291cmNlR3JvdXBzL1VwZGF0ZURvdE5ldEh1YlJHL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUJ1cy9uYW1lc3BhY2VzL2lvdEh1YkNTaGFycFNES1NCTmFtZXNwYWNlVGVzdC90b3BpY3MvaW90SHViQ1NoYXJwU0RLVG9waWNUZXN0L2F1dGhvcml6YXRpb25SdWxlcy9pb3RIdWJDU2hhcnBTREtTQlRvcGljVGVzdFJ1bGU/YXBpLXZlcnNpb249MjAxNS0wOC0wMQ==", + "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/UpdatedDotNetHubRG/providers/Microsoft.ServiceBus/namespaces/iotHubCSharpSDKSBNamespaceTest/topics/iotHubCSharpSDKTopicTest/authorizationRules/iotHubCSharpSDKSBTopicTestRule?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Jlc291cmNlR3JvdXBzL1VwZGF0ZWREb3ROZXRIdWJSRy9wcm92aWRlcnMvTWljcm9zb2Z0LlNlcnZpY2VCdXMvbmFtZXNwYWNlcy9pb3RIdWJDU2hhcnBTREtTQk5hbWVzcGFjZVRlc3QvdG9waWNzL2lvdEh1YkNTaGFycFNES1RvcGljVGVzdC9hdXRob3JpemF0aW9uUnVsZXMvaW90SHViQ1NoYXJwU0RLU0JUb3BpY1Rlc3RSdWxlP2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"WestUS2\",\r\n \"properties\": {\r\n \"rights\": [\r\n \"Send\",\r\n \"Listen\"\r\n ]\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "d4c95568-0741-4410-96ee-50a3e4ae34af" + "adf0d0df-3743-4a2b-ab09-8ba49e0957d8" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.19043.", "Microsoft.Azure.Management.ServiceBus.ServiceBusManagementClient/0.2.0.0" ], "Content-Type": [ @@ -1854,7 +1911,7 @@ "no-cache" ], "x-ms-request-id": [ - "9b5ef820-f2bd-4a52-995a-8a0d1ed281a8_M10CH3_M10CH3" + "be672b5f-9f85-40ef-9964-67219db5d7b8_M8CH3_M8CH3" ], "Server-SB": [ "Service-Bus-Resource-Provider/CH3" @@ -1867,10 +1924,10 @@ "1195" ], "x-ms-correlation-request-id": [ - "8d13220a-3fd3-4bf1-890f-fb0d5d9c02d8" + "38bab162-1c05-4118-9dc1-48a7336ea60b" ], "x-ms-routing-request-id": [ - "WESTUS2:20210219T190825Z:8d13220a-3fd3-4bf1-890f-fb0d5d9c02d8" + "WESTUS2:20210514T185833Z:38bab162-1c05-4118-9dc1-48a7336ea60b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1879,10 +1936,10 @@ "nosniff" ], "Date": [ - "Fri, 19 Feb 2021 19:08:25 GMT" + "Fri, 14 May 2021 18:58:32 GMT" ], "Content-Length": [ - "414" + "415" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1891,25 +1948,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/UpdateDotNetHubRG/providers/Microsoft.ServiceBus/namespaces/iotHubCSharpSDKSBNamespaceTest/topics/iotHubCSharpSDKTopicTest/authorizationRules/iotHubCSharpSDKSBTopicTestRule\",\r\n \"name\": \"iotHubCSharpSDKSBTopicTestRule\",\r\n \"type\": \"Microsoft.ServiceBus/AuthorizationRules\",\r\n \"location\": \"West US 2\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"rights\": [\r\n \"Send\",\r\n \"Listen\"\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/UpdatedDotNetHubRG/providers/Microsoft.ServiceBus/namespaces/iotHubCSharpSDKSBNamespaceTest/topics/iotHubCSharpSDKTopicTest/authorizationRules/iotHubCSharpSDKSBTopicTestRule\",\r\n \"name\": \"iotHubCSharpSDKSBTopicTestRule\",\r\n \"type\": \"Microsoft.ServiceBus/AuthorizationRules\",\r\n \"location\": \"West US 2\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"rights\": [\r\n \"Send\",\r\n \"Listen\"\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/UpdateDotNetHubRG/providers/Microsoft.ServiceBus/namespaces/iotHubCSharpSDKSBNamespaceTest/queues/iotHubCSharpSDKSBTest/authorizationRules/iotHubCSharpSDKSBTopicTestRule/ListKeys?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Jlc291cmNlR3JvdXBzL1VwZGF0ZURvdE5ldEh1YlJHL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUJ1cy9uYW1lc3BhY2VzL2lvdEh1YkNTaGFycFNES1NCTmFtZXNwYWNlVGVzdC9xdWV1ZXMvaW90SHViQ1NoYXJwU0RLU0JUZXN0L2F1dGhvcml6YXRpb25SdWxlcy9pb3RIdWJDU2hhcnBTREtTQlRvcGljVGVzdFJ1bGUvTGlzdEtleXM/YXBpLXZlcnNpb249MjAxNS0wOC0wMQ==", + "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/UpdatedDotNetHubRG/providers/Microsoft.ServiceBus/namespaces/iotHubCSharpSDKSBNamespaceTest/queues/iotHubCSharpSDKSBTest/authorizationRules/iotHubCSharpSDKSBTopicTestRule/ListKeys?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Jlc291cmNlR3JvdXBzL1VwZGF0ZWREb3ROZXRIdWJSRy9wcm92aWRlcnMvTWljcm9zb2Z0LlNlcnZpY2VCdXMvbmFtZXNwYWNlcy9pb3RIdWJDU2hhcnBTREtTQk5hbWVzcGFjZVRlc3QvcXVldWVzL2lvdEh1YkNTaGFycFNES1NCVGVzdC9hdXRob3JpemF0aW9uUnVsZXMvaW90SHViQ1NoYXJwU0RLU0JUb3BpY1Rlc3RSdWxlL0xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "13e29140-d897-4c0f-811f-7f00c3090f20" + "f9ca0a70-317a-4977-823d-cb6466585ea5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.19043.", "Microsoft.Azure.Management.ServiceBus.ServiceBusManagementClient/0.2.0.0" ] }, @@ -1921,7 +1978,7 @@ "no-cache" ], "x-ms-request-id": [ - "e2b153be-4b16-4504-952b-4a543c501b54_M10CH3_M10CH3" + "88d6e9d7-0ed7-470b-ac88-37400a545954_M8CH3_M8CH3" ], "Server-SB": [ "Service-Bus-Resource-Provider/CH3" @@ -1934,10 +1991,10 @@ "1199" ], "x-ms-correlation-request-id": [ - "9edd93e2-9bce-4078-bde9-bfc0a04aafdb" + "79b24508-f992-4bf1-8488-20c9c26e7153" ], "x-ms-routing-request-id": [ - "WESTUS2:20210219T190825Z:9edd93e2-9bce-4078-bde9-bfc0a04aafdb" + "WESTUS2:20210514T185833Z:79b24508-f992-4bf1-8488-20c9c26e7153" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1946,7 +2003,7 @@ "nosniff" ], "Date": [ - "Fri, 19 Feb 2021 19:08:25 GMT" + "Fri, 14 May 2021 18:58:32 GMT" ], "Content-Length": [ "652" @@ -1958,25 +2015,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"primaryConnectionString\": \"Endpoint=sb://iothubcsharpsdksbnamespacetest.servicebus.windows.net/;SharedAccessKeyName=iotHubCSharpSDKSBTopicTestRule;SharedAccessKey=unJTi9bfs6Z2ESZ+WWsvULvn92g/zMqL/0cxaWGFj2U=;EntityPath=iotHubCSharpSDKSBTest\",\r\n \"secondaryConnectionString\": \"Endpoint=sb://iothubcsharpsdksbnamespacetest.servicebus.windows.net/;SharedAccessKeyName=iotHubCSharpSDKSBTopicTestRule;SharedAccessKey=4vN7aY3eNuw0VzK3oDdFEBKwUOn4xaXQkaNTUmvvliw=;EntityPath=iotHubCSharpSDKSBTest\",\r\n \"primaryKey\": \"unJTi9bfs6Z2ESZ+WWsvULvn92g/zMqL/0cxaWGFj2U=\",\r\n \"secondaryKey\": \"4vN7aY3eNuw0VzK3oDdFEBKwUOn4xaXQkaNTUmvvliw=\",\r\n \"keyName\": \"iotHubCSharpSDKSBTopicTestRule\"\r\n}", + "ResponseBody": "{\r\n \"primaryConnectionString\": \"Endpoint=sb://iothubcsharpsdksbnamespacetest.servicebus.windows.net/;SharedAccessKeyName=iotHubCSharpSDKSBTopicTestRule;SharedAccessKey=y8O5lI5ELdT/DNjpLzkpdyU0kdnPmY/G572WzLwQttc=;EntityPath=iotHubCSharpSDKSBTest\",\r\n \"secondaryConnectionString\": \"Endpoint=sb://iothubcsharpsdksbnamespacetest.servicebus.windows.net/;SharedAccessKeyName=iotHubCSharpSDKSBTopicTestRule;SharedAccessKey=wy8+sNxPBQv7kk3Iv0rl3ME44BNckbOdGOowSZVpRq4=;EntityPath=iotHubCSharpSDKSBTest\",\r\n \"primaryKey\": \"y8O5lI5ELdT/DNjpLzkpdyU0kdnPmY/G572WzLwQttc=\",\r\n \"secondaryKey\": \"wy8+sNxPBQv7kk3Iv0rl3ME44BNckbOdGOowSZVpRq4=\",\r\n \"keyName\": \"iotHubCSharpSDKSBTopicTestRule\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/UpdateDotNetHubRG/providers/Microsoft.ServiceBus/namespaces/iotHubCSharpSDKSBNamespaceTest/queues/iotHubCSharpSDKTopicTest/authorizationRules/iotHubCSharpSDKSBTopicTestRule/ListKeys?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Jlc291cmNlR3JvdXBzL1VwZGF0ZURvdE5ldEh1YlJHL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUJ1cy9uYW1lc3BhY2VzL2lvdEh1YkNTaGFycFNES1NCTmFtZXNwYWNlVGVzdC9xdWV1ZXMvaW90SHViQ1NoYXJwU0RLVG9waWNUZXN0L2F1dGhvcml6YXRpb25SdWxlcy9pb3RIdWJDU2hhcnBTREtTQlRvcGljVGVzdFJ1bGUvTGlzdEtleXM/YXBpLXZlcnNpb249MjAxNS0wOC0wMQ==", + "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/resourceGroups/UpdatedDotNetHubRG/providers/Microsoft.ServiceBus/namespaces/iotHubCSharpSDKSBNamespaceTest/queues/iotHubCSharpSDKTopicTest/authorizationRules/iotHubCSharpSDKSBTopicTestRule/ListKeys?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Jlc291cmNlR3JvdXBzL1VwZGF0ZWREb3ROZXRIdWJSRy9wcm92aWRlcnMvTWljcm9zb2Z0LlNlcnZpY2VCdXMvbmFtZXNwYWNlcy9pb3RIdWJDU2hhcnBTREtTQk5hbWVzcGFjZVRlc3QvcXVldWVzL2lvdEh1YkNTaGFycFNES1RvcGljVGVzdC9hdXRob3JpemF0aW9uUnVsZXMvaW90SHViQ1NoYXJwU0RLU0JUb3BpY1Rlc3RSdWxlL0xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "062afd31-12b7-4473-8167-43542df463de" + "7fc9ad4e-5309-4d70-a1e0-dcffed1a1dc7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.19043.", "Microsoft.Azure.Management.ServiceBus.ServiceBusManagementClient/0.2.0.0" ] }, @@ -1988,7 +2045,7 @@ "no-cache" ], "x-ms-request-id": [ - "67ca2e31-43ee-4026-9622-a6c34f9b9964_M10CH3_M10CH3" + "2533ef98-0a9d-4fdc-b28a-d36b7b53bfb5_M8CH3_M8CH3" ], "Server-SB": [ "Service-Bus-Resource-Provider/CH3" @@ -2001,10 +2058,10 @@ "1198" ], "x-ms-correlation-request-id": [ - "5675fd8a-8abd-455a-a348-162ea43e0e7e" + "94a4b85c-3ecb-4a8a-9297-eededd023745" ], "x-ms-routing-request-id": [ - "WESTUS2:20210219T190826Z:5675fd8a-8abd-455a-a348-162ea43e0e7e" + "WESTUS2:20210514T185833Z:94a4b85c-3ecb-4a8a-9297-eededd023745" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2013,7 +2070,7 @@ "nosniff" ], "Date": [ - "Fri, 19 Feb 2021 19:08:25 GMT" + "Fri, 14 May 2021 18:58:33 GMT" ], "Content-Length": [ "658" @@ -2025,20 +2082,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"primaryConnectionString\": \"Endpoint=sb://iothubcsharpsdksbnamespacetest.servicebus.windows.net/;SharedAccessKeyName=iotHubCSharpSDKSBTopicTestRule;SharedAccessKey=j1GyxZFU2rIeY+9IgVCDNtl9pe5acBUFLLFyU5w2OOI=;EntityPath=iotHubCSharpSDKTopicTest\",\r\n \"secondaryConnectionString\": \"Endpoint=sb://iothubcsharpsdksbnamespacetest.servicebus.windows.net/;SharedAccessKeyName=iotHubCSharpSDKSBTopicTestRule;SharedAccessKey=bfYiLqCenRdJypzM2NauPthAQAoe/BwEKsgAYlBXRy0=;EntityPath=iotHubCSharpSDKTopicTest\",\r\n \"primaryKey\": \"j1GyxZFU2rIeY+9IgVCDNtl9pe5acBUFLLFyU5w2OOI=\",\r\n \"secondaryKey\": \"bfYiLqCenRdJypzM2NauPthAQAoe/BwEKsgAYlBXRy0=\",\r\n \"keyName\": \"iotHubCSharpSDKSBTopicTestRule\"\r\n}", + "ResponseBody": "{\r\n \"primaryConnectionString\": \"Endpoint=sb://iothubcsharpsdksbnamespacetest.servicebus.windows.net/;SharedAccessKeyName=iotHubCSharpSDKSBTopicTestRule;SharedAccessKey=it2eOWUNPrIf8joTv+CkhKWevpy3Om/Vef3mBGaVd5A=;EntityPath=iotHubCSharpSDKTopicTest\",\r\n \"secondaryConnectionString\": \"Endpoint=sb://iothubcsharpsdksbnamespacetest.servicebus.windows.net/;SharedAccessKeyName=iotHubCSharpSDKSBTopicTestRule;SharedAccessKey=gQ0t3xabilAPtfGfW4KDo0pHtpxISTcHHEcEFR4J6GA=;EntityPath=iotHubCSharpSDKTopicTest\",\r\n \"primaryKey\": \"it2eOWUNPrIf8joTv+CkhKWevpy3Om/Vef3mBGaVd5A=\",\r\n \"secondaryKey\": \"gQ0t3xabilAPtfGfW4KDo0pHtpxISTcHHEcEFR4J6GA=\",\r\n \"keyName\": \"iotHubCSharpSDKSBTopicTestRule\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/providers/Microsoft.Devices/operationResults/b3NfaWhfNDI5ZmE0M2QtM2U0Zi00MzJhLTg1MTMtZjVkNGRmOTA3ZDY5?api-version=2020-03-01&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTkRJNVptRTBNMlF0TTJVMFppMDBNekpoTFRnMU1UTXRaalZrTkdSbU9UQTNaRFk1P2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEmb3BlcmF0aW9uU291cmNlPW9zX2loJmFzeW5jaW5mbw==", + "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/providers/Microsoft.Devices/operationResults/b3NfaWhfNjJlNWJhMzQtODJiMy00OTQzLWFlZjAtOTQ4Yjc4MDBiOTgx?api-version=2021-03-31&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTmpKbE5XSmhNelF0T0RKaU15MDBPVFF6TFdGbFpqQXRPVFE0WWpjNE1EQmlPVGd4P2FwaS12ZXJzaW9uPTIwMjEtMDMtMzEmb3BlcmF0aW9uU291cmNlPW9zX2loJmFzeW5jaW5mbw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.0.0.0" ] }, "ResponseHeaders": { @@ -2055,13 +2112,13 @@ "11999" ], "x-ms-request-id": [ - "7a097039-37bf-4bfc-9082-4cdb62098dcb" + "2c4dadaa-1182-47e7-944f-f9869ca78a66" ], "x-ms-correlation-request-id": [ - "7a097039-37bf-4bfc-9082-4cdb62098dcb" + "2c4dadaa-1182-47e7-944f-f9869ca78a66" ], "x-ms-routing-request-id": [ - "WESTUS2:20210219T190859Z:7a097039-37bf-4bfc-9082-4cdb62098dcb" + "WESTUS2:20210514T185907Z:2c4dadaa-1182-47e7-944f-f9869ca78a66" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2070,7 +2127,7 @@ "nosniff" ], "Date": [ - "Fri, 19 Feb 2021 19:08:59 GMT" + "Fri, 14 May 2021 18:59:07 GMT" ], "Content-Length": [ "20" @@ -2086,16 +2143,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/providers/Microsoft.Devices/operationResults/b3NfaWhfNDI5ZmE0M2QtM2U0Zi00MzJhLTg1MTMtZjVkNGRmOTA3ZDY5?api-version=2020-03-01&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTkRJNVptRTBNMlF0TTJVMFppMDBNekpoTFRnMU1UTXRaalZrTkdSbU9UQTNaRFk1P2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEmb3BlcmF0aW9uU291cmNlPW9zX2loJmFzeW5jaW5mbw==", + "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/providers/Microsoft.Devices/operationResults/b3NfaWhfNjJlNWJhMzQtODJiMy00OTQzLWFlZjAtOTQ4Yjc4MDBiOTgx?api-version=2021-03-31&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTmpKbE5XSmhNelF0T0RKaU15MDBPVFF6TFdGbFpqQXRPVFE0WWpjNE1EQmlPVGd4P2FwaS12ZXJzaW9uPTIwMjEtMDMtMzEmb3BlcmF0aW9uU291cmNlPW9zX2loJmFzeW5jaW5mbw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.0.0.0" ] }, "ResponseHeaders": { @@ -2112,13 +2169,13 @@ "11998" ], "x-ms-request-id": [ - "1f992e7e-d8f5-45ac-a0fa-a4fe214bc63f" + "b90c0385-6fc7-4533-b11e-cf126dcf2833" ], "x-ms-correlation-request-id": [ - "1f992e7e-d8f5-45ac-a0fa-a4fe214bc63f" + "b90c0385-6fc7-4533-b11e-cf126dcf2833" ], "x-ms-routing-request-id": [ - "WESTUS2:20210219T190930Z:1f992e7e-d8f5-45ac-a0fa-a4fe214bc63f" + "WESTUS2:20210514T185937Z:b90c0385-6fc7-4533-b11e-cf126dcf2833" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2127,7 +2184,7 @@ "nosniff" ], "Date": [ - "Fri, 19 Feb 2021 19:09:30 GMT" + "Fri, 14 May 2021 18:59:37 GMT" ], "Content-Length": [ "20" @@ -2143,16 +2200,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/providers/Microsoft.Devices/operationResults/b3NfaWhfNDI5ZmE0M2QtM2U0Zi00MzJhLTg1MTMtZjVkNGRmOTA3ZDY5?api-version=2020-03-01&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTkRJNVptRTBNMlF0TTJVMFppMDBNekpoTFRnMU1UTXRaalZrTkdSbU9UQTNaRFk1P2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEmb3BlcmF0aW9uU291cmNlPW9zX2loJmFzeW5jaW5mbw==", + "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/providers/Microsoft.Devices/operationResults/b3NfaWhfNjJlNWJhMzQtODJiMy00OTQzLWFlZjAtOTQ4Yjc4MDBiOTgx?api-version=2021-03-31&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTmpKbE5XSmhNelF0T0RKaU15MDBPVFF6TFdGbFpqQXRPVFE0WWpjNE1EQmlPVGd4P2FwaS12ZXJzaW9uPTIwMjEtMDMtMzEmb3BlcmF0aW9uU291cmNlPW9zX2loJmFzeW5jaW5mbw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.0.0.0" ] }, "ResponseHeaders": { @@ -2169,13 +2226,13 @@ "11997" ], "x-ms-request-id": [ - "d0edabf3-a2b6-4b92-b23f-1019ab7bdbf0" + "0aa77460-c947-4e8b-8c96-a2b5f6b22465" ], "x-ms-correlation-request-id": [ - "d0edabf3-a2b6-4b92-b23f-1019ab7bdbf0" + "0aa77460-c947-4e8b-8c96-a2b5f6b22465" ], "x-ms-routing-request-id": [ - "WESTUS2:20210219T191000Z:d0edabf3-a2b6-4b92-b23f-1019ab7bdbf0" + "WESTUS2:20210514T190008Z:0aa77460-c947-4e8b-8c96-a2b5f6b22465" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2184,7 +2241,7 @@ "nosniff" ], "Date": [ - "Fri, 19 Feb 2021 19:09:59 GMT" + "Fri, 14 May 2021 19:00:08 GMT" ], "Content-Length": [ "22" @@ -2200,16 +2257,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/providers/Microsoft.Devices/operationResults/b3NfaWhfZjI1NzJjMDMtYzNjNi00OTE1LTllMDgtZDBkMmNlYjBlZDQy?api-version=2020-03-01&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmWmpJMU56SmpNRE10WXpOak5pMDBPVEUxTFRsbE1EZ3RaREJrTW1ObFlqQmxaRFF5P2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEmb3BlcmF0aW9uU291cmNlPW9zX2loJmFzeW5jaW5mbw==", + "RequestUri": "/subscriptions/9dbb02fa-c9d2-4593-967e-ffc99c566c5c/providers/Microsoft.Devices/operationResults/b3NfaWhfMjcxNGFiMDYtYzNkYS00NDA1LWEwYmUtMmMxNTdiZGQxMmJl?api-version=2021-03-31&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWRiYjAyZmEtYzlkMi00NTkzLTk2N2UtZmZjOTljNTY2YzVjL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTWpjeE5HRmlNRFl0WXpOa1lTMDBOREExTFdFd1ltVXRNbU14TlRkaVpHUXhNbUpsP2FwaS12ZXJzaW9uPTIwMjEtMDMtMzEmb3BlcmF0aW9uU291cmNlPW9zX2loJmFzeW5jaW5mbw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.0.0.0" ] }, "ResponseHeaders": { @@ -2226,13 +2283,13 @@ "11994" ], "x-ms-request-id": [ - "620c6ab4-83cd-46ef-8358-85795484bb18" + "443fc114-fe34-4733-9346-9d7869c1ed04" ], "x-ms-correlation-request-id": [ - "620c6ab4-83cd-46ef-8358-85795484bb18" + "443fc114-fe34-4733-9346-9d7869c1ed04" ], "x-ms-routing-request-id": [ - "WESTUS2:20210219T191034Z:620c6ab4-83cd-46ef-8358-85795484bb18" + "WESTUS2:20210514T190042Z:443fc114-fe34-4733-9346-9d7869c1ed04" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2241,7 +2298,7 @@ "nosniff" ], "Date": [ - "Fri, 19 Feb 2021 19:10:34 GMT" + "Fri, 14 May 2021 19:00:42 GMT" ], "Content-Length": [ "22"