File tree Expand file tree Collapse file tree 5 files changed +3
-9
lines changed
_schema/workspace/ai_workspaces
entities/_workspace/_ai_workspaces Expand file tree Collapse file tree 5 files changed +3
-9
lines changed Original file line number Diff line number Diff line change 11# Release History
22## 1.27.0 (unreleased)
3- ### Features Added
43
54### Bugs Fixed
65 - Fix for compute Instance, disableLocalAuth property should be depend on ssh public access enabled.
76 - Removing Git-related properties from job properties if a PAT token is detected in the repository URL.
87
8+ ### Other Changes
9+ - Hub and Project are officially GA'd and no longer experimental.
10+
911## 1.26.2 (2025-04-08)
1012
1113### Bugs Fixed
Original file line number Diff line number Diff line change 66
77from azure .ai .ml ._schema import StringTransformedEnum
88from azure .ai .ml ._schema .workspace import WorkspaceSchema
9- from azure .ai .ml ._utils ._experimental import experimental
109from azure .ai .ml .constants import WorkspaceKind
1110
1211
13- @experimental
1412class HubSchema (WorkspaceSchema ):
1513 # additional_workspace_storage_accounts This field exists in the API, but is unused, and thus not surfaced yet.
1614 kind = StringTransformedEnum (required = True , allowed_values = WorkspaceKind .HUB )
Original file line number Diff line number Diff line change 55from marshmallow import fields
66
77from azure .ai .ml ._schema import StringTransformedEnum
8- from azure .ai .ml ._utils ._experimental import experimental
98from azure .ai .ml ._schema .workspace import WorkspaceSchema
109from azure .ai .ml .constants import WorkspaceKind
1110
1211
13- @experimental
1412class ProjectSchema (WorkspaceSchema ):
1513 kind = StringTransformedEnum (required = True , allowed_values = WorkspaceKind .PROJECT )
1614 hub_id = fields .Str (required = True )
Original file line number Diff line number Diff line change 77from azure .ai .ml ._restclient .v2024_10_01_preview .models import Workspace as RestWorkspace
88from azure .ai .ml ._restclient .v2024_10_01_preview .models import WorkspaceHubConfig as RestWorkspaceHubConfig
99from azure .ai .ml ._schema .workspace import HubSchema
10- from azure .ai .ml ._utils ._experimental import experimental
1110from azure .ai .ml .constants ._common import WorkspaceKind
1211from azure .ai .ml .entities ._credentials import IdentityConfiguration
1312from azure .ai .ml .entities ._workspace .customer_managed_key import CustomerManagedKey
1615from azure .ai .ml .entities ._workspace .workspace import Workspace
1716
1817
19- @experimental
2018class Hub (Workspace ):
2119 """A Hub is a special type of workspace that acts as a parent and resource container for lightweight child
2220 workspaces called projects. Resources like the hub's storage account, key vault,
Original file line number Diff line number Diff line change 66from typing import Any , Dict , Optional
77
88from azure .ai .ml ._schema .workspace import ProjectSchema
9- from azure .ai .ml ._utils ._experimental import experimental
109from azure .ai .ml .constants ._common import WorkspaceKind
1110from azure .ai .ml .entities ._workspace .workspace import Workspace
1211
1312
1413# Effectively a lightweight wrapper around a v2 SDK workspace
15- @experimental
1614class Project (Workspace ):
1715 """A Project is a lightweight object for orchestrating AI applications, and is parented by a hub.
1816 Unlike a standard workspace, a project does not have a variety of sub-resources directly associated with it.
You can’t perform that action at this time.
0 commit comments