Load Testing API, gRPC: ConfigService.Create
Creates a test config in the specified folder.
gRPC request
rpc Create (CreateConfigRequest) returns (operation.Operation)
CreateConfigRequest
{
"folderId": "string",
// Includes only one of the fields `yamlString`
"yamlString": "string",
// end of the list of possible fields
"name": "string"
}
Field |
Description |
folderId |
string Required field. ID of the folder to create a config in. |
yamlString |
string Config content provided as a string in YAML format. Includes only one of the fields Config content. |
name |
string Name of the config. |
operation.Operation
{
"id": "string",
"description": "string",
"createdAt": "google.protobuf.Timestamp",
"createdBy": "string",
"modifiedAt": "google.protobuf.Timestamp",
"done": "bool",
"metadata": {
"configId": "string"
},
// Includes only one of the fields `error`, `response`
"error": "google.rpc.Status",
"response": {
"id": "string",
"folderId": "string",
"yamlString": "string",
"name": "string",
"createdAt": "google.protobuf.Timestamp",
"createdBy": "string"
}
// end of the list of possible fields
}
An Operation resource. For more information, see Operation.
Field |
Description |
id |
string ID of the operation. |
description |
string Description of the operation. 0-256 characters long. |
createdAt |
Creation timestamp. |
createdBy |
string ID of the user or service account who initiated the operation. |
modifiedAt |
The time when the Operation resource was last modified. |
done |
bool If the value is |
metadata |
Service-specific metadata associated with the operation. |
error |
The error result of the operation in case of failure or cancellation. Includes only one of the fields The operation result. |
response |
The normal response of the operation in case of success. Includes only one of the fields The operation result. |
CreateConfigMetadata
Field |
Description |
configId |
string ID of the config that is being created. |
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. |