You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[AutoRelease] t2-extendedlocation-2023-02-14-61697(can only be merged by SDK owner) (Azure#28796)
* code and test
* update version
---------
Co-authored-by: PythonSdkPipelines <PythonSdkPipelines>
Co-authored-by: Zhenbiao Wei (WICRESOFT NORTH AMERICA LTD) <[email protected]>
Copy file name to clipboardexpand all lines: sdk/extendedlocation/azure-mgmt-extendedlocation/README.md
+41-8
Original file line number
Diff line number
Diff line change
@@ -1,26 +1,59 @@
1
1
# Microsoft Azure SDK for Python
2
2
3
3
This is the Microsoft Azure Extended Location Management Client Library.
4
-
This package has been tested with Python 3.6+.
4
+
This package has been tested with Python 3.7+.
5
5
For a more complete view of Azure libraries, see the [azure sdk python release](https://aka.ms/azsdk/python/all).
6
6
7
7
## _Disclaimer_
8
8
9
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
10
11
-
#Usage
11
+
## Getting started
12
12
13
+
### Prerequisites
13
14
14
-
To learn how to use this package, see the [quickstart guide](https://aka.ms/azsdk/python/mgmt)
For docs and references, see [Python SDK References](https://docs.microsoft.com/python/api/overview/azure/)
19
-
Code samples for this package can be found at [Extended Location Management](https://docs.microsoft.com/samples/browse/?languages=python&term=Getting%20started%20-%20Managing&terms=Getting%20started%20-%20Managing) on docs.microsoft.com.
20
-
Additional code samples for different Azure services are available at [Samples Repo](https://aka.ms/azsdk/python/mgmt/samples)
20
+
```bash
21
+
pip install azure-mgmt-extendedlocation
22
+
pip install azure-identity
23
+
```
21
24
25
+
### Authentication
22
26
23
-
# Provide Feedback
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.extendedlocation import CustomLocations
Code samples for this package can be found at [Extended Location Management](https://docs.microsoft.com/samples/browse/?languages=python&term=Getting%20started%20-%20Managing&terms=Getting%20started%20-%20Managing) on docs.microsoft.com and [Samples Repo](https://aka.ms/azsdk/python/mgmt/samples)
50
+
51
+
52
+
## Troubleshooting
53
+
54
+
## Next steps
55
+
56
+
## Provide Feedback
24
57
25
58
If you encounter any bugs or have suggestions, please file an issue in the
0 commit comments