aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/libs/yandex-cloud-api-protos/yandex/cloud/loadtesting/api/v1/test/details.proto
diff options
context:
space:
mode:
authoriddqd <iddqd@yandex-team.com>2024-06-11 10:12:13 +0300
committeriddqd <iddqd@yandex-team.com>2024-06-11 10:22:43 +0300
commit07f57e35443ab7f09471caf2dbf1afbcced4d9f7 (patch)
treea4a7b66ead62e83fa988a2ec2ce6576311c1f4b1 /contrib/libs/yandex-cloud-api-protos/yandex/cloud/loadtesting/api/v1/test/details.proto
parent6db3b8ca95e44179e48306a58656fb1f9317d9c3 (diff)
downloadydb-07f57e35443ab7f09471caf2dbf1afbcced4d9f7.tar.gz
add contrib/python/yandexcloud to import
03b7d3cad2237366b55b393e18d4dc5eb222798c
Diffstat (limited to 'contrib/libs/yandex-cloud-api-protos/yandex/cloud/loadtesting/api/v1/test/details.proto')
-rw-r--r--contrib/libs/yandex-cloud-api-protos/yandex/cloud/loadtesting/api/v1/test/details.proto28
1 files changed, 28 insertions, 0 deletions
diff --git a/contrib/libs/yandex-cloud-api-protos/yandex/cloud/loadtesting/api/v1/test/details.proto b/contrib/libs/yandex-cloud-api-protos/yandex/cloud/loadtesting/api/v1/test/details.proto
new file mode 100644
index 0000000000..d8afc39590
--- /dev/null
+++ b/contrib/libs/yandex-cloud-api-protos/yandex/cloud/loadtesting/api/v1/test/details.proto
@@ -0,0 +1,28 @@
+syntax = "proto3";
+
+package yandex.cloud.loadtesting.api.v1.test;
+
+option go_package = "github.com/yandex-cloud/go-genproto/yandex/cloud/loadtesting/api/v1/test;test";
+option java_package = "yandex.cloud.api.loadtesting.api.v1.test";
+
+import "yandex/cloud/loadtesting/api/v1/common/tag.proto";
+import "yandex/cloud/loadtesting/api/v1/test/artifact_settings.proto";
+import "yandex/cloud/validation.proto";
+
+// Test meta information.
+message Details {
+ // Name of the test.
+ string name = 1 [(pattern) = "|[a-z]([-a-z0-9]{0,61}[a-z0-9])?"];
+
+ // Description of the test.
+ string description = 2 [(length) = "<=256"];
+
+ // Tags assigned to the test.
+ repeated common.Tag tags = 3;
+
+ // ID of the logging group to which test artifacts are uploaded.
+ string logging_log_group_id = 4;
+
+ // Settings which define where to upload test artifacts and which files should be included.
+ ArtifactSettings artifact_settings = 5;
+}