|
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
namespace Aspire.Hosting.ApplicationModel;
/// <summary>
/// Defines a builder for creating resources of type <typeparamref name="T"/>.
/// </summary>
/// <typeparam name="T">The type of resource to build.</typeparam>
public interface IResourceBuilder<out T> where T : IResource
{
/// <summary>
/// Gets the distributed application builder associated with this resource builder.
/// </summary>
IDistributedApplicationBuilder ApplicationBuilder { get; }
/// <summary>
/// Gets the resource of type <typeparamref name="T"/> that is being built.
/// </summary>
T Resource { get; }
/// <summary>
/// Adds an annotation to the resource being built.
/// </summary>
/// <typeparam name="TAnnotation">The type of the annotation to add.</typeparam>
/// <param name="behavior">The behavior to use when adding the annotation.</param>
/// <returns>The resource builder instance.</returns>
[System.Diagnostics.CodeAnalysis.SuppressMessage("ApiDesign", "RS0026:Do not add multiple public overloads with optional parameters", Justification = "<Pending>")]
IResourceBuilder<T> WithAnnotation<TAnnotation>(ResourceAnnotationMutationBehavior behavior = ResourceAnnotationMutationBehavior.Append) where TAnnotation : IResourceAnnotation, new() => WithAnnotation(new TAnnotation(), behavior);
/// <summary>
/// Adds an annotation to the resource being built.
/// </summary>
/// <typeparam name="TAnnotation">The type of the annotation to add.</typeparam>
/// <param name="annotation">The annotation to add.</param>
/// <param name="behavior">The behavior to use when adding the annotation.</param>
/// <returns>The resource builder instance.</returns>
[System.Diagnostics.CodeAnalysis.SuppressMessage("ApiDesign", "RS0026:Do not add multiple public overloads with optional parameters", Justification = "<Pending>")]
IResourceBuilder<T> WithAnnotation<TAnnotation>(TAnnotation annotation, ResourceAnnotationMutationBehavior behavior = ResourceAnnotationMutationBehavior.Append) where TAnnotation : IResourceAnnotation;
}
|