.. role:: raw-html-m2r(raw) :format: html Azure Purview Workflow Service client library for Python ======================================================== Workflows are automated, repeatable business processes that users can create within Microsoft Purview to validate and orchestrate CUD (create, update, delete) operations on their data entities. Enabling these processes allow organizations to track changes, enforce policy compliance, and ensure quality data across their data landscape. Use the client library for Purview Workflow to: * Manage workflows * Submit user requests and monitor workflow runs * View and respond to workflow tasks For more details about how to use workflow, please refer to the `service documentation `_ Getting started --------------- Prequisites ^^^^^^^^^^^ * Python 3.7 or later is required to use this package. * You need an `Azure subscription `_ to use this package. * An existing Azure `Purview account `_. Authentication ^^^^^^^^^^^^^^ To authenticate with AAD, you must first `pip `_ install `\ ``azure-identity`` `_ After setup, you can choose which type of `credential `_ from azure.identity to use. For Workflow service, it is recommended that use the `UsernamePasswordCredential `_ to authenticate the client: Set the values of client ID and tenant ID of the AAD application, set the values username and password of the AAD user as environment variables: ``AZURE_CLIENT_ID``\ , ``AZURE_TENANT_ID``\ , ``USERNAME`` and ``PASSWORD`` Use the returned token credential to authenticate the client: .. code-block:: python from azure.purview.workflow import PurviewWorkflowClient from azure.identity import UsernamePasswordCredential username = os.getenv("USERNAME") password = os.getenv("PASSWORD") client_id = os.getenv("AZURE_CLIENT_ID") tenant_id = os.getenv("AZURE_TENANT_ID") credential = UsernamePasswordCredential(client_id=client_id, username=username, password=password, tenant_id=tenant_id) client = PurviewWorkflowClient(endpoint='', credential=credential) Examples -------- The following section shows you how to initialize and authenticate your client, then list all workflows. * :raw-html-m2r:`List All Workflows` List All Workflows ^^^^^^^^^^^^^^^^^^ .. code-block:: python from azure.purview.workflow import PurviewWorkflowClient from azure.identity import UsernamePasswordCredential username = os.getenv("USERNAME") password = os.getenv("PASSWORD") client_id = os.getenv("AZURE_CLIENT_ID") tenant_id = os.getenv("AZURE_TENANT_ID") credential = UsernamePasswordCredential(client_id=client_id, username=username, password=password, tenant_id=tenant_id) client = PurviewWorkflowClient(endpoint='', credential=credential) try: response = client.list_workflows() for item in response: print(item) except HttpResponseError as e: print('service responds error: {}'.format(e.response.json())) Key concepts ------------ Troubleshooting --------------- Contributing ------------ Next steps ---------- This project welcomes contributions and suggestions. Most contributions require you to agree to a Contributor License Agreement (CLA) declaring that you have the right to, and actually do, grant us the rights to use your contribution. For details, visit https://cla.microsoft.com. When you submit a pull request, a CLA-bot will automatically determine whether you need to provide a CLA and decorate the PR appropriately (e.g., label, comment). Simply follow the instructions provided by the bot. You will only need to do this once across all repos using our CLA. This project has adopted the `Microsoft Open Source Code of Conduct `_. For more information, see the Code of Conduct FAQ or contact opencode@microsoft.com with any additional questions or comments. :raw-html-m2r:`` Indices and tables ------------------ * :ref:`genindex` * :ref:`modindex` * :ref:`search` .. toctree:: :maxdepth: 5 :glob: :caption: Developer Documentation azure.purview.workflow.rst