Share via


RabbitMQBuilderExtensions.WithDataVolume Method

Definition

Adds a named volume for the data folder to a RabbitMQ container resource.

public static Aspire.Hosting.ApplicationModel.IResourceBuilder<Aspire.Hosting.ApplicationModel.RabbitMQServerResource> WithDataVolume (this Aspire.Hosting.ApplicationModel.IResourceBuilder<Aspire.Hosting.ApplicationModel.RabbitMQServerResource> builder, string? name = default, bool isReadOnly = false);
static member WithDataVolume : Aspire.Hosting.ApplicationModel.IResourceBuilder<Aspire.Hosting.ApplicationModel.RabbitMQServerResource> * string * bool -> Aspire.Hosting.ApplicationModel.IResourceBuilder<Aspire.Hosting.ApplicationModel.RabbitMQServerResource>
<Extension()>
Public Function WithDataVolume (builder As IResourceBuilder(Of RabbitMQServerResource), Optional name As String = Nothing, Optional isReadOnly As Boolean = false) As IResourceBuilder(Of RabbitMQServerResource)

Parameters

builder
IResourceBuilder<RabbitMQServerResource>

The resource builder.

name
String

The name of the volume. Defaults to an auto-generated name based on the application and resource names.

isReadOnly
Boolean

A flag that indicates if this is a read-only volume.

Returns

The IResourceBuilder<T>.

Applies to