2023-05-05 13:47:28 +00:00
|
|
|
// Copyright (c) HashiCorp, Inc.
|
2023-08-21 17:31:54 +00:00
|
|
|
// SPDX-License-Identifier: MPL-2.0
|
2023-05-05 13:47:28 +00:00
|
|
|
|
|
|
|
syntax = "proto3";
|
|
|
|
|
2023-09-22 16:51:15 +00:00
|
|
|
package hashicorp.consul.mesh.v2beta1;
|
2023-05-05 13:47:28 +00:00
|
|
|
|
2023-09-22 16:51:15 +00:00
|
|
|
import "pbcatalog/v2beta1/protocol.proto";
|
2023-05-05 13:47:28 +00:00
|
|
|
|
|
|
|
message ExposeConfig {
|
|
|
|
repeated ExposePath expose_paths = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
message ExposePath {
|
|
|
|
uint32 listener_port = 1;
|
|
|
|
string path = 2;
|
|
|
|
uint32 local_path_port = 3;
|
2023-09-22 16:51:15 +00:00
|
|
|
hashicorp.consul.catalog.v2beta1.Protocol protocol = 4;
|
2023-05-05 13:47:28 +00:00
|
|
|
}
|