azure.purview.catalog package — Azure SDK for Python 2.0.0 documentation
Andrew White
Published Feb 17, 2026
- class
azure.purview.catalog.PurviewCatalogClient(endpoint: str, credential: ‘TokenCredential’, **kwargs: Any)[source]¶ Purview Catalog Service is a fully managed cloud service whose users can discover the data sources they need and understand the data sources they find. At the same time, Data Catalog helps organizations get more value from their existing investments. This spec defines REST API of Purview Catalog Service.
- Variables
- Parameters
- Keyword Arguments
polling_interval (int) – Default waiting time between two polls for LRO operations if no Retry-After header is present.
send_request(request: HttpRequest, **kwargs: Any) → HttpResponse[source]¶Runs the network request through the client’s chained policies.
>>> from azure.core.rest import HttpRequest>>> request = HttpRequest("GET", "")<HttpRequest [GET], url: '>>> response = client.send_request(request)<HttpResponse: 200 OK>
For more information on this code flow, see
- Parameters
request (HttpRequest) – The network request you want to make. Required.
- Keyword Arguments
stream (bool) – Whether the response payload will be streamed. Defaults to False.
- Returns
The response of your network call. Does not do error handling on your response.
- Return type