mirror of https://github.com/status-im/consul.git
45 lines
1.3 KiB
Go
45 lines
1.3 KiB
Go
// Copyright (c) HashiCorp, Inc.
|
|
// SPDX-License-Identifier: BUSL-1.1
|
|
|
|
package client
|
|
|
|
import "flag"
|
|
|
|
type ResourceFlags struct {
|
|
partition TValue[string]
|
|
namespace TValue[string]
|
|
stale TValue[bool]
|
|
}
|
|
|
|
func (f *ResourceFlags) ResourceFlags() *flag.FlagSet {
|
|
fs := flag.NewFlagSet("", flag.ContinueOnError)
|
|
fs.Var(&f.partition, "partition",
|
|
"Specifies the admin partition to query. If not provided, the admin partition will be inferred "+
|
|
"from the request's ACL token, or will default to the `default` admin partition. "+
|
|
"Admin Partitions are a Consul Enterprise feature.")
|
|
fs.Var(&f.namespace, "namespace",
|
|
"Specifies the namespace to query. If not provided, the namespace will be inferred "+
|
|
"from the request's ACL token, or will default to the `default` namespace.")
|
|
fs.Var(&f.stale, "stale",
|
|
"Permit any Consul server (non-leader) to respond to this request. This "+
|
|
"allows for lower latency and higher throughput, but can result in "+
|
|
"stale data. This option has no effect on non-read operations. The "+
|
|
"default value is false.")
|
|
return fs
|
|
}
|
|
|
|
func (f *ResourceFlags) Partition() string {
|
|
return f.partition.String()
|
|
}
|
|
|
|
func (f *ResourceFlags) Namespace() string {
|
|
return f.namespace.String()
|
|
}
|
|
|
|
func (f *ResourceFlags) Stale() bool {
|
|
if f.stale.v == nil {
|
|
return false
|
|
}
|
|
return *f.stale.v
|
|
}
|