Skip to content

Commit 1822a35

Browse files
joshharrinJosh Harrington
andauthored
Joharrington/managed network outbound rule operations fix (Azure#28975)
* remove public property * rerun tests --------- Co-authored-by: Josh Harrington <joharrington@microsoft.com>
1 parent 1f2c00b commit 1822a35

File tree

3 files changed

+762
-1019
lines changed

3 files changed

+762
-1019
lines changed

sdk/ml/azure-ai-ml/azure/ai/ml/_ml_client.py

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -297,7 +297,7 @@ def __init__(
297297
**app_insights_handler_kwargs,
298298
)
299299

300-
self._workspace_outbound_rule = WorkspaceOutboundRuleOperations(
300+
self._workspace_outbound_rules = WorkspaceOutboundRuleOperations(
301301
self._operation_scope,
302302
self._rp_service_client,
303303
self._operation_container,
@@ -562,14 +562,6 @@ def workspaces(self) -> WorkspaceOperations:
562562
"""
563563
return self._workspaces
564564

565-
@property
566-
def workspace_outbound_rule(self) -> WorkspaceOutboundRuleOperations:
567-
"""A collection of workspace managed network outbound rule related operations.
568-
:return: Workspace Outbound Rule operations
569-
:rtype: WorkspaceOutboundRuleOperations
570-
"""
571-
return self._workspace_outbound_rule
572-
573565
@property
574566
@experimental
575567
def registries(self) -> RegistryOperations:

0 commit comments

Comments
 (0)