Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
remove irrelevant changes
  • Loading branch information
Nethra Sashikar committed Oct 14, 2024
commit 789f7589155ab6ba629ae6dfe8efd6d0bffd9e38
Original file line number Diff line number Diff line change
Expand Up @@ -259,7 +259,7 @@ class ManagedNetwork:

:param isolation_mode: Isolation of the managed network, defaults to Disabled.
:type isolation_mode: str
:param firewall_sku: Firewall sku for FQDN rules on managed network.
:param firewall_sku: Firewall Sku for FQDN rules in AllowOnlyApprovedOutbound..
:type firewall_sku: str
:param outbound_rules: List of outbound rules for the managed network.
:type outbound_rules: List[~azure.ai.ml.entities.OutboundRule]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ def get(self, workspace_name: str, outbound_rule_name: str, **kwargs: Any) -> Ou
.. admonition:: Example:

.. literalinclude:: ../samples/ml_samples_workspace.py
:start-after: [START outbound_rule_get] ../tests/workspace/unittests/test_workspace_entity.py
:start-after: [START outbound_rule_get]
:end-before: [END outbound_rule_get]
:language: python
:dedent: 8
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -78,9 +78,7 @@ def test_workspace_load_yamls_to_test_outbound_rule_load(self):

assert workspace.managed_network is not None
assert workspace.managed_network.isolation_mode == IsolationMode.ALLOW_ONLY_APPROVED_OUTBOUND
print("ppll")
print(workspace.managed_network.firewall_sku)
print("popp")

rules = workspace.managed_network.outbound_rules
assert rules[0].name == "microsoft"
assert rules[0].destination == "microsoft.com"
Expand Down