aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/libs/yandex-cloud-api-protos/yandex/cloud/loadtesting/api/v1/agent/agent.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/agent/agent.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/agent/agent.proto')
-rw-r--r--contrib/libs/yandex-cloud-api-protos/yandex/cloud/loadtesting/api/v1/agent/agent.proto47
1 files changed, 47 insertions, 0 deletions
diff --git a/contrib/libs/yandex-cloud-api-protos/yandex/cloud/loadtesting/api/v1/agent/agent.proto b/contrib/libs/yandex-cloud-api-protos/yandex/cloud/loadtesting/api/v1/agent/agent.proto
new file mode 100644
index 0000000000..1f01fff43e
--- /dev/null
+++ b/contrib/libs/yandex-cloud-api-protos/yandex/cloud/loadtesting/api/v1/agent/agent.proto
@@ -0,0 +1,47 @@
+syntax = "proto3";
+
+package yandex.cloud.loadtesting.api.v1.agent ;
+
+option go_package = "github.com/yandex-cloud/go-genproto/yandex/cloud/loadtesting/api/v1/agent;agent";
+option java_package = "yandex.cloud.api.loadtesting.api.v1.agent";
+
+import "yandex/cloud/loadtesting/api/v1/agent/status.proto";
+
+// Load testing agent on which tests are executed.
+message Agent {
+ // ID of the agent. Generated at creation time.
+ string id = 1;
+
+ // ID of the folder that the agent belongs to.
+ string folder_id = 2;
+
+ // Name of the agent.
+ string name = 3;
+
+ // Description of the agent.
+ string description = 4;
+
+ // ID of the compute instance managed by the agent.
+ //
+ // Empty if there is no such instance (i.e. the case of external agent).
+ string compute_instance_id = 5;
+
+ reserved 6;
+
+ // Status of the agent.
+ Status status = 7;
+
+ // List of errors reported by the agent.
+ repeated string errors = 8;
+
+ // ID of the test that is currently being executed by the agent.
+ string current_job_id = 9;
+
+ // Version of the agent.
+ string agent_version_id = 10;
+
+ reserved 11;
+
+ // Agent labels as `key:value` pairs.
+ map<string, string> labels = 12;
+}