Skip to content
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
using Aspire.Hosting.ApplicationModel;
using Microsoft.Extensions.Logging;
using Microsoft.Extensions.Logging.Abstractions;
using System.Diagnostics.CodeAnalysis;

namespace Aspire.Hosting.Radius.CloudProviders;

Expand All @@ -13,6 +14,7 @@ namespace Aspire.Hosting.Radius.CloudProviders;
/// write wins) and the final value is hoisted into
/// <see cref="AwsRadiusProviderConfig"/> by <c>WithAwsProvider</c>.
/// </summary>
[Experimental("ASPIRERADIUS003", UrlFormat = "https://aka.ms/aspire/diagnostics/{0}")]
internal sealed class AwsRadiusProviderBuilder : IAwsRadiusProviderBuilder
{
private readonly ILogger _logger;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
using Aspire.Hosting.ApplicationModel;
using Microsoft.Extensions.Logging;
using Microsoft.Extensions.Logging.Abstractions;
using System.Diagnostics.CodeAnalysis;

namespace Aspire.Hosting.Radius.CloudProviders;

Expand All @@ -14,6 +15,7 @@ namespace Aspire.Hosting.Radius.CloudProviders;
/// <see cref="AzureRadiusProviderConfig"/> by <c>WithAzureProvider</c> after
/// the user callback returns.
/// </summary>
[Experimental("ASPIRERADIUS003", UrlFormat = "https://aka.ms/aspire/diagnostics/{0}")]
internal sealed class AzureRadiusProviderBuilder : IAzureRadiusProviderBuilder
{
private readonly ILogger _logger;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
// The .NET Foundation licenses this file to you under the MIT license.

using Aspire.Hosting.ApplicationModel;
using System.Diagnostics.CodeAnalysis;

namespace Aspire.Hosting.Radius.CloudProviders;

Expand All @@ -10,6 +11,7 @@ namespace Aspire.Hosting.Radius.CloudProviders;
/// selecting an AWS credential mode. Exactly one <c>With*</c> method must
/// be called; a repeat call replaces the previous selection.
/// </summary>
[Experimental("ASPIRERADIUS003", UrlFormat = "https://aka.ms/aspire/diagnostics/{0}")]
public interface IAwsRadiusProviderBuilder
{
/// <summary>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
// The .NET Foundation licenses this file to you under the MIT license.

using Aspire.Hosting.ApplicationModel;
using System.Diagnostics.CodeAnalysis;

namespace Aspire.Hosting.Radius.CloudProviders;

Expand All @@ -10,6 +11,7 @@ namespace Aspire.Hosting.Radius.CloudProviders;
/// selecting an Azure credential mode. Exactly one <c>With*</c> method must
/// be called; a repeat call replaces the previous selection.
/// </summary>
[Experimental("ASPIRERADIUS003", UrlFormat = "https://aka.ms/aspire/diagnostics/{0}")]
public interface IAzureRadiusProviderBuilder
{
/// <summary>
Expand Down
Loading