Thanks to visit codestin.com
Credit goes to aspire.dev

Skip to content
DocsTry Aspire
DocsTry

SeqResource

Handle
📦 Aspire.Hosting.Seq v13.4.0
interface SeqResource
extends IComputeResource,
IExpressionValue,
IManifestExpressionProvider,
IResource,
IResourceWithArgs,
IResourceWithConnectionString,
IResourceWithEndpoints,
IResourceWithEnvironment,
IResourceWithProbes,
IResourceWithWaitSupport,
IValueProvider,
IValueWithReferences {
readonly connectionStringExpression: ReferenceExpression;
readonly host: EndpointReferenceExpression;
readonly port: EndpointReferenceExpression;
readonly primaryEndpoint: EndpointReference;
readonly uriExpression: ReferenceExpression;
withDataBindMount(
source: string,
isReadOnly?: boolean): SeqResource;
withDataVolume(
name?: string,
isReadOnly?: boolean): SeqResource;
}

Properties

propertyconnectionStringExpressionReferenceExpressionget
Gets the connection string expression for the Seq server.
propertyhostEndpointReferenceExpressionget
Gets the host endpoint reference for this resource.
propertyportEndpointReferenceExpressionget
Gets the port endpoint reference for this resource.
propertyprimaryEndpointEndpointReferenceget
Gets the primary endpoint for the Seq server.
propertyuriExpressionReferenceExpressionget
Gets the connection URI expression for the Seq server.

Methods

methodwithDataBindMountbuilder
Adds a bind mount for the data folder to a Seq container resource.
withDataBindMount(
source: string,
isReadOnly?: boolean): SeqResource
sourcestring
isReadOnlybooleanoptional= False
SeqResource
methodwithDataVolumebuilder
Adds a named volume for the data folder to a Seq container resource.
withDataVolume(
name?: string,
isReadOnly?: boolean): SeqResource
namestringoptional
isReadOnlybooleanoptional= False
SeqResource