diff --git a/NEXT_CHANGELOG.md b/NEXT_CHANGELOG.md index 395a1a32c..40a348998 100644 --- a/NEXT_CHANGELOG.md +++ b/NEXT_CHANGELOG.md @@ -4,6 +4,8 @@ ### New Features and Improvements +- Update the datatype of job_id parameter in the jobs API's update_permissions to be consistent with the other parts of the same API + ### Bug Fixes ### Documentation diff --git a/databricks/sdk/service/jobs.py b/databricks/sdk/service/jobs.py index 5be08ce72..1eac25692 100755 --- a/databricks/sdk/service/jobs.py +++ b/databricks/sdk/service/jobs.py @@ -9752,7 +9752,7 @@ def update( self._api.do("POST", "/api/2.2/jobs/update", body=body, headers=headers) def update_permissions( - self, job_id: str, *, access_control_list: Optional[List[JobAccessControlRequest]] = None + self, job_id: int, *, access_control_list: Optional[List[JobAccessControlRequest]] = None ) -> JobPermissions: """Update job permissions.