diff options
author | iddqd <iddqd@yandex-team.com> | 2024-06-11 10:12:13 +0300 |
---|---|---|
committer | iddqd <iddqd@yandex-team.com> | 2024-06-11 10:22:43 +0300 |
commit | 07f57e35443ab7f09471caf2dbf1afbcced4d9f7 (patch) | |
tree | a4a7b66ead62e83fa988a2ec2ce6576311c1f4b1 /contrib/libs/yandex-cloud-api-protos/yandex/cloud/loadtesting/agent/v1/test.proto | |
parent | 6db3b8ca95e44179e48306a58656fb1f9317d9c3 (diff) | |
download | ydb-07f57e35443ab7f09471caf2dbf1afbcced4d9f7.tar.gz |
add contrib/python/yandexcloud to import
03b7d3cad2237366b55b393e18d4dc5eb222798c
Diffstat (limited to 'contrib/libs/yandex-cloud-api-protos/yandex/cloud/loadtesting/agent/v1/test.proto')
-rw-r--r-- | contrib/libs/yandex-cloud-api-protos/yandex/cloud/loadtesting/agent/v1/test.proto | 71 |
1 files changed, 71 insertions, 0 deletions
diff --git a/contrib/libs/yandex-cloud-api-protos/yandex/cloud/loadtesting/agent/v1/test.proto b/contrib/libs/yandex-cloud-api-protos/yandex/cloud/loadtesting/agent/v1/test.proto new file mode 100644 index 0000000000..6fa08b8196 --- /dev/null +++ b/contrib/libs/yandex-cloud-api-protos/yandex/cloud/loadtesting/agent/v1/test.proto @@ -0,0 +1,71 @@ +syntax = "proto3"; + +package yandex.cloud.loadtesting.agent.v1; + +import "google/protobuf/timestamp.proto"; + +option go_package = "github.com/yandex-cloud/go-genproto/yandex/cloud/loadtesting/agent/v1;agent"; +option java_package = "yandex.cloud.api.loadtesting.agent.v1"; + + +message Test { + enum Status { + STATUS_UNSPECIFIED = 0; + CREATED = 1; + INITIATED = 2; + PREPARING = 3; + RUNNING = 4; + FINISHING = 5; + DONE = 6; + POST_PROCESSING = 7; + FAILED = 8; + STOPPING = 9; + STOPPED = 10; + AUTOSTOPPED = 11; + WAITING = 12; + DELETING = 13; + LOST = 14; + } + + enum Generator { + GENERATOR_UNSPECIFIED = 0; + PANDORA = 1; + PHANTOM = 2; + JMETER = 3; + } + + string id = 1; + string folder_id = 2; + string name = 3; + string description = 4; + map<string, string> labels = 5; + + google.protobuf.Timestamp created_at = 6; + google.protobuf.Timestamp started_at = 7; + google.protobuf.Timestamp finished_at = 8; + google.protobuf.Timestamp updated_at = 9; + + Generator generator = 10; + + // AgentInstance ID where Test is running. + string agent_instance_id = 11; + + // Target VM. + string target_address = 12; + int64 target_port = 13; + + // Version of object under test. + string target_version = 14; + + // Test details + string config = 15; + oneof ammo { + string ammo_urls = 16; + string ammo_id = 17; + } + repeated string cases = 18; + + Status status = 19; + repeated string errors = 20; + bool favorite = 21; +} |