Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 2 additions & 6 deletions sdk/eventhub/Azure.ResourceManager.EventHubs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,10 @@
# Release History

## 1.3.0-beta.1 (Unreleased)
## 1.3.0-beta.1 (2025-11-27)

### Features Added

### Breaking Changes

### Bugs Fixed

### Other Changes
- Updated api version to '2025-05-01-preview'.

## 1.2.1 (2025-09-23)

Expand Down

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
@@ -0,0 +1,81 @@
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.

#nullable disable

using System;
using System.ComponentModel;
using System.Threading;
using System.Threading.Tasks;
using Azure.Core;
using Azure.ResourceManager.Resources;

namespace Azure.ResourceManager.EventHubs
{
/// <summary>
/// A Class representing an EventHubsNamespace along with the instance operations that can be performed on it.
/// If you have a <see cref="ResourceIdentifier"/> you can construct an <see cref="EventHubsNamespaceResource"/>
/// from an instance of <see cref="ArmClient"/> using the GetEventHubsNamespaceResource method.
/// Otherwise you can get one from its parent resource <see cref="ResourceGroupResource"/> using the GetEventHubsNamespace method.
/// </summary>
public partial class EventHubsNamespaceResource : ArmResource
{
/// <summary>
/// Creates or updates a namespace. Once created, this namespace's resource manifest is immutable. This operation is idempotent.
/// <list type="bullet">
/// <item>
/// <term>Request Path</term>
/// <description>/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.EventHub/namespaces/{namespaceName}</description>
/// </item>
/// <item>
/// <term>Operation Id</term>
/// <description>Namespaces_Update</description>
/// </item>
/// <item>
/// <term>Resource</term>
/// <description><see cref="EventHubsNamespaceResource"/></description>
/// </item>
/// </list>
/// </summary>
/// <param name="data"> Parameters for updating a namespace resource. </param>
/// <param name="cancellationToken"> The cancellation token to use. </param>
/// <exception cref="ArgumentNullException"> <paramref name="data"/> is null. </exception>
[Obsolete("This method is obsolete and will be removed in a future release.")]
[EditorBrowsable(EditorBrowsableState.Never)]
public virtual Task<Response<EventHubsNamespaceResource>> UpdateAsync(EventHubsNamespaceData data, CancellationToken cancellationToken = default)
{
throw new NotSupportedException("This method is no longer supported.");
}

/// <summary>
/// Creates or updates a namespace. Once created, this namespace's resource manifest is immutable. This operation is idempotent.
/// <list type="bullet">
/// <item>
/// <term>Request Path</term>
/// <description>/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.EventHub/namespaces/{namespaceName}</description>
/// </item>
/// <item>
/// <term>Operation Id</term>
/// <description>Namespaces_Update</description>
/// </item>
/// <item>
/// <term>Default Api Version</term>
/// <description>2024-01-01</description>
/// </item>
/// <item>
/// <term>Resource</term>
/// <description><see cref="EventHubsNamespaceResource"/></description>
/// </item>
/// </list>
/// </summary>
/// <param name="data"> Parameters for updating a namespace resource. </param>
/// <param name="cancellationToken"> The cancellation token to use. </param>
/// <exception cref="ArgumentNullException"> <paramref name="data"/> is null. </exception>
[Obsolete("This method is obsolete and will be removed in a future release.")]
[EditorBrowsable(EditorBrowsableState.Never)]
public virtual Response<EventHubsNamespaceResource> Update(EventHubsNamespaceData data, CancellationToken cancellationToken = default)
{
throw new NotSupportedException("This method is no longer supported.");
}
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.

#nullable disable

using Azure.Core;

namespace Azure.ResourceManager.EventHubs.Models
{
[CodeGenModel(Usage = new[] { "Input" })]
public partial class EventHubsProvisioningIssue
{ }
}
Loading
Loading