[Azure Load Testing] Updating python SDK to new data plane api version 2025-11-01-preview#44665
Open
Himanshu49 wants to merge 2 commits intoAzure:mainfrom
Open
[Azure Load Testing] Updating python SDK to new data plane api version 2025-11-01-preview#44665Himanshu49 wants to merge 2 commits intoAzure:mainfrom
Himanshu49 wants to merge 2 commits intoAzure:mainfrom
Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
This PR updates the Azure Load Testing Python SDK to the new data plane API version 2025-11-01-preview. The SDK is generated using TypeSpec from an updated API specification.
Changes:
- Updated API version from an older version to
2025-11-01-preview - Added support for new features including triggers, notification rules, test run insights, and operation status tracking
- Updated build configuration from setup.py to pyproject.toml (PEP 517/518 compliance)
- Added trailing commas and formatting improvements across test files
Reviewed changes
Copilot reviewed 87 out of 90 changed files in this pull request and generated no comments.
Show a summary per file
| File | Description |
|---|---|
| tsp-location.yaml | Updated TypeSpec directory path and commit hash for API generation |
| setup.py | Deleted setup.py as build config moved to pyproject.toml |
| pyproject.toml | Added modern Python packaging configuration with build-system metadata |
| tests/*.py | Added trailing commas, whitespace cleanup, and formatting fixes |
| samples/*.py | Added pylint disable comments for line-too-long checks |
| generated_tests/*.py | New auto-generated test files for API coverage |
| generated_samples/*.py | New auto-generated sample files for various operations |
| models/_models.py | Added new model classes for triggers, notifications, recurrence, insights, and operations |
| models/_enums.py | Added new enum types for frequencies, trigger states, notification events, and operation kinds |
| models/init.py | Exported new models and enums |
| _operations/_patch.py | Updated import names for generated operation mixins |
| _metadata.json | New file storing API version metadata |
API Change CheckAPIView identified API level changes in this PR and created the following API reviews |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
Generated new sdk for data plane api version 2025-11-01-preview
SDK is generated with the help of typespec
API spec change PR - Azure/azure-rest-api-specs#39372
All SDK Contribution checklist:
General Guidelines and Best Practices
Testing Guidelines