mirror of https://github.com/status-im/consul.git
17 lines
417 B
Protocol Buffer
17 lines
417 B
Protocol Buffer
// Copyright (c) HashiCorp, Inc.
|
|
// SPDX-License-Identifier: MPL-2.0
|
|
|
|
syntax = "proto3";
|
|
|
|
package hashicorp.consul.multicluster.v2;
|
|
|
|
import "pbmulticluster/v2/exported_services_consumer.proto";
|
|
import "pbresource/annotations.proto";
|
|
|
|
message ExportedServices {
|
|
option (hashicorp.consul.resource.spec) = {scope: SCOPE_NAMESPACE};
|
|
|
|
repeated string services = 1;
|
|
repeated ExportedServicesConsumer consumers = 2;
|
|
}
|