Skip to content

Commit

Permalink
[dagster-airbyte] Implement get_job_details method in AirbyteCloudClient
Browse files Browse the repository at this point in the history
  • Loading branch information
maximearmstrong committed Dec 17, 2024
1 parent 54820c2 commit 29fc024
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1003,6 +1003,9 @@ def start_sync_job(self, connection_id: str) -> Mapping[str, Any]:
},
)

def get_job_details(self, job_id: int) -> Mapping[str, Any]:
return self._make_request(method="GET", endpoint=f"jobs/{job_id}", base_url=self.rest_api_base_url)


@experimental
class AirbyteCloudWorkspace(ConfigurableResource):
Expand Down

0 comments on commit 29fc024

Please sign in to comment.