Load Testing API, gRPC: ConfigService.List
Retrieves the list of configs in the specified folder.
gRPC request
rpc List (ListConfigsRequest) returns (ListConfigsResponse)
ListConfigsRequest
{
"folderId": "string",
"pageSize": "int64",
"pageToken": "string",
"filter": "string"
}
Field |
Description |
folderId |
string ID of the folder to list configs in. |
pageSize |
int64 The maximum number of results per page to return. If the number of available |
pageToken |
string Page token. To get the next page of results, set |
filter |
string A filter expression that filters tests listed in the response. |
ListConfigsResponse
{
"configs": [
{
"id": "string",
"folderId": "string",
"yamlString": "string",
"name": "string",
"createdAt": "google.protobuf.Timestamp",
"createdBy": "string"
}
],
"nextPageToken": "string"
}
Field |
Description |
configs[] |
List of configs in the specified folder. |
nextPageToken |
string Token for getting the next page of the list. If the number of results is greater than Each subsequent page will have its own |
Config
Test config.
Field |
Description |
id |
string ID of the test config. Generated at creation time. |
folderId |
string ID of the folder that the config belongs to. |
yamlString |
string Config content in YAML format. |
name |
string Name of the config. |
createdAt |
Creation timestamp. |
createdBy |
string UA or SA that created the config. |