Skip to content

Commit

Permalink
add logical network type.
Browse files Browse the repository at this point in the history
  • Loading branch information
Zhengyue Cheng committed Feb 13, 2024
1 parent f6b4720 commit 7826ce2
Showing 1 changed file with 9 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,11 @@ import "moc_common_common.proto";
import "moc_common_networkcommon.proto";
import "moc_common_notification.proto";

enum LogicalNetworkType {
Transparent = 0;
ICS = 1;
}

message LogicalNetworkRequest {
repeated LogicalNetwork LogicalNetworks = 1;
Operation OperationType = 2;
Expand All @@ -26,9 +31,10 @@ message LogicalNetwork {
string name = 1;
string id = 2;
repeated LogicalNetworkIpam ipams = 3;
Status status = 4;
Entity entity = 5;
Tags tags = 6;
LogicalNetworkType type = 4;
Status status = 5;
Entity entity = 6;
Tags tags = 7;
}

message LogicalSubnet {
Expand Down

0 comments on commit 7826ce2

Please sign in to comment.