mirror of https://github.com/hashicorp/consul
16 lines
394 B
Protocol Buffer
16 lines
394 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 NamespaceExportedServices {
|
||
|
option (hashicorp.consul.resource.spec) = {scope: SCOPE_NAMESPACE};
|
||
|
|
||
|
repeated ExportedServicesConsumer consumers = 1;
|
||
|
}
|