mirror of https://github.com/status-im/consul.git
29 lines
670 B
Protocol Buffer
29 lines
670 B
Protocol Buffer
// Copyright (c) HashiCorp, Inc.
|
|
// SPDX-License-Identifier: BUSL-1.1
|
|
|
|
syntax = "proto3";
|
|
|
|
package hashicorp.consul.multicluster.v2beta1;
|
|
|
|
import "pbresource/annotations.proto";
|
|
import "pbresource/resource.proto";
|
|
|
|
message ComputedExportedServices {
|
|
option (hashicorp.consul.resource.spec) = {scope: SCOPE_PARTITION};
|
|
|
|
repeated ComputedExportedService consumers = 1;
|
|
}
|
|
|
|
message ComputedExportedService {
|
|
hashicorp.consul.resource.Reference target_ref = 1;
|
|
repeated ComputedExportedServicesConsumer consumers = 2;
|
|
}
|
|
|
|
message ComputedExportedServicesConsumer {
|
|
// no sameness group
|
|
oneof consumer_tenancy {
|
|
string peer = 3;
|
|
string partition = 4;
|
|
}
|
|
}
|