Load Testing API, gRPC: ConfigService.Get
Written by
Updated at November 26, 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
{
"config_id": "string"
}
Field |
Description |
config_id |
string ID of the config to return. |
config.Config
{
"id": "string",
"folder_id": "string",
"yaml_string": "string",
"name": "string",
"created_at": "google.protobuf.Timestamp",
"created_by": "string"
}
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 |
Creation timestamp. |
created_by |
string UA or SA that created the config. |