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