27 lines
578 B
Go
27 lines
578 B
Go
// Copyright (c) HashiCorp, Inc.
|
|
// SPDX-License-Identifier: MPL-2.0
|
|
|
|
//go:build !consulent
|
|
// +build !consulent
|
|
|
|
package structs
|
|
|
|
import (
|
|
"github.com/hashicorp/consul/acl"
|
|
)
|
|
|
|
func (us *Upstream) GetEnterpriseMeta() *acl.EnterpriseMeta {
|
|
return DefaultEnterpriseMetaInDefaultPartition()
|
|
}
|
|
|
|
func (us *Upstream) DestinationID() PeeredServiceName {
|
|
return PeeredServiceName{
|
|
Peer: us.DestinationPeer,
|
|
ServiceName: NewServiceName(us.DestinationName, DefaultEnterpriseMetaInDefaultPartition()),
|
|
}
|
|
}
|
|
|
|
func (us *Upstream) enterpriseStringPrefix() string {
|
|
return ""
|
|
}
|