Skip to content

Commit

Permalink
Add code review comments, remove nodefqdn from LNET
Browse files Browse the repository at this point in the history
  • Loading branch information
mjethwa-msft committed Jul 14, 2023
1 parent 32507ed commit feac410
Show file tree
Hide file tree
Showing 3 changed files with 51 additions and 60 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,10 @@ message LogicalNetwork {
string id = 2;
repeated LogicalSubnet subnets = 3;
bool networkVirtualizationEnabled = 4;
string nodefqdn = 5;
Status status = 6;
string locationName = 7;
string macPoolName = 8;
Tags tags = 9;
Status status = 5;
string locationName = 6;
string macPoolName = 7 [(sensitive) = true];
Tags tags = 8;
}

message LogicalSubnet {
Expand All @@ -40,8 +39,8 @@ message LogicalSubnet {
IPAllocationMethod allocation = 5;
uint32 vlan = 6;
repeated IPPool ipPools = 7;
Dns dns = 8;
bool isPublic = 9;
Dns dns = 8 [(sensitive) = true];
bool isPublic = 9; // Indicates whether this is a public subnet on a virtual machine.
}

service LogicalNetworkAgent {
Expand Down
96 changes: 44 additions & 52 deletions rpc/cloudagent/network/moc_cloudagent_logicalnetwork.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ message IpConfiguration {
IPAllocationMethod allocation = 6;
string gateway = 7 [(sensitive) = true];
repeated InboundNatRule inboundNatRules = 8;
NetworkType networkType = 9;
NetworkType networkType = 9; // Read-only property
}

message NetworkInterface {
Expand Down

0 comments on commit feac410

Please sign in to comment.