azure.purview.scanning.aio package

class azure.purview.scanning.aio.PurviewScanningClient(credential: AsyncTokenCredential, endpoint: str, **kwargs: Any)[source]

Creates a Microsoft.Scanning management client.

Parameters
  • credential (AsyncTokenCredential) – Credential needed for the client to connect to Azure.

  • endpoint (str) – The scanning endpoint of your purview account. Example: https://{accountName}.scan.purview.azure.com.

async close()None[source]
async send_request(http_request: azure.purview.scanning.core.rest._rest_py3.HttpRequest, **kwargs: Any) → azure.purview.scanning.core.rest._rest_py3.AsyncHttpResponse[source]

Runs the network request through the client’s chained policies.

We have helper methods to create requests specific to this service in azure.purview.scanning.rest. Use these helper methods to create the request you pass to this method. See our example below:

>>> from azure.purview.scanning.rest import build_get_request
>>> request = build_get_request(key_vault_name)
<HttpRequest [GET], url: '/azureKeyVaults/{keyVaultName}'>
>>> response = await client.send_request(request)
<AsyncHttpResponse: 200 OK>

For more information on this code flow, see https://aka.ms/azsdk/python/protocol/quickstart

For advanced cases, you can also create your own HttpRequest and pass it in.

Parameters

http_request (HttpRequest) – The network request you want to make. Required.

Keyword Arguments

stream_response (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

AsyncHttpResponse