mirror of https://github.com/status-im/consul.git
15 lines
285 B
Protocol Buffer
15 lines
285 B
Protocol Buffer
|
// Copyright (c) HashiCorp, Inc.
|
||
|
// SPDX-License-Identifier: BUSL-1.1
|
||
|
|
||
|
syntax = "proto3";
|
||
|
|
||
|
package hashicorp.consul.multicluster.v2beta1;
|
||
|
|
||
|
message ExportedServicesConsumer {
|
||
|
oneof consumer_tenancy {
|
||
|
string peer = 1;
|
||
|
string partition = 2;
|
||
|
string sameness_group = 3;
|
||
|
}
|
||
|
}
|