[[reference-connector-sync_job_list]] //////// =========================================================================================================================== || || || || || || || ██████╗ ███████╗ █████╗ ██████╗ ███╗ ███╗███████╗ || || ██╔══██╗██╔════╝██╔══██╗██╔══██╗████╗ ████║██╔════╝ || || ██████╔╝█████╗ ███████║██║ ██║██╔████╔██║█████╗ || || ██╔══██╗██╔══╝ ██╔══██║██║ ██║██║╚██╔╝██║██╔══╝ || || ██║ ██║███████╗██║ ██║██████╔╝██║ ╚═╝ ██║███████╗ || || ╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝╚═════╝ ╚═╝ ╚═╝╚══════╝ || || || || || || This file is autogenerated, DO NOT send pull requests that changes this file directly. || || You should update the script that does the generation, which can be found in: || || https://github.com/elastic/elastic-client-generator-js || || || || You can run the script with the following command: || || npm run elasticsearch -- --version || || || || || || || =========================================================================================================================== //////// [discrete] === client.connector.syncJobList Get all connector sync jobs. Get information about all stored connector sync jobs listed by their creation date in ascending order. {ref}/list-connector-sync-jobs-api.html[{es} documentation] [discrete] ==== Function signature [source,ts] ---- (ConnectorSyncJobListRequest, options?): Promise ---- [discrete] ==== ConnectorSyncJobListRequest [pass] ++++
++++
interface ConnectorSyncJobListRequest extends <> {
  from?: number
  size?: number
  status?: ConnectorSyncStatus
  connector_id?: <>
  job_type?: ConnectorSyncJobType | ConnectorSyncJobType[]
}

[pass]
++++
++++ [discrete] ==== ConnectorSyncJobListResponse [pass] ++++
++++
interface ConnectorSyncJobListResponse {
  count: number
  results: ConnectorConnectorSyncJob[]
}

[pass]
++++
++++