Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
124485a
Expand serialization smoke coverage (7 -> 23 cases, 46 assertions)
saanikaguptamicrosoft Jun 23, 2026
a7a4937
Add compute smoke coverage (Aml/Instance/Kubernetes/SynapseSpark/VM)
saanikaguptamicrosoft Jun 25, 2026
9e3b808
Add datastore smoke coverage (Blob/File/Gen1/Gen2/OneLake)
saanikaguptamicrosoft Jun 25, 2026
14ee1cd
Add asset smoke coverage (Model/Environment/Data/Code)
saanikaguptamicrosoft Jun 25, 2026
df842d7
Add online/batch endpoint smoke coverage (deployments excluded, docum…
saanikaguptamicrosoft Jun 25, 2026
ef83a7b
Add workspace + registry smoke coverage (connection excluded, documen…
saanikaguptamicrosoft Jun 25, 2026
39c3b78
Add component smoke coverage (Command/Spark)
saanikaguptamicrosoft Jun 25, 2026
20d9a6f
Add AutoML smoke coverage (classification/regression/forecasting/imag…
saanikaguptamicrosoft Jun 25, 2026
18de499
Add feature-store + data-import smoke coverage
saanikaguptamicrosoft Jun 25, 2026
8f7a5bb
Migrate compute entity family to arm_ml_service hybrid models
saanikaguptamicrosoft Jun 25, 2026
f3dc3e2
Delete v2022_12_01_preview restclient (compute migration follow-up)
saanikaguptamicrosoft Jun 25, 2026
82344a9
Migrate remaining 2022-10-01-preview consumers to arm_ml_service
saanikaguptamicrosoft Jun 25, 2026
0b0fa57
Delete v2022_10_01_preview restclient
saanikaguptamicrosoft Jun 25, 2026
2346e4c
Migrate 2023-02-01-preview consumers to arm_ml_service and delete the…
saanikaguptamicrosoft Jun 25, 2026
5d3ef61
Add monitoring smoke coverage (9 signal types) before v2023_06 migration
saanikaguptamicrosoft Jun 25, 2026
ced3219
Migrate 2023-06-01-preview consumers to arm_ml_service and delete the…
saanikaguptamicrosoft Jun 25, 2026
76db0a8
Fix CI regressions: compute msrest read path, ImportDataSchedule seri…
saanikaguptamicrosoft Jun 26, 2026
b06894c
Fix component smoke builder docstrings (drop Parallel + distribution,…
saanikaguptamicrosoft Jun 26, 2026
8302cf2
Merge branch 'main' into saanika/migrate-2022-10-and-smoke-coverage
saanikaguptamicrosoft Jun 26, 2026
c52d628
Merge branch 'main' into saanika/migrate-2022-10-and-smoke-coverage
mikeharder Jun 26, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
6 changes: 3 additions & 3 deletions sdk/ml/azure-ai-ml/azure/ai/ml/_ml_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,7 @@
from azure.ai.ml._restclient.v2020_09_01_dataplanepreview import (
AzureMachineLearningWorkspaces as ServiceClient092020DataplanePreview,
)
from azure.ai.ml._restclient.v2022_10_01_preview import AzureMachineLearningWorkspaces as ServiceClient102022Preview
from azure.ai.ml._restclient.v2023_02_01_preview import AzureMachineLearningWorkspaces as ServiceClient022023Preview
from azure.ai.ml._restclient.v2023_04_01_preview import AzureMachineLearningWorkspaces as ServiceClient042023Preview
from azure.ai.ml._restclient.v2023_06_01_preview import AzureMachineLearningWorkspaces as ServiceClient062023Preview
from azure.ai.ml._restclient.v2023_08_01_preview import AzureMachineLearningWorkspaces as ServiceClient082023Preview
from azure.ai.ml._restclient.v2024_01_01_preview import AzureMachineLearningWorkspaces as ServiceClient012024Preview
from azure.ai.ml._restclient.v2024_04_01_preview import AzureMachineLearningWorkspaces as ServiceClient042024Preview
Expand Down Expand Up @@ -105,6 +102,9 @@
ServiceClient042023 = partial(MachineLearningServicesMgmtClient, api_version="2023-04-01")
ServiceClient102023 = partial(MachineLearningServicesMgmtClient, api_version="2023-10-01")
ServiceClient022022Preview = partial(MachineLearningServicesMgmtClient, api_version="2022-02-01-preview")
ServiceClient102022Preview = partial(MachineLearningServicesMgmtClient, api_version="2022-10-01-preview")
ServiceClient022023Preview = partial(MachineLearningServicesMgmtClient, api_version="2023-02-01-preview")
ServiceClient062023Preview = partial(MachineLearningServicesMgmtClient, api_version="2023-06-01-preview")
ServiceClient012025Preview = partial(MachineLearningServicesMgmtClient, api_version="2025-01-01-preview")
ServiceClient102024PreviewTsp = partial(MachineLearningServicesMgmtClient, api_version="2024-10-01-preview")

Expand Down

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

Loading
Loading