Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var ErrComposeFileNotFound = errors.New("no compose.yaml file found")
Functions ¶
This section is empty.
Types ¶
type TenantNameOrID ¶
type TenantNameOrID string
TenantNameOrID is the user-visible tenant identifier. It can be either a tenant name or a tenant ID; the backend resolves it using userinfo.
const ( // TenantUnset means no tenant was provided; use the personal tenant (token subject). TenantUnset TenantNameOrID = "" )
func (TenantNameOrID) IsSet ¶
func (t TenantNameOrID) IsSet() bool
IsSet reports whether a tenant was explicitly provided.
func (*TenantNameOrID) Set ¶
func (t *TenantNameOrID) Set(s string) error
Set is called by Cobra to parse the string argument
func (TenantNameOrID) String ¶
func (t TenantNameOrID) String() string
String returns a human-readable representation of the tenant. Should never be used in logic.
func (TenantNameOrID) Type ¶
func (TenantNameOrID) Type() string
Type returns the string shown in Cobra help
Click to show internal directories.
Click to hide internal directories.