mirror of https://github.com/status-im/consul.git
16 lines
405 B
Protocol Buffer
16 lines
405 B
Protocol Buffer
// Copyright (c) HashiCorp, Inc.
|
|
// SPDX-License-Identifier: BUSL-1.1
|
|
|
|
syntax = "proto3";
|
|
|
|
package hashicorp.consul.multicluster.v2beta1;
|
|
|
|
import "pbmulticluster/v2beta1/exported_services_consumer.proto";
|
|
import "pbresource/annotations.proto";
|
|
|
|
message NamespaceExportedServices {
|
|
option (hashicorp.consul.resource.spec) = {scope: SCOPE_NAMESPACE};
|
|
|
|
repeated ExportedServicesConsumer consumers = 1;
|
|
}
|