Yandex Cloud
Search
Contact UsGet started
  • Blog
  • Pricing
  • Documentation
  • All Services
  • System Status
    • Featured
    • Infrastructure & Network
    • Data Platform
    • Containers
    • Developer tools
    • Serverless
    • Security
    • Monitoring & Resources
    • ML & AI
    • Business tools
  • All Solutions
    • By industry
    • By use case
    • Economics and Pricing
    • Security
    • Technical Support
    • Customer Stories
    • Start testing with double trial credits
    • Cloud credits to scale your IT product
    • Gateway to Russia
    • Cloud for Startups
    • Education and Science
    • Yandex Cloud Partner program
  • Blog
  • Pricing
  • Documentation
© 2025 Direct Cursus Technology L.L.C.
Yandex Foundation Models
    • Overview
    • API authentication
        • Overview
          • Overview
            • Overview
            • BatchCreate
            • Get
            • List
  • Yandex Cloud ML SDK
  • Compatibility with OpenAI
  • Access management
  • Pricing policy
  • Public materials
  • Release notes

In this article:

  • gRPC request
  • ListSearchIndexFilesRequest
  • ListSearchIndexFilesResponse
  • SearchIndexFile
  1. API references
  2. AI Assistant API
  3. gRPC
  4. Search Index
  5. SearchIndexFile
  6. List

Search Index, gRPC: SearchIndexFileService.List

Written by
Yandex Cloud
Updated at November 26, 2024
  • gRPC request
  • ListSearchIndexFilesRequest
  • ListSearchIndexFilesResponse
  • SearchIndexFile

List files that are indexed within a specific search index.

gRPC requestgRPC request

rpc List (ListSearchIndexFilesRequest) returns (ListSearchIndexFilesResponse)

ListSearchIndexFilesRequestListSearchIndexFilesRequest

{
  "search_index_id": "string",
  "page_size": "int64",
  "page_token": "string"
}

Request message for listing files in a specific search index.

Field

Description

search_index_id

string

Required field. ID of the search index whose files will be listed.

page_size

int64

Maximum number of files to return per page.

page_token

string

Token to retrieve the next page of results.

ListSearchIndexFilesResponseListSearchIndexFilesResponse

{
  "files": [
    {
      "id": "string",
      "search_index_id": "string",
      "created_by": "string",
      "created_at": "google.protobuf.Timestamp"
    }
  ],
  "next_page_token": "string"
}

Response message for the list operation.

Field

Description

files[]

SearchIndexFile

List of files in the specified search index.

next_page_token

string

Token to retrieve the next page of results.

SearchIndexFileSearchIndexFile

Represents a file that has been indexed within a search index.

Field

Description

id

string

Unique identifier of the file that was used for indexing.

search_index_id

string

ID of the search index that contains this file.

created_by

string

Identifier of the subject who created the file in the search index.

created_at

google.protobuf.Timestamp

Timestamp representing when the file was created.

Was the article helpful?

Previous
Get
Next
Overview
© 2025 Direct Cursus Technology L.L.C.