Skip to content

Commit c45cc5b

Browse files
authored
addressing api review comment (Azure#39564)
* addressing api review comment * removing unnecessary changelog
1 parent 4c9ea5e commit c45cc5b

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

sdk/ml/azure-ai-ml/azure/ai/ml/operations/_compute_operations.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -424,7 +424,7 @@ def list_sizes(self, *, location: Optional[str] = None, compute_type: Optional[s
424424
@distributed_trace
425425
@monitor_with_activity(ops_logger, "Compute.enablesso", ActivityType.PUBLICAPI)
426426
@experimental
427-
def enable_sso(self, *, name: str, enable_sso: bool = True) -> None:
427+
def enable_sso(self, *, name: str, enable_sso: bool = True, **kwargs: Any) -> None:
428428
"""enable sso for a compute instance.
429429
430430
:keyword name: Name of the compute instance.
@@ -439,6 +439,7 @@ def enable_sso(self, *, name: str, enable_sso: bool = True) -> None:
439439
self._workspace_name,
440440
name,
441441
parameters=SsoSetting(enable_sso=enable_sso),
442+
**kwargs,
442443
)
443444

444445
def _get_workspace_location(self) -> str:

0 commit comments

Comments
 (0)