次の方法で共有


AzureServiceBusSubscriptionResource Class

Definition

Represents a Service Bus Subscription.

public class AzureServiceBusSubscriptionResource : Aspire.Hosting.ApplicationModel.Resource, Aspire.Hosting.ApplicationModel.IResourceWithConnectionString, Aspire.Hosting.ApplicationModel.IResourceWithParent<Aspire.Hosting.Azure.AzureServiceBusTopicResource>, Aspire.Hosting.Azure.IResourceWithAzureFunctionsConfig
type AzureServiceBusSubscriptionResource = class
    inherit Resource
    interface IResourceWithParent<AzureServiceBusTopicResource>
    interface IResourceWithParent
    interface IResource
    interface IResourceWithConnectionString
    interface IManifestExpressionProvider
    interface IValueProvider
    interface IValueWithReferences
    interface IResourceWithAzureFunctionsConfig
Public Class AzureServiceBusSubscriptionResource
Inherits Resource
Implements IResourceWithAzureFunctionsConfig, IResourceWithConnectionString, IResourceWithParent(Of AzureServiceBusTopicResource)
Inheritance
AzureServiceBusSubscriptionResource
Implements

Remarks

Use ConfigureInfrastructure<T>(IResourceBuilder<T>, Action<AzureResourceInfrastructure>) to configure specific Aspire.Hosting.Azure.Provisioning properties.

Constructors

AzureServiceBusSubscriptionResource(String, String, AzureServiceBusTopicResource)

Initializes a new instance of the AzureServiceBusSubscriptionResource class.

Properties

Annotations

Gets the annotations associated with the resource.

(Inherited from Resource)
ConnectionStringExpression

Gets the connection string expression for the Azure Service Bus Subscription.

DeadLetteringOnMessageExpiration

A value that indicates whether this queue has dead letter support when a message expires.

DefaultMessageTimeToLive

ISO 8601 default message timespan to live value. This is the duration after which the message expires, starting from when the message is sent to Service Bus. This is the default value used when TimeToLive is not set on a message itself.

ForwardDeadLetteredMessagesTo

Queue/Topic name to forward the Dead Letter message.

ForwardTo

Queue/Topic name to forward the messages.

LockDuration

ISO 8601 timespan duration of a peek-lock; that is, the amount of time that the message is locked for other receivers. The maximum value for LockDuration is 5 minutes; the default value is 1 minute.

MaxDeliveryCount

The maximum delivery count. A message is automatically deadlettered after this number of deliveries. default value is 10.

Name

Gets the name of the resource.

(Inherited from Resource)
Parent

Gets the parent Azure Service Bus Topic resource.

RequiresSession

A value that indicates whether the queue supports the concept of sessions.

Rules

The rules for this subscription.

SubscriptionName

The subscription name.

Explicit Interface Implementations

IResourceWithAzureFunctionsConfig.ApplyAzureFunctionsConfiguration(IDictionary<String,Object>, String)

Extension Methods

GetReplicaCount(IResource)

Gets the number of replicas for the specified resource. Defaults to 1 if no ReplicaAnnotation is found.

HasAnnotationIncludingAncestorsOfType<T>(IResource)

Gets whether resource or its ancestors have an annotation of type T

HasAnnotationOfType<T>(IResource)

Gets whether resource has an annotation of type T

TryGetAnnotationsIncludingAncestorsOfType<T>(IResource, IEnumerable<T>)

Attempts to retrieve all annotations of the specified type from the given resource including from parents.

TryGetAnnotationsOfType<T>(IResource, IEnumerable<T>)

Attempts to retrieve all annotations of the specified type from the given resource.

TryGetContainerImageName(IResource, String)

Attempts to get the container image name from the given resource.

TryGetContainerMounts(IResource, IEnumerable<ContainerMountAnnotation>)

Attempts to get the container mounts for the specified resource.

TryGetEndpoints(IResource, IEnumerable<EndpointAnnotation>)

Attempts to retrieve the endpoints for the given resource.

TryGetEnvironmentVariables(IResource, IEnumerable<EnvironmentCallbackAnnotation>)

Attempts to get the environment variables from the given resource.

TryGetLastAnnotation<T>(IResource, T)

Attempts to get the last annotation of the specified type from the resource.

IsContainer(IResource)

Determines whether the specified resource is a container resource.

IsExisting(IResource)

Determines if the resource is an existing resource.

Applies to