DurableOrchestrationBindings Class
Binding information.
Provides information relevant to the creation and management of durable functions.
Constructor
DurableOrchestrationBindings(taskHubName: str, creationUrls: Dict[str, str], managementUrls: Dict[str, str], rpcBaseUrl: str | None = None, **kwargs)
Parameters
| Name | Description |
|---|---|
|
taskHubName
Required
|
|
|
creationUrls
Required
|
|
|
managementUrls
Required
|
|
|
rpcBaseUrl
|
Default value: None
|
Methods
| from_json |
Convert the value passed into a new instance of the class. |
from_json
Convert the value passed into a new instance of the class.
from_json(json_string)
Parameters
| Name | Description |
|---|---|
|
json_string
Required
|
Context passed a JSON serializable value to be converted into an instance of the class |
Returns
| Type | Description |
|---|---|
|
New instance of the durable orchestration binding class |
Attributes
client_data
Get any additional client data provided within the context of the client.
creation_urls
Get the URLs that are used for creating new orchestrations.
management_urls
Get the URLs that are used for managing orchestrations.
rpc_base_url
Get the base url communication between out of proc workers and the function host.
task_hub_name
Get the name of the container that is used for orchestrations.