Class HttpManagementPayload
- Namespace
- Microsoft.Azure.WebJobs.Extensions.DurableTask
- Assembly
- Microsoft.Azure.WebJobs.Extensions.DurableTask.dll
Data structure containing status, terminate and send external event HTTP endpoints.
public class HttpManagementPayload
- Inheritance
-
HttpManagementPayload
- Inherited Members
Constructors
HttpManagementPayload()
public HttpManagementPayload()
Properties
Id
Gets the ID of the orchestration instance.
public string Id { get; }
Property Value
- string
The ID of the orchestration instance.
PurgeHistoryDeleteUri
Gets the HTTP DELETE purge instance history by instance ID endpoint.
public string PurgeHistoryDeleteUri { get; }
Property Value
- string
The HTTP URL for purging instance history by instance ID.
RewindPostUri
Gets the HTTP POST instance rewind endpoint.
public string RewindPostUri { get; }
Property Value
- string
The HTTP URL for rewinding orchestration instances.
SendEventPostUri
Gets the HTTP POST external event sending endpoint URL.
public string SendEventPostUri { get; }
Property Value
- string
The HTTP URL for posting external event notifications.
StatusQueryGetUri
Gets the HTTP GET status query endpoint URL.
public string StatusQueryGetUri { get; }
Property Value
- string
The HTTP URL for fetching the instance status.
TerminatePostUri
Gets the HTTP POST instance termination endpoint.
public string TerminatePostUri { get; }
Property Value
- string
The HTTP URL for posting instance termination commands.