メインコンテンツまでスキップ

listImportJobs()

Addedv2.5.x

This operation lists all existing import jobs regarding the specified collection.

public static String listImportJobs(String url, BaseListImportJobsRequest request)

Request Syntax

bulkImport.listImportJobs(
url,
request
)

PARAMETERS:

  • url (String) -

    Zilliz Cloud's Control Plane API endpoint. The endpoint URL should be in the following format:

    https://api.cloud.zilliz.com
  • request (BaseListImportRequest) -

    A BaseImportRequest instance.

RETURN TYPE:

String

RETURNS:

A list of import job IDs of the specified collection.

BaseListImportRequest

A BaseListImportRequest instance is implemented in CloudListImportRequest.

CloudListImportRequest

CloudListImportRequest.builder()
.apiKey(String apiKey)
.collectionName(String collectionName)
.build()

BUILDER METHODS:

  • apiKey(String apiKey)

    A valid Zilliz Cloud API key with sufficient permissions to manipulate the cluster.

  • collectionName(String collectionName)

    The name of the target collection of this operation.

Example