Skip to content

Commit

Permalink
feat: Добавил группу серверов и тэги для списка доступных конфигов (#71)
Browse files Browse the repository at this point in the history
  • Loading branch information
ilyaotinov authored Nov 22, 2024
1 parent bfd87d0 commit 9900a3e
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions proto/v1/manage.proto
Original file line number Diff line number Diff line change
Expand Up @@ -1107,6 +1107,8 @@ message GetAvailableConfigurationRequest {
message GetAvailableConfigurationResponse {
// Список доступных конфигураций VPS
repeated VpsConfiguration configurations = 1;
// Список групп конфигураций
repeated ConfigurationGroup configuration_groups = 2;
}


Expand Down Expand Up @@ -1430,6 +1432,15 @@ enum VpsStatus {
REINSTALLING = 10;
}

// Описывает группу (обычный, high_cpu, и т.д.)
message ConfigurationGroup {
// Имя группы
string name = 1;

// Системное наименование группы.
string group = 2;
}

// Описывает параметры VPS
message VpsConfiguration {
// Идентификатор конфигурации
Expand Down Expand Up @@ -1467,6 +1478,9 @@ message VpsConfiguration {

// Регион, в котором доступна конфигурация
string region = 11;

// К какой группе относится конфигурация. VpsConfiguration.group == ConfigurationGroup.group
string group = 13;
}

message AttachIpAddressRequest {
Expand Down

0 comments on commit 9900a3e

Please sign in to comment.