azure.purview.catalog package¶
-
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
entity (azure.purview.catalog.operations.EntityOperations) – EntityOperations operations
glossary (azure.purview.catalog.operations.GlossaryOperations) – GlossaryOperations operations
discovery (azure.purview.catalog.operations.DiscoveryOperations) – DiscoveryOperations operations
lineage (azure.purview.catalog.operations.LineageOperations) – LineageOperations operations
relationship (azure.purview.catalog.operations.RelationshipOperations) – RelationshipOperations operations
types (azure.purview.catalog.operations.TypesOperations) – TypesOperations operations
collection (azure.purview.catalog.operations.CollectionOperations) – CollectionOperations operations
- 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", "https://www.example.org/") <HttpRequest [GET], url: 'https://www.example.org/'> >>> response = client.send_request(request) <HttpResponse: 200 OK>
For more information on this code flow, see https://aka.ms/azsdk/python/protocol/quickstart
- 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