Metadata-Version: 2.4
Name: azure-mgmt-purview
Version: 1.1.0b2
Summary: Microsoft Azure Purview Management Client Library for Python
Author-email: Microsoft Corporation <azpysdkhelp@microsoft.com>
License-Expression: MIT
Project-URL: repository, https://github.com/Azure/azure-sdk-for-python
Keywords: azure,azure sdk
Classifier: Development Status :: 4 - Beta
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: isodate>=0.6.1
Requires-Dist: azure-mgmt-core>=1.6.0
Requires-Dist: typing-extensions>=4.6.0
Dynamic: license-file

# Microsoft Azure SDK for Python

This is the Microsoft Azure Purview Management Client Library.
This package has been tested with Python 3.9+.
For a more complete view of Azure libraries, see the [azure sdk python release](https://aka.ms/azsdk/python/all).

## _Disclaimer_

_Azure SDK Python packages support for Python 2.7 has ended 01 January 2022. For more information and questions, please refer to https://github.com/Azure/azure-sdk-for-python/issues/20691_

## Getting started

### Prerequisites

- Python 3.9+ is required to use this package.
- [Azure subscription](https://azure.microsoft.com/free/)

### Install the package

```bash
pip install azure-mgmt-purview
pip install azure-identity
```

### Authentication

By default, [Azure Active Directory](https://aka.ms/awps/aad) token authentication depends on correct configuration of the following environment variables.

- `AZURE_CLIENT_ID` for Azure client ID.
- `AZURE_TENANT_ID` for Azure tenant ID.
- `AZURE_CLIENT_SECRET` for Azure client secret.

In addition, Azure subscription ID can be configured via environment variable `AZURE_SUBSCRIPTION_ID`.

With above configuration, client can be authenticated by following code:

```python
from azure.identity import DefaultAzureCredential
from azure.mgmt.purview import PurviewManagementClient
import os

sub_id = os.getenv("AZURE_SUBSCRIPTION_ID")
client = PurviewManagementClient(credential=DefaultAzureCredential(), subscription_id=sub_id)
```

## Examples

Code samples for this package can be found at:
- [Search Purview Management](https://docs.microsoft.com/samples/browse/?languages=python&term=Getting%20started%20-%20Managing&terms=Getting%20started%20-%20Managing) on docs.microsoft.com
- [Azure Python Mgmt SDK Samples Repo](https://aka.ms/azsdk/python/mgmt/samples)


## Troubleshooting

## Next steps

## Provide Feedback

If you encounter any bugs or have suggestions, please file an issue in the
[Issues](https://github.com/Azure/azure-sdk-for-python/issues)
section of the project. 

# Release History

## 1.1.0b2 (2026-04-01)

### Features Added

  - Client `PurviewManagementClient` added parameter `cloud_setting` in method `__init__`
  - Client `PurviewManagementClient` added method `send_request`
  - Client `PurviewManagementClient` added operation group `kafka_configurations`
  - Client `PurviewManagementClient` added operation group `features`
  - Client `PurviewManagementClient` added operation group `ingestion_private_endpoint_connections`
  - Client `PurviewManagementClient` added operation group `usages`
  - Model `Account` added property `properties`
  - Model `AccountProperties` added property `account_status`
  - Model `AccountProperties` added property `default_domain`
  - Model `AccountProperties` added property `ingestion_storage`
  - Model `AccountProperties` added property `managed_event_hub_state`
  - Model `AccountProperties` added property `managed_resources_public_network_access`
  - Model `AccountProperties` added property `merge_info`
  - Model `AccountProperties` added property `tenant_endpoint_state`
  - Model `PrivateEndpointConnection` added property `system_data`
  - Model `PrivateLinkResource` added property `system_data`
  - Model `ProxyResource` added property `system_data`
  - Added model `AccountMergeInfo`
  - Added model `AccountPropertiesAccountStatus`
  - Added enum `AccountProvisioningState`
  - Added enum `AccountSkuName`
  - Added model `AccountStatus`
  - Added model `AccountStatusErrorDetails`
  - Added model `BatchFeatureRequest`
  - Added model `BatchFeatureStatus`
  - Added model `Credentials`
  - Added enum `EventHubType`
  - Added enum `EventStreamingState`
  - Added enum `EventStreamingType`
  - Added model `IngestionStorage`
  - Added model `KafkaConfiguration`
  - Added enum `KafkaConfigurationIdentityType`
  - Added model `KafkaConfigurationProperties`
  - Added enum `ManagedEventHubState`
  - Added enum `ManagedIdentityType`
  - Added enum `MergeAccountType`
  - Added enum `MergeStatus`
  - Added enum `PrivateEndpointConnectionStatus`
  - Added model `PrivateEndpointConnectionStatusUpdateRequest`
  - Added model `PrivateEndpointConnectionStatusUpdateResponse`
  - Added model `QuotaName`
  - Added model `Resource`
  - Added enum `TenantEndpointState`
  - Added model `Usage`
  - Added model `UsageList`
  - Added model `UsageName`
  - Added operation group `FeaturesOperations`
  - Added operation group `IngestionPrivateEndpointConnectionsOperations`
  - Added operation group `KafkaConfigurationsOperations`
  - Added operation group `UsagesOperations`

### Breaking Changes

  - This version introduces new hybrid models which have dual dictionary and model nature. Please follow https://aka.ms/azsdk/python/migrate/hybrid-models for migration.
  - For the method breakings, please refer to https://aka.ms/azsdk/python/migrate/operations for migration.
  - Model `Account` moved instance variable `cloud_connectors`, `created_at`, `created_by`, `created_by_object_id`, `endpoints`, `friendly_name`, `managed_resource_group_name`, `managed_resources`, `private_endpoint_connections`, `provisioning_state` and `public_network_access` under property `properties`
  - Model `AccountEndpoints` deleted or renamed its instance variable `guardian`
  - Model `AccountPropertiesEndpoints` deleted or renamed its instance variable `guardian`
  - Deleted or renamed model `LastModifiedByType`
  - Deleted or renamed model `Name`
  - Deleted or renamed model `Status`
  - Deleted or renamed model `TrackedResource`
  - Deleted or renamed model `TrackedResourceSystemData`
  - Deleted or renamed model `Type`
  - Method `AccountsOperations.list_by_resource_group` changed its parameter `skip_token` from `positional_or_keyword` to `keyword_only`
  - Method `AccountsOperations.list_by_subscription` changed its parameter `skip_token` from `positional_or_keyword` to `keyword_only`
  - Method `DefaultAccountsOperations.get` changed its parameter `scope_tenant_id`/`scope_type`/`scope` from `positional_or_keyword` to `keyword_only`
  - Method `DefaultAccountsOperations.remove` changed its parameter `scope_tenant_id`/`scope_type`/`scope` from `positional_or_keyword` to `keyword_only`
  - Method `PrivateEndpointConnectionsOperations.list_by_account` changed its parameter `skip_token` from `positional_or_keyword` to `keyword_only`

### Other Changes

  - Deleted model `AccountList`/`AccountSkuAutoGenerated`/`OperationList`/`PrivateEndpointConnectionList`/`PrivateLinkResourceList` which actually were not used by SDK users

## 1.1.0b1 (2022-11-07)

### Features Added

  - Model AccountUpdateParameters has a new parameter identity
  - Model Identity has a new parameter user_assigned_identities

## 1.0.0 (2021-08-13)

**Features**

  - Model Account has a new parameter managed_resource_group_name
  - Model Account has a new parameter system_data
  - Model TrackedResource has a new parameter system_data
  - Model PrivateLinkResource has a new parameter properties
  - Added operation AccountsOperations.add_root_collection_admin
  - Added operation PrivateEndpointConnectionsOperations.begin_create_or_update

**Breaking changes**

  - Model PrivateLinkResource no longer has parameter required_zone_names
  - Model PrivateLinkResource no longer has parameter group_id
  - Model PrivateLinkResource no longer has parameter required_members
  - Model AccountUpdateParameters has a new signature
  - Removed operation PrivateEndpointConnectionsOperations.create_or_update

## 1.0.0b1 (2021-02-01)

* Initial Release
