Documentation
¶
Index ¶
- func Disable(ctx context.Context, docker docker.Client, dockerCli command.Cli, ...) error
- func Enable(ctx context.Context, docker docker.Client, dockerCli command.Cli, ...) error
- func Init(_ context.Context, dir string, language string, templateName string) error
- type ConfigStatus
- type Info
- type ListEntry
- type Tool
- type ToolArgument
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
Types ¶
type ConfigStatus ¶ added in v0.27.0
type ConfigStatus string
const ( ConfigStatusNone ConfigStatus = "none" // No configuration needed ConfigStatusRequired ConfigStatus = "required" // Configuration required but not set ConfigStatusPartial ConfigStatus = "partial" // Some configuration set but not all ConfigStatusDone ConfigStatus = "done" // All configuration complete )
func (ConfigStatus) DisplayString ¶ added in v0.27.0
func (cs ConfigStatus) DisplayString() string
DisplayString returns the display string for a ConfigStatus
type ListEntry ¶ added in v0.27.0
type ListEntry struct {
Name string `json:"name"`
Description string `json:"description"`
Secrets ConfigStatus `json:"secrets"`
Config ConfigStatus `json:"config"`
OAuth ConfigStatus `json:"oauth"`
}
type Tool ¶ added in v0.16.0
type Tool struct {
Name string `json:"name"`
Description string `json:"description"`
Arguments []ToolArgument `json:"arguments,omitempty"`
Annotations map[string]json.RawMessage `json:"annotations,omitempty"`
Enabled bool `json:"enabled"`
}
type ToolArgument ¶ added in v0.16.0
Source Files
¶
Click to show internal directories.
Click to hide internal directories.