Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
40 commits
Select commit Hold shift + click to select a range
6acd702
Generate with models
drielenr Nov 28, 2023
b4efee4
Updates after arch board meetting. Missing enum rename.
drielenr Jan 9, 2024
f8af7e6
regen after merge main
drielenr Mar 6, 2024
b23683c
regen after tsp updates
drielenr Mar 6, 2024
6302464
Add script for custom tsp update
drielenr Mar 20, 2024
9552214
Update tsp commit in main and regen
drielenr Mar 20, 2024
5b61ea2
Update tests to use model
drielenr Apr 9, 2024
17e29d3
Break down tests
drielenr Apr 10, 2024
20f411f
Add samples
drielenr Apr 16, 2024
bd8982a
Add snippets and update readme
drielenr Apr 17, 2024
382a0cb
clean up imports
drielenr Apr 17, 2024
4e592f9
Update changelog
drielenr Apr 17, 2024
979e428
Update version
drielenr Apr 17, 2024
6c008b2
Fix samples
drielenr Apr 17, 2024
fb8a711
Fix formatting
drielenr Apr 17, 2024
a94d79a
Regen after merge main
drielenr Apr 17, 2024
3236403
update latest tsp commit
drielenr Apr 17, 2024
71b3ed7
Push recordings to assets repo and update tag reference
drielenr Apr 17, 2024
bdcd2d4
Add words to be ignored by cspell
drielenr Apr 22, 2024
01a4b5f
Revert removal of skip_quote
drielenr Apr 23, 2024
d349f09
Re-record failing tests and fix create dev box test
drielenr Apr 23, 2024
72378c4
fix vcpus cspell file path
drielenr Apr 23, 2024
b734a7e
Regen latest main
drielenr Apr 25, 2024
d94631c
Revert removal of skip_quote
drielenr Apr 23, 2024
61df66d
Regen using latest tsp
drielenr Apr 25, 2024
32e55eb
temp fix api version
drielenr Apr 25, 2024
a721ec1
Fix readme section reference
drielenr Apr 25, 2024
d2de546
Revert "temp fix api version"
drielenr Apr 26, 2024
0189bc6
Regen latest main
drielenr Apr 26, 2024
e4be831
Rename to Operation Status
drielenr Apr 26, 2024
2370d53
Use the lro model in test assertion
drielenr Apr 26, 2024
1671155
Update changelong
drielenr Apr 30, 2024
29f7aa2
Update readme and code snippets
drielenr Apr 30, 2024
54ccd83
Rename samples
drielenr Apr 30, 2024
af0cf75
add async tests and update recordings
leti367 May 10, 2024
db4871f
add aync samples
leti367 May 12, 2024
00da9e5
fix issue in async samples
leti367 May 14, 2024
6d28510
Update tests recordings
leti367 May 15, 2024
52460ca
Update tests and re-record tests
leti367 May 15, 2024
8199391
patch waiting in playback mode
leti367 May 16, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix formatting
  • Loading branch information
drielenr authored and leti367 committed May 14, 2024
commit fb8a711a4a6ba94e1818d36107a0a6bf0dc49d58
30 changes: 17 additions & 13 deletions sdk/devcenter/azure-developer-devcenter/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -90,13 +90,13 @@ except KeyError:
# Build a client through AAD
client = DevCenterClient(endpoint, credential=DefaultAzureCredential())

# List available Projects
# List available Projects
projects = client.list_projects()
if projects:
print("\nList of projects: ")
for project in projects:
print(f"{project.name}")

# Select first project in the list
target_project_name = list(projects)[0].name
else:
Expand All @@ -108,7 +108,7 @@ if pools:
print("\nList of pools: ")
for pool in pools:
print(f"{pool.name}")

# Select first pool in the list
target_pool_name = list(pools)[0].name
else:
Expand All @@ -128,7 +128,7 @@ remote_connection = client.get_remote_connection(target_project_name, "me", devb
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.")
print(f"Starting to delete dev box.")

delete_response = client.begin_delete_dev_box(target_project_name, "me", "Test_DevBox")
delete_result = delete_response.result()
Expand Down Expand Up @@ -157,19 +157,19 @@ except KeyError:
# Build a client through AAD
client = DevCenterClient(endpoint, credential=DefaultAzureCredential())

# List available Projects
# List available Projects
projects = client.list_projects()
if projects:
print("\nList of projects: ")
for project in projects:
print(f"{project.name}")

# Select first project in the list
target_project_name = list(projects)[0].name
else:
raise ValueError("Missing Project - please create one before running the example")
# List available Catalogs

# List available Catalogs
catalogs = client.list_catalogs(target_project_name)
if catalogs:
print("\nList of catalogs: ")
Expand All @@ -181,7 +181,7 @@ if catalogs:
else:
raise ValueError("Missing Catalog - please create one before running the example")

# List available Environment Definitions
# List available Environment Definitions
environment_definitions = client.list_environment_definitions_by_catalog(target_project_name, target_catalog_name)
if environment_definitions:
print("\nList of environment definitions: ")
Expand All @@ -193,7 +193,7 @@ if environment_definitions:
else:
raise ValueError("Missing Environment Definition - please create one before running the example")

# List available Environment Types
# List available Environment Types
environment_types = client.list_environment_types(target_project_name)
if environment_types:
print("\nList of environment types: ")
Expand All @@ -205,7 +205,9 @@ if environment_types:
else:
raise ValueError("Missing Environment Type - please create one before running the example")

print(f"\nStarting to create environment in project {target_project_name} with catalog {target_catalog_name}, environment definition {target_environment_definition_name}, and environment type {target_environment_type_name}.")
print(
f"\nStarting to create environment in project {target_project_name} with catalog {target_catalog_name}, environment definition {target_environment_definition_name}, and environment type {target_environment_type_name}."
)

# Stand up a new environment
environment_name = "MyDevEnv"
Expand All @@ -215,12 +217,14 @@ environment = {
"environmentDefinitionName": target_environment_definition_name,
}

create_response = client.begin_create_or_update_environment(target_project_name, "me", environment_name, environment)
create_response = client.begin_create_or_update_environment(
target_project_name, "me", environment_name, environment
)
environment_result = create_response.result()
print(f"Provisioned environment with status {environment_result.provisioning_state}.")

# Tear down the environment when finished
print(f"Starting to delete environment.")
print(f"Starting to delete environment.")
delete_response = client.begin_delete_environment(target_project_name, "me", environment_name)
delete_result = delete_response.result()
print(f"Completed deletion for the environment with status {delete_result.status}")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@
1) DEVCENTER_ENDPOINT - the endpoint for your devcenter
"""


def create_dev_center_client():
# [START create_dev_center_client]
import os
Expand All @@ -58,6 +59,7 @@ def create_dev_center_client():
client = DevCenterClient(endpoint, credential=DefaultAzureCredential())
# [END create_dev_center_client]


def dev_box_create_connect_delete():
# [START dev_box_create_connect_delete]
import os
Expand All @@ -75,13 +77,13 @@ def dev_box_create_connect_delete():
# Build a client through AAD
client = DevCenterClient(endpoint, credential=DefaultAzureCredential())

# List available Projects
# List available Projects
projects = client.list_projects()
if projects:
print("\nList of projects: ")
for project in projects:
print(f"{project.name}")

# Select first project in the list
target_project_name = list(projects)[0].name
else:
Expand All @@ -93,12 +95,12 @@ def dev_box_create_connect_delete():
print("\nList of pools: ")
for pool in pools:
print(f"{pool.name}")

# Select first pool in the list
target_pool_name = list(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 devbox in project {target_project_name} and pool {target_pool_name}")

Expand All @@ -113,13 +115,14 @@ def dev_box_create_connect_delete():
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.")
print(f"Starting to delete dev box.")

delete_response = client.begin_delete_dev_box(target_project_name, "me", "Test_DevBox")
delete_result = delete_response.result()
print(f"Completed deletion for the dev box with status {delete_result.status}")
# [END dev_box_create_connect_delete]


if __name__ == "__main__":
create_dev_center_client()
dev_box_create_connect_delete()
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@
1) DEVCENTER_ENDPOINT - the endpoint for your devcenter
"""


def environment_create_and_delete():
# [START environment_create_and_delete]
import os
Expand All @@ -57,19 +58,19 @@ def environment_create_and_delete():
# Build a client through AAD
client = DevCenterClient(endpoint, credential=DefaultAzureCredential())

# List available Projects
# List available Projects
projects = client.list_projects()
if projects:
print("\nList of projects: ")
for project in projects:
print(f"{project.name}")

# Select first project in the list
target_project_name = list(projects)[0].name
else:
raise ValueError("Missing Project - please create one before running the example")
# List available Catalogs

# List available Catalogs
catalogs = client.list_catalogs(target_project_name)
if catalogs:
print("\nList of catalogs: ")
Expand All @@ -81,7 +82,7 @@ def environment_create_and_delete():
else:
raise ValueError("Missing Catalog - please create one before running the example")

# List available Environment Definitions
# List available Environment Definitions
environment_definitions = client.list_environment_definitions_by_catalog(target_project_name, target_catalog_name)
if environment_definitions:
print("\nList of environment definitions: ")
Expand All @@ -92,8 +93,8 @@ def environment_create_and_delete():
target_environment_definition_name = list(environment_definitions)[0].name
else:
raise ValueError("Missing Environment Definition - please create one before running the example")
# List available Environment Types

# List available Environment Types
environment_types = client.list_environment_types(target_project_name)
if environment_types:
print("\nList of environment types: ")
Expand All @@ -105,7 +106,9 @@ def environment_create_and_delete():
else:
raise ValueError("Missing Environment Type - please create one before running the example")

print(f"\nStarting to create environment in project {target_project_name} with catalog {target_catalog_name}, environment definition {target_environment_definition_name}, and environment type {target_environment_type_name}.")
print(
f"\nStarting to create environment in project {target_project_name} with catalog {target_catalog_name}, environment definition {target_environment_definition_name}, and environment type {target_environment_type_name}."
)

# Stand up a new environment
environment_name = "MyDevEnv"
Expand All @@ -115,16 +118,19 @@ def environment_create_and_delete():
"environmentDefinitionName": target_environment_definition_name,
}

create_response = client.begin_create_or_update_environment(target_project_name, "me", environment_name, environment)
create_response = client.begin_create_or_update_environment(
target_project_name, "me", environment_name, environment
)
environment_result = create_response.result()
print(f"Provisioned environment with status {environment_result.provisioning_state}.")

# Tear down the environment when finished
print(f"Starting to delete environment.")
print(f"Starting to delete environment.")
delete_response = client.begin_delete_environment(target_project_name, "me", environment_name)
delete_result = delete_response.result()
print(f"Completed deletion for the environment with status {delete_result.status}")
# [END environment_create_and_delete]


if __name__ == "__main__":
environment_create_and_delete()
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@
1) DEVCENTER_ENDPOINT - the endpoint for your devcenter
"""


def main():

# Set the values of the dev center endpoint, client ID, and client secret of the AAD application as environment variables:
Expand All @@ -58,19 +59,19 @@ def main():
# Build a client through AAD
client = DevCenterClient(endpoint, credential=DefaultAzureCredential())

# List Dev Boxes
# List Dev Boxes
dev_boxes = client.list_all_dev_boxes_by_user("me")
if dev_boxes:
print("List of dev boxes: ")
for dev_box in dev_boxes:
print(f"{dev_box.name}")

# Select first dev box in the list
target_dev_box = list(dev_boxes)[0]
else:
raise ValueError("Missing Dev Box - please create one before running the example.")

# Get the schedule default action. This action should exist for dev boxes created with auto-stop enabled
# Get the schedule default action. This action should exist for dev boxes created with auto-stop enabled
action = client.get_dev_box_action(target_dev_box.project_name, "me", target_dev_box.name, "schedule-default")
next_action_time = action.next.scheduled_time
print(f"\nAction {action.Name} is schedule to {action.ActionType} at {next_action_time}.")
Expand All @@ -80,11 +81,14 @@ def main():
delayed_action = client.delay_dev_box_action(
target_dev_box.project_name, "me", target_dev_box.name, action.name, delay_until=delay_until
)
print(f"\nAction {delayed_action.Name} has been delayed and is now schedule to {delayed_action.ActionType} at {delayed_action.NextAction.ScheduledTime}.")

print(
f"\nAction {delayed_action.Name} has been delayed and is now schedule to {delayed_action.ActionType} at {delayed_action.NextAction.ScheduledTime}."
)

# Skip the default schedule action
client.skip_dev_box_action(target_dev_box.project_name, "me", target_dev_box.name, "schedule-default")
print(f"\nThe scheduled auto-stop action in dev box {target_dev_box.name} has been skipped")


if __name__ == "__main__":
main()
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@
1) DEVCENTER_ENDPOINT - the endpoint for your devcenter
"""


def main():

# Set the values of the dev center endpoint, client ID, and client secret of the AAD application as environment variables:
Expand All @@ -57,25 +58,25 @@ def main():
# Build a client through AAD
client = DevCenterClient(endpoint, credential=DefaultAzureCredential())

# List Dev Boxes
# List Dev Boxes
dev_boxes = client.list_all_dev_boxes_by_user("me")
if dev_boxes:
print("List of dev boxes: ")
for dev_box in dev_boxes:
print(f"{dev_box.name}")

# Select first dev box in the list
target_dev_box = list(dev_boxes)[0]
else:
raise ValueError("Missing Dev Box - please create one before running the example.")

# Get the target dev box properties
project_name = target_dev_box.project_name
user = target_dev_box.user
dev_box_name = target_dev_box.name

# Stop dev box if it's running
if target_dev_box.power_state == PowerState.Running :
if target_dev_box.power_state == PowerState.Running:
stop_response = client.begin_stop_dev_box(project_name, user, dev_box_name)
stop_result = stop_response.result()
print(f"Stopping dev box completed with status {stop_result.status}")
Expand All @@ -90,5 +91,6 @@ def main():
restart_result = restart_response.result()
print(f"Done restarting the dev box with status {start_result.status}")


if __name__ == "__main__":
main()
Loading