Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

sasum/update-to-use-2024-01-preview #36444

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
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
Original file line number Diff line number Diff line change
Expand Up @@ -300,7 +300,7 @@ def list(

return cast(
Iterable[Job],
self._operation_2023_02_preview.list(
self.service_client_01_2024_preview.list(
self._operation_scope.resource_group_name,
self._workspace_name,
cls=lambda objs: [self._handle_rest_errors(obj) for obj in objs],
Expand Down Expand Up @@ -1027,7 +1027,7 @@ def _get_batch_job_scoring_output_uri(self, job_name: str) -> Optional[str]:
return uri

def _get_job(self, name: str) -> JobBase:
return self._operation_2023_02_preview.get(
return self.service_client_01_2024_preview.get(
id=name,
resource_group_name=self._operation_scope.resource_group_name,
workspace_name=self._workspace_name,
Expand Down
Loading