Skip to content

Commit bd6ea77

Browse files
committed
change param name
1 parent 745a627 commit bd6ea77

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

jupiterone/client.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -964,13 +964,13 @@ def finalize_sync_job(self, instance_job_id: Optional[str] = None) -> Dict[str,
964964

965965
return response
966966

967-
def abort_sync_job(self, instance_job_id: Optional[str] = None) -> Dict[str, Any]:
967+
def abort_sync_job(self, sync_job_id: Optional[str] = None) -> Dict[str, Any]:
968968
"""Abort a synchronization job.
969969
970970
args:
971-
instance_job_id (str): The "Job ID" for the Custom Integration job to abort
971+
sync_job_id (str): The "Job ID" for the Custom Integration job to abort
972972
"""
973-
endpoint = f"/persister/synchronization/jobs/{instance_job_id}/abort"
973+
endpoint = f"/persister/synchronization/jobs/{sync_job_id}/abort"
974974

975975
data = {}
976976

0 commit comments

Comments
 (0)