File: dev_box_create_async_sample.py

package info (click to toggle)
python-azure 20250603%2Bgit-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 851,724 kB
  • sloc: python: 7,362,925; ansic: 804; javascript: 287; makefile: 195; sh: 145; xml: 109
file content (114 lines) | stat: -rw-r--r-- 4,875 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
# coding=utf-8
# --------------------------------------------------------------------------
#
# Copyright (c) Microsoft Corporation. All rights reserved.
#
# The MIT License (MIT)
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the ""Software""), to
# deal in the Software without restriction, including without limitation the
# rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
# sell copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
# IN THE SOFTWARE.
#
# --------------------------------------------------------------------------
"""
FILE: dev_box_create_async_sample.py

DESCRIPTION:
    This sample demonstrates how to create, connect and delete a dev box using python DevCenterClient. For this sample,
    you must have previously configured DevCenter, Project, Network Connection, Dev Box Definition, and Pool.More details 
    on how to configure those requirements at https://learn.microsoft.com/azure/dev-box/quickstart-configure-dev-box-service


USAGE:
    python dev_box_create_async_sample.py

    Set the environment variables with your own values before running the sample:
    1) DEVCENTER_ENDPOINT - the endpoint for your devcenter
"""
import os
import asyncio

from azure.developer.devcenter.aio import DevCenterClient
from azure.identity import DefaultAzureCredential

async def dev_box_create_connect_delete_async():
    # [START dev_box_create_connect_delete_async]
    # Set the values of the dev center endpoint, client ID, and client secret of the AAD application as environment variables:
    # DEVCENTER_ENDPOINT, AZURE_TENANT_ID, AZURE_CLIENT_ID, AZURE_CLIENT_SECRET
    try:
        endpoint = os.environ["DEVCENTER_ENDPOINT"]
    except KeyError:
        raise ValueError("Missing environment variable 'DEVCENTER_ENDPOINT' - please set it before running the example")

    # Build a client through AAD
    client = DevCenterClient(endpoint, credential=DefaultAzureCredential())

    async with client:
        # List available Projects
        projects = []
        async for project in client.list_projects():
            projects.append(project)
        if projects:
            print("\nList of projects: ")
            for project in projects:
                print(f"{project.name}")
    
            # Select first project in the list
            target_project_name = projects[0].name
        else:
            raise ValueError("Missing Project - please create one before running the example")
    
        # List available Pools
        pools = []
        async for pool in client.list_pools(target_project_name):
            pools.append(pool)
        if pools:
            print("\nList of pools: ")
            for pool in pools:
                print(f"{pool.name}")
    
            # Select first pool in the list
            target_pool_name = pools[0].name
        else:
            raise ValueError("Missing Pool - please create one before running the example")
    
        # Stand up a new Dev Box
        print(f"\nStarting to create dev box in project {target_project_name} and pool {target_pool_name}")
    
        dev_box_poller = await client.begin_create_dev_box(
            target_project_name, "me", "Test_DevBox", {"poolName": target_pool_name}
        )
        dev_box = await dev_box_poller.result()
        print(f"Provisioned dev box with status {dev_box.provisioning_state}.")
    
        # Connect to the provisioned Dev Box
        remote_connection = await client.get_remote_connection(target_project_name, "me", dev_box.name)
        print(f"Connect to the dev box using web URL {remote_connection.web_url}")
    
        # Tear down the Dev Box when finished
        print(f"Starting to delete dev box.")
    
        delete_poller = await client.begin_delete_dev_box(target_project_name, "me", "Test_DevBox")
        delete_result = await delete_poller.result()
        print(f"Completed deletion for the dev box with status {delete_result.status}")
    # [END dev_box_create_connect_delete_async]

async def main():
    await dev_box_create_connect_delete_async()

if __name__ == '__main__':
    asyncio.run(main())