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
    • 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 Load Testing
  • Getting started
  • Access management
  • Pricing policy
  • Terraform reference
    • Authentication with the API
      • Overview
        • Overview
        • Create
        • Get
        • List
        • Delete
  • Audit Trails events
  • Release notes

In this article:

  • gRPC request
  • ListConfigsRequest
  • ListConfigsResponse
  • Config
  1. API reference
  2. gRPC
  3. Config
  4. List

Load Testing API, gRPC: ConfigService.List

Written by
Yandex Cloud
Updated at November 26, 2024
  • gRPC request
  • ListConfigsRequest
  • ListConfigsResponse
  • Config

Retrieves the list of configs in the specified folder.

gRPC requestgRPC request

rpc List (ListConfigsRequest) returns (ListConfigsResponse)

ListConfigsRequestListConfigsRequest

{
  "folder_id": "string",
  "page_size": "int64",
  "page_token": "string",
  "filter": "string"
}

Field

Description

folder_id

string

ID of the folder to list configs in.

page_size

int64

The maximum number of results per page to return. If the number of available
results is larger than page_size, the service returns a ListConfigsResponse.next_page_token
that can be used to get the next page of results in subsequent list requests.
Default value: 100.

page_token

string

Page token. To get the next page of results, set page_token to the
ListConfigsResponse.next_page_token returned by a previous list request.

filter

string

A filter expression that filters tests listed in the response.

ListConfigsResponseListConfigsResponse

{
  "configs": [
    {
      "id": "string",
      "folder_id": "string",
      "yaml_string": "string",
      "name": "string",
      "created_at": "google.protobuf.Timestamp",
      "created_by": "string"
    }
  ],
  "next_page_token": "string"
}

Field

Description

configs[]

Config

List of configs in the specified folder.

next_page_token

string

Token for getting the next page of the list. If the number of results is greater than
the specified ListConfigsRequest.page_size, use next_page_token as the value
for the ListConfigsRequest.page_token parameter in the next list request.

Each subsequent page will have its own next_page_token to continue paging through the results.

ConfigConfig

Test config.

Field

Description

id

string

ID of the test config. Generated at creation time.

folder_id

string

ID of the folder that the config belongs to.

yaml_string

string

Config content in YAML format.

name

string

Name of the config.

created_at

google.protobuf.Timestamp

Creation timestamp.

created_by

string

UA or SA that created the config.

Was the article helpful?

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