2024-01-29 22:33:45 +00:00
|
|
|
// Copyright (c) HashiCorp, Inc.
|
|
|
|
// SPDX-License-Identifier: BUSL-1.1
|
|
|
|
|
|
|
|
//go:build !consulent
|
|
|
|
|
|
|
|
package discovery
|
|
|
|
|
|
|
|
import (
|
2024-02-02 23:29:38 +00:00
|
|
|
"github.com/hashicorp/consul/acl"
|
2024-01-29 22:33:45 +00:00
|
|
|
)
|
|
|
|
|
2024-02-02 23:29:38 +00:00
|
|
|
func (f *V1DataFetcher) NormalizeRequest(req *QueryPayload) {
|
|
|
|
// Nothing to do for CE
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
func validateEnterpriseTenancy(req QueryTenancy) error {
|
2024-02-08 04:24:00 +00:00
|
|
|
if req.Namespace != "" || req.Partition != acl.DefaultPartitionName {
|
2024-02-02 23:29:38 +00:00
|
|
|
return ErrNotSupported
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func queryTenancyToEntMeta(_ QueryTenancy) acl.EnterpriseMeta {
|
|
|
|
return acl.EnterpriseMeta{}
|
|
|
|
}
|