Skip to content

Commit 4646adf

Browse files
Copilotmsyyc
andauthored
Deprecate Azure Spring Apps management SDK for Python (#41413)
* Initial plan for issue * Deprecate azure-mgmt-appplatform SDK following service retirement Co-authored-by: msyyc <[email protected]> * Update EOL dates with placeholder retirement date Co-authored-by: msyyc <[email protected]> * Update CHANGELOG.md date from TBD to current date (2025-06-04) Co-authored-by: msyyc <[email protected]> * Add Azure Spring Apps retirement link to CHANGELOG and README Co-authored-by: msyyc <[email protected]> --------- Co-authored-by: copilot-swe-agent[bot] <[email protected]> Co-authored-by: msyyc <[email protected]>
1 parent 85e415a commit 4646adf

File tree

5 files changed

+10
-61
lines changed

5 files changed

+10
-61
lines changed

sdk/appplatform/azure-mgmt-appplatform/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Release History
22

3+
## 10.0.1 (2025-06-04)
4+
5+
### Other Changes
6+
7+
- This package has been deprecated and will no longer be maintained after 03-31-2025. This package will only receive security fixes until 03-31-2025. For more information, see the [Azure Spring Apps retirement announcement](https://aka.ms/asaretirement).
8+
39
## 10.0.0 (2024-10-29)
410

511
### Breaking Changes
Lines changed: 1 addition & 59 deletions
Original file line numberDiff line numberDiff line change
@@ -1,61 +1,3 @@
11
# Microsoft Azure SDK for Python
22

3-
This is the Microsoft Azure App Platform Management Client Library.
4-
This package has been tested with Python 3.8+.
5-
For a more complete view of Azure libraries, see the [azure sdk python release](https://aka.ms/azsdk/python/all).
6-
7-
## _Disclaimer_
8-
9-
_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_
10-
11-
## Getting started
12-
13-
### Prerequisites
14-
15-
- Python 3.8+ is required to use this package.
16-
- [Azure subscription](https://azure.microsoft.com/free/)
17-
18-
### Install the package
19-
20-
```bash
21-
pip install azure-mgmt-appplatform
22-
pip install azure-identity
23-
```
24-
25-
### Authentication
26-
27-
By default, [Azure Active Directory](https://aka.ms/awps/aad) token authentication depends on correct configure of following environment variables.
28-
29-
- `AZURE_CLIENT_ID` for Azure client ID.
30-
- `AZURE_TENANT_ID` for Azure tenant ID.
31-
- `AZURE_CLIENT_SECRET` for Azure client secret.
32-
33-
In addition, Azure subscription ID can be configured via environment variable `AZURE_SUBSCRIPTION_ID`.
34-
35-
With above configuration, client can be authenticated by following code:
36-
37-
```python
38-
from azure.identity import DefaultAzureCredential
39-
from azure.mgmt.appplatform import AppPlatformManagementClient
40-
import os
41-
42-
sub_id = os.getenv("AZURE_SUBSCRIPTION_ID")
43-
client = AppPlatformManagementClient(credential=DefaultAzureCredential(), subscription_id=sub_id)
44-
```
45-
46-
## Examples
47-
48-
Code samples for this package can be found at:
49-
- [Search App Platform Management](https://docs.microsoft.com/samples/browse/?languages=python&term=Getting%20started%20-%20Managing&terms=Getting%20started%20-%20Managing) on docs.microsoft.com
50-
- [Azure Python Mgmt SDK Samples Repo](https://aka.ms/azsdk/python/mgmt/samples)
51-
52-
53-
## Troubleshooting
54-
55-
## Next steps
56-
57-
## Provide Feedback
58-
59-
If you encounter any bugs or have suggestions, please file an issue in the
60-
[Issues](https://github.com/Azure/azure-sdk-for-python/issues)
61-
section of the project.
3+
This package has been deprecated and will no longer be maintained after 03-31-2025. This package will only receive security fixes until 03-31-2025. For more information, see the [Azure Spring Apps retirement announcement](https://aka.ms/asaretirement).

sdk/appplatform/azure-mgmt-appplatform/azure/mgmt/appplatform/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@
66
# Changes may cause incorrect behavior and will be lost if the code is regenerated.
77
# --------------------------------------------------------------------------
88

9-
VERSION = "10.0.0"
9+
VERSION = "10.0.1"

sdk/appplatform/azure-mgmt-appplatform/sdk_packaging.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,4 @@ package_doc_id = ""
66
is_stable = true
77
is_arm = true
88
title = "AppPlatformManagementClient"
9+
auto_update = false

sdk/appplatform/azure-mgmt-appplatform/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151
url="https://github.com/Azure/azure-sdk-for-python",
5252
keywords="azure, azure sdk", # update with search keywords relevant to the azure service / product
5353
classifiers=[
54-
"Development Status :: 5 - Production/Stable",
54+
"Development Status :: 7 - Inactive",
5555
"Programming Language :: Python",
5656
"Programming Language :: Python :: 3 :: Only",
5757
"Programming Language :: Python :: 3",

0 commit comments

Comments
 (0)