TokenSource Class
Token Source implementation for [Azure Managed Identities].
https://docs.microsoft.com/azure/active-directory/managed-identities-azure-resources/overview.
@example Get a list of Azure Subscriptions by calling the Azure Resource Manager HTTP API.
``<<>>`<<python
import azure.durable_functions as df
def generator_function(context): return yield context.callHttp( "GET", "https://management.azure.com/subscriptions?api-version=2019-06-01", None, None, df.ManagedIdentityTokenSource("https://management.core.windows.net"))
Constructor
TokenSource()