Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
9 changes: 8 additions & 1 deletion .vscode/cspell.json
Original file line number Diff line number Diff line change
Expand Up @@ -1678,7 +1678,14 @@
"ctxt",
"unflattened",
"deseralize",
"wday"
"wday",
"mros"
]
},
{
"filename": "sdk/devcenter/azure-developer-devcenter/azure/developer/devcenter/models/*.py",
"words": [
"vcpus"
]
},
{
Expand Down
73 changes: 73 additions & 0 deletions sdk/devcenter/azure-developer-devcenter/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,76 @@
# Release History

## 1.0.0 (2024-05-02)

This release targets Azure Dev Center 2023-04-01 General Available API, which is the same version as the previous 1.0.0-beta.3 release. The main improvement was the addition of models as Convenience API was enabled for the SDK.

### Features Added

- Added classes for each Dev Center concept.
- `models`:
- Catalog
- DevBox
- DevBoxAction
- DevBoxActionDelayResult
- DevBoxNextAction
- Environment
- EnvironmentDefinition
- EnvironmentDefinitionParameter
- EnvironmentType
- Error
- HardwareProfile
- ImageReference
- InnerError
- OperationDetails
- OSDisk
- Pool
- Project
- RemoteConnection
- Schedule
- StopOnDisconnectConfiguration
- StorageProfile

- `enums`:
- DevBoxActionDelayStatus
- DevBoxActionType
- DevBoxProvisioningState
- EnvironmentProvisioningState
- EnvironmentTypeStatus
- HibernateSupport
- LocalAdministratorStatus
- OperationStatus
- OSType
- ParameterType
- PoolHealthStatus
- PowerState
- ScheduledFrequency
- ScheduledType
- SkuName
- StopOnDisconnectEnableStatus


- Updated each previous client method to return the correspondent model. E.g. The response type for `get_dev_box` was updated from `JSON` to `DevBox` model.

### Breaking Changes

- Removed `filter` and `top` as optional request parameters from all list operations
- list_pools
- list_schedules
- list_dev_boxes
- list_all_dev_boxes
- list_all_dev_boxes_by_user
- list_projects
- list_environments
- list_all_environments
- list_environment_definitions
- list_environment_definitions_by_catalog
- list_environment_types
- list_catalogs

### Other Changes

- Added more samples

## 1.0.0b3 (2023-11-02)

This release updates the Azure DevCenter library to use the 2023-04-01 GA API.
Expand Down Expand Up @@ -42,3 +113,5 @@ This release updates the Azure DevCenter library to use the 2022-11-11-preview A
## 1.0.0b1 (2022-11-11)

- Initial version for the DevCenter service


Loading