Skip to main content

Microsoft Azure Purview Workflow Service Client Library for Python

Project description

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

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:

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='<endpoint>', credential=credential)

Examples

The following section shows you how to initialize and authenticate your client, then list all workflows.

List All Workflows

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='<endpoint>', credential=credential)
try:
    response = client.workflows.list()
    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.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

azure-purview-workflow-1.0.0b2.tar.gz (50.8 kB view details)

Uploaded Source

Built Distribution

azure_purview_workflow-1.0.0b2-py3-none-any.whl (52.8 kB view details)

Uploaded Python 3

File details

Details for the file azure-purview-workflow-1.0.0b2.tar.gz.

File metadata

File hashes

Hashes for azure-purview-workflow-1.0.0b2.tar.gz
Algorithm Hash digest
SHA256 4ae589ee33ba310662d6d88568c352e732b1fc404bda2aff93a5688e67f79c56
MD5 07164e8add2b3677389880f6786da00b
BLAKE2b-256 8a1e11ded161f6a3fd2d16b8f7ad21ac9bd50b24f3bd007bbe90ffe1d481e2dc

See more details on using hashes here.

File details

Details for the file azure_purview_workflow-1.0.0b2-py3-none-any.whl.

File metadata

File hashes

Hashes for azure_purview_workflow-1.0.0b2-py3-none-any.whl
Algorithm Hash digest
SHA256 e6fa2c331bb148c17f18885f997431abb823d1a616f98869fcc2bead35e9084c
MD5 81a25edc90db2cc573534ff4057734fb
BLAKE2b-256 1414d623b4d94047dc28933b31a17d0341a9ca352b4a0c5c26080d85f1546761

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page