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 1
1
# Release History
2
2
## 1.27.0 (unreleased)
3
- ### Features Added
4
3
5
4
### Bugs Fixed
6
5
- Fix for compute Instance, disableLocalAuth property should be depend on ssh public access enabled.
7
6
- Removing Git-related properties from job properties if a PAT token is detected in the repository URL.
8
7
8
+ ### Other Changes
9
+ - Hub and Project are officially GA'd and no longer experimental.
10
+
9
11
## 1.26.2 (2025-04-08)
10
12
11
13
### Bugs Fixed
Original file line number Diff line number Diff line change 6
6
7
7
from azure .ai .ml ._schema import StringTransformedEnum
8
8
from azure .ai .ml ._schema .workspace import WorkspaceSchema
9
- from azure .ai .ml ._utils ._experimental import experimental
10
9
from azure .ai .ml .constants import WorkspaceKind
11
10
12
11
13
- @experimental
14
12
class HubSchema (WorkspaceSchema ):
15
13
# additional_workspace_storage_accounts This field exists in the API, but is unused, and thus not surfaced yet.
16
14
kind = StringTransformedEnum (required = True , allowed_values = WorkspaceKind .HUB )
Original file line number Diff line number Diff line change 5
5
from marshmallow import fields
6
6
7
7
from azure .ai .ml ._schema import StringTransformedEnum
8
- from azure .ai .ml ._utils ._experimental import experimental
9
8
from azure .ai .ml ._schema .workspace import WorkspaceSchema
10
9
from azure .ai .ml .constants import WorkspaceKind
11
10
12
11
13
- @experimental
14
12
class ProjectSchema (WorkspaceSchema ):
15
13
kind = StringTransformedEnum (required = True , allowed_values = WorkspaceKind .PROJECT )
16
14
hub_id = fields .Str (required = True )
Original file line number Diff line number Diff line change 7
7
from azure .ai .ml ._restclient .v2024_10_01_preview .models import Workspace as RestWorkspace
8
8
from azure .ai .ml ._restclient .v2024_10_01_preview .models import WorkspaceHubConfig as RestWorkspaceHubConfig
9
9
from azure .ai .ml ._schema .workspace import HubSchema
10
- from azure .ai .ml ._utils ._experimental import experimental
11
10
from azure .ai .ml .constants ._common import WorkspaceKind
12
11
from azure .ai .ml .entities ._credentials import IdentityConfiguration
13
12
from azure .ai .ml .entities ._workspace .customer_managed_key import CustomerManagedKey
16
15
from azure .ai .ml .entities ._workspace .workspace import Workspace
17
16
18
17
19
- @experimental
20
18
class Hub (Workspace ):
21
19
"""A Hub is a special type of workspace that acts as a parent and resource container for lightweight child
22
20
workspaces called projects. Resources like the hub's storage account, key vault,
Original file line number Diff line number Diff line change 6
6
from typing import Any , Dict , Optional
7
7
8
8
from azure .ai .ml ._schema .workspace import ProjectSchema
9
- from azure .ai .ml ._utils ._experimental import experimental
10
9
from azure .ai .ml .constants ._common import WorkspaceKind
11
10
from azure .ai .ml .entities ._workspace .workspace import Workspace
12
11
13
12
14
13
# Effectively a lightweight wrapper around a v2 SDK workspace
15
- @experimental
16
14
class Project (Workspace ):
17
15
"""A Project is a lightweight object for orchestrating AI applications, and is parented by a hub.
18
16
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