azure.purview.scanning.aio package¶
-
class
azure.purview.scanning.aio.
PurviewScanningClient
(endpoint: str, credential: AsyncTokenCredential, **kwargs: Any)[source]¶ Creates a Microsoft.Scanning management client.
- Variables
key_vault_connections (azure.purview.scanning.aio.operations.KeyVaultConnectionsOperations) – KeyVaultConnectionsOperations operations
classification_rules (azure.purview.scanning.aio.operations.ClassificationRulesOperations) – ClassificationRulesOperations operations
data_sources (azure.purview.scanning.aio.operations.DataSourcesOperations) – DataSourcesOperations operations
filters (azure.purview.scanning.aio.operations.FiltersOperations) – FiltersOperations operations
scans (azure.purview.scanning.aio.operations.ScansOperations) – ScansOperations operations
scan_result (azure.purview.scanning.aio.operations.ScanResultOperations) – ScanResultOperations operations
scan_rulesets (azure.purview.scanning.aio.operations.ScanRulesetsOperations) – ScanRulesetsOperations operations
system_scan_rulesets (azure.purview.scanning.aio.operations.SystemScanRulesetsOperations) – SystemScanRulesetsOperations operations
triggers (azure.purview.scanning.aio.operations.TriggersOperations) – TriggersOperations operations
- Parameters
-
send_request
(request: azure.core.rest._rest_py3.HttpRequest, **kwargs: Any) → Awaitable[azure.core.rest._rest_py3.AsyncHttpResponse][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 = await client.send_request(request) <AsyncHttpResponse: 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