DurableOrchestrationBindings Class

Binding information.

Provides information relevant to the creation and management of durable functions.

Inheritance
builtins.object
DurableOrchestrationBindings

Constructor

DurableOrchestrationBindings(taskHubName: str, creationUrls: Dict[str, str], managementUrls: Dict[str, str], rpcBaseUrl: Optional[str] = None, **kwargs)

Parameters

taskHubName
creationUrls
managementUrls
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

json_string
Required

Context passed a JSON serializable value to be converted into an instance of the class

json_string
Required

Returns

New instance of the durable orchestration binding class

Return type

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.