Skip to content

Commit ba70f50

Browse files
authored
Minor root readme and mgmt quickstart update for Track 2 mgmt sdk (#12112)
* Update mgmt quickstart
1 parent d662b54 commit ba70f50

File tree

2 files changed

+9
-3
lines changed

2 files changed

+9
-3
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ Last stable versions of packages that have been provided for usage with Azure an
3636

3737
### Management: New Releases
3838
A new set of management libraries that follow the [Azure SDK Design Guidelines for Python](https://azure.github.io/azure-sdk/python/guidelines/) are now in Public Preview. These new libraries provide a number of core capabilities that are shared amongst all Azure SDKs, including the intuitive Azure Identity library, an HTTP Pipeline with custom policies, error-handling, distributed tracing, and much more.
39-
You can find the list of new packages [on this page](https://azure.github.io/azure-sdk/releases/latest/python.html). Documentation and code samples for these new libraries can be found [here](https://azure.github.io/azure-sdk-for-python)
39+
You can find the list of new packages [on this page](https://azure.github.io/azure-sdk/releases/latest/python.html). Documentation and for these new libraries can be found [here](https://azure.github.io/azure-sdk-for-python). Code samples can also be viewed [here](https://docs.microsoft.com/samples/browse/?languages=python&term=Getting%20started%20-%20Managing)
4040

4141
> NOTE: If you need to ensure your code is ready for production use one of the stable, non-preview libraries.
4242

doc/sphinx/mgmt_preview_quickstart.rst

+8-2
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,9 @@ Async and sync operations
204204
-------------------------
205205
In python>=3.5, Azure Python SDK provides the choice for user to use the asynchronous client for asynchronous programming.
206206

207-
**Create Management Client in async**
207+
Note that asyncio in Windows is underpowered and please take caution when using async operations on Windows systems
208+
209+
**Create Async Management Client**
208210
::
209211

210212
from azure.identity.aio import DefaultAzureCredential
@@ -222,7 +224,7 @@ In python>=3.5, Azure Python SDK provides the choice for user to use the asynchr
222224
subscription_id=SUBSCRIPTION_ID
223225
)
224226

225-
**Create a Network Public IP Address**
227+
**Create a Network Public IP Address Async**
226228
::
227229

228230
GROUP_NAME = "testgroup"
@@ -244,6 +246,10 @@ In python>=3.5, Azure Python SDK provides the choice for user to use the asynchr
244246
)
245247
public_ip_address = await async_poller.result()
246248
print("Create Public IP Address:\n{}".format(public_ip_address))
249+
250+
Code Samples
251+
-------------------------
252+
For more code samples, please see `here <https://docs.microsoft.com/samples/browse/?languages=python&term=Getting%20started%20-%20Managing>`__
247253

248254
Need help?
249255
----------

0 commit comments

Comments
 (0)