Package version:

Dapr PubSub Event Subscription.

interface DaprSubscription {
    bulkSubscribe?: DaprSubscriptionBulkSubscribeOptions;
    deadLetterTopic?: string;
    id?: string;
    metadata?: {
        [propertyName: string]: string;
    };
    name?: string;
    pubsubName?: string;
    routes?: DaprSubscriptionRoutes;
    scopes?: string[];
    systemData?: SystemData;
    topic?: string;
    type?: string;
}

Hierarchy (view full)

Properties

Bulk subscription options

deadLetterTopic?: string

Deadletter topic name

id?: string

Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}" NOTE: This property will not be serialized. It can only be populated by the server.

metadata?: {
    [propertyName: string]: string;
}

Subscription metadata

name?: string

The name of the resource NOTE: This property will not be serialized. It can only be populated by the server.

pubsubName?: string

Dapr PubSub component name

Subscription routes

scopes?: string[]

Application scopes to restrict the subscription to specific apps.

systemData?: SystemData

Azure Resource Manager metadata containing createdBy and modifiedBy information. NOTE: This property will not be serialized. It can only be populated by the server.

topic?: string

Topic name

type?: string

The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts" NOTE: This property will not be serialized. It can only be populated by the server.