mirror of https://github.com/status-im/consul.git
27 lines
857 B
Protocol Buffer
27 lines
857 B
Protocol Buffer
// Copyright (c) HashiCorp, Inc.
|
|
// SPDX-License-Identifier: MPL-2.0
|
|
|
|
syntax = "proto3";
|
|
|
|
package hashicorp.consul.catalog.v2beta1;
|
|
|
|
import "pbcatalog/v2beta1/failover_policy.proto";
|
|
import "pbresource/annotations.proto";
|
|
import "pbresource/resource.proto";
|
|
|
|
// This is a Resource type.
|
|
message ComputedFailoverPolicy {
|
|
option (hashicorp.consul.resource.spec) = {scope: SCOPE_NAMESPACE};
|
|
|
|
// Config defines failover for any named port not present in PortConfigs.
|
|
FailoverConfig config = 1;
|
|
|
|
// PortConfigs defines failover for a specific port on this service and takes
|
|
// precedence over Config.
|
|
map<string, FailoverConfig> port_configs = 2;
|
|
|
|
// BoundReferences is a slice of mixed type references of resources that were
|
|
// involved in the formulation of this resource.
|
|
repeated hashicorp.consul.resource.Reference bound_references = 3;
|
|
}
|