|
44 | 44 | from azure.ai.ml._scope_dependent_operations import OperationConfig, OperationsContainer, OperationScope
|
45 | 45 | from azure.ai.ml._telemetry.logging_handler import get_appinsights_log_handler
|
46 | 46 | from azure.ai.ml._user_agent import USER_AGENT
|
| 47 | +from azure.ai.ml._utils._experimental import experimental |
47 | 48 | from azure.ai.ml._utils._http_utils import HttpPipeline
|
48 | 49 | from azure.ai.ml._utils._preflight_utils import get_deployments_operation
|
49 | 50 | from azure.ai.ml._utils._registry_utils import get_registry_client
|
50 | 51 | from azure.ai.ml._utils.utils import _is_https_url
|
51 |
| -from azure.ai.ml._utils._experimental import experimental |
52 | 52 | from azure.ai.ml.constants._common import AzureMLResourceType, DefaultOpenEncoding
|
53 | 53 | from azure.ai.ml.entities import (
|
54 | 54 | BatchDeployment,
|
|
59 | 59 | Environment,
|
60 | 60 | Index,
|
61 | 61 | Job,
|
| 62 | + MarketplaceSubscription, |
62 | 63 | Model,
|
63 | 64 | ModelBatchDeployment,
|
64 | 65 | OnlineDeployment,
|
65 | 66 | OnlineEndpoint,
|
66 | 67 | PipelineComponentBatchDeployment,
|
67 | 68 | Registry,
|
68 | 69 | Schedule,
|
69 |
| - Workspace, |
70 | 70 | ServerlessEndpoint,
|
71 |
| - MarketplaceSubscription, |
| 71 | + Workspace, |
72 | 72 | )
|
73 | 73 | from azure.ai.ml.entities._assets import WorkspaceAssetReference
|
74 | 74 | from azure.ai.ml.exceptions import ErrorCategory, ErrorTarget, ValidationException
|
|
77 | 77 | BatchEndpointOperations,
|
78 | 78 | ComponentOperations,
|
79 | 79 | ComputeOperations,
|
| 80 | + ConnectionsOperations, |
80 | 81 | DataOperations,
|
81 | 82 | DatastoreOperations,
|
82 | 83 | EnvironmentOperations,
|
83 | 84 | IndexOperations,
|
84 | 85 | JobOperations,
|
| 86 | + MarketplaceSubscriptionOperations, |
85 | 87 | ModelOperations,
|
86 | 88 | OnlineDeploymentOperations,
|
87 | 89 | OnlineEndpointOperations,
|
88 | 90 | RegistryOperations,
|
89 |
| - ConnectionsOperations, |
90 |
| - WorkspaceOperations, |
91 | 91 | ServerlessEndpointOperations,
|
92 |
| - MarketplaceSubscriptionOperations, |
| 92 | + WorkspaceOperations, |
93 | 93 | )
|
94 | 94 | from azure.ai.ml.operations._code_operations import CodeOperations
|
95 | 95 | from azure.ai.ml.operations._feature_set_operations import FeatureSetOperations
|
@@ -1033,6 +1033,7 @@ def marketplace_subscriptions(self) -> MarketplaceSubscriptionOperations:
|
1033 | 1033 | """
|
1034 | 1034 | return self._marketplace_subscriptions
|
1035 | 1035 |
|
| 1036 | + @property |
1036 | 1037 | def indexes(self) -> IndexOperations:
|
1037 | 1038 | """A collection of index related operations.
|
1038 | 1039 |
|
|
0 commit comments