Load Testing API, gRPC: ConfigService.Get
Статья создана
Обновлена 17 октября 2024 г.
Returns the specified config.
To get the list of all available configs, make a List request.
gRPC request
rpc Get (GetConfigRequest) returns (config.Config)
GetConfigRequest
{
"configId": "string"
}
Field |
Description |
configId |
string ID of the config to return. |
config.Config
{
"id": "string",
"folderId": "string",
"yamlString": "string",
"name": "string",
"createdAt": "google.protobuf.Timestamp",
"createdBy": "string"
}
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. |