Documentation ¶
Index ¶
- Constants
- func AddComponentFlag(cmd *cobra.Command)
- func NewCmdComponent(name, fullName string) *cobra.Command
- func NewCmdCreate(name, fullName string) *cobra.Command
- func NewCmdDelete(name, fullName string) *cobra.Command
- func NewCmdDescribe(name, fullName string) *cobra.Command
- func NewCmdGet(name, fullName string) *cobra.Command
- func NewCmdLink(name, fullName string) *cobra.Command
- func NewCmdList(name, fullName string) *cobra.Command
- func NewCmdLog(name, fullName string) *cobra.Command
- func NewCmdPush(name, fullName string) *cobra.Command
- func NewCmdUnlink(name, fullName string) *cobra.Command
- func NewCmdUpdate(name, fullName string) *cobra.Command
- func NewCmdWatch(name, fullName string) *cobra.Command
- type CommonPushOptions
- type ComponentOptions
- type CreateOptions
- type DeleteOptions
- type DescribeOptions
- type GetOptions
- type LinkOptions
- type ListOptions
- type LogOptions
- type PushOptions
- type UnlinkOptions
- type UpdateOptions
- type WatchOptions
Constants ¶
const CreateRecommendedCommandName = "create"
CreateRecommendedCommandName is the recommended watch command name
const DeleteRecommendedCommandName = "delete"
DeleteRecommendedCommandName is the recommended delete command name
const DescribeRecommendedCommandName = "describe"
DescribeRecommendedCommandName is the recommended describe command name
const GetRecommendedCommandName = "get"
GetRecommendedCommandName is the recommended get command name
const LinkRecommendedCommandName = "link"
LinkRecommendedCommandName is the recommended link command name
const ListRecommendedCommandName = "list"
ListRecommendedCommandName is the recommended watch command name
const LocalDirectoryDefaultLocation = "./"
LocalDirectoryDefaultLocation is the default location of where --local files should always be.. since the application will always be in the same directory as `.odo`, we will always set this as: ./
const LogRecommendedCommandName = "log"
LogRecommendedCommandName is the recommended watch command name
const PushRecommendedCommandName = "push"
PushRecommendedCommandName is the recommended push command name
const RecommendedCommandName = "component"
RecommendedComponentCommandName is the recommended component command name
const UnlinkRecommendedCommandName = "unlink"
UnlinkRecommendedCommandName is the recommended unlink command name
const UpdateRecommendedCommandName = "update"
UpdateRecommendedCommandName is the recommended update command name
const WatchRecommendedCommandName = "watch"
WatchRecommendedCommandName is the recommended watch command name
Variables ¶
This section is empty.
Functions ¶
func AddComponentFlag ¶ added in v0.0.18
AddComponentFlag adds a `component` flag to the given cobra command Also adds a completion handler to the flag
func NewCmdComponent ¶
NewCmdComponent implements the component odo command
func NewCmdCreate ¶
NewCmdCreate implements the create odo command
func NewCmdDelete ¶
NewCmdDelete implements the delete odo command
func NewCmdDescribe ¶
NewCmdDescribe implements the describe odo command
func NewCmdLink ¶
NewCmdLink implements the link odo command
func NewCmdList ¶
NewCmdList implements the list odo command
func NewCmdPush ¶
NewCmdPush implements the push odo command
func NewCmdUnlink ¶ added in v0.0.18
NewCmdUnlink implements the link odo command
func NewCmdUpdate ¶
NewCmdUpdate implements the Update odo command
func NewCmdWatch ¶
NewCmdWatch implements the watch odo command
Types ¶
type CommonPushOptions ¶ added in v1.0.0
type CommonPushOptions struct { *genericclioptions.Context // contains filtered or unexported fields }
CommonPushOptions has data needed for all pushes
func NewCommonPushOptions ¶ added in v1.0.0
func NewCommonPushOptions() *CommonPushOptions
NewCommonPushOptions instantiates a commonPushOptions object
func (*CommonPushOptions) Push ¶ added in v1.0.0
func (cpo *CommonPushOptions) Push() (err error)
Push pushes changes as per set options
func (*CommonPushOptions) ResolveProject ¶ added in v1.0.0
func (cpo *CommonPushOptions) ResolveProject(prjName string) (err error)
ResolveProject completes the push options as needed
func (*CommonPushOptions) ResolveSrcAndConfigFlags ¶ added in v1.0.0
func (cpo *CommonPushOptions) ResolveSrcAndConfigFlags()
ResolveSrcAndConfigFlags sets all pushes if none is asked
func (*CommonPushOptions) SetSourceInfo ¶ added in v1.0.0
func (cpo *CommonPushOptions) SetSourceInfo() (err error)
SetSourceInfo sets up source information
type ComponentOptions ¶ added in v0.0.19
type ComponentOptions struct { *genericclioptions.Context // contains filtered or unexported fields }
ComponentOptions encapsulates basic component options
type CreateOptions ¶ added in v0.0.19
type CreateOptions struct { *CommonPushOptions // contains filtered or unexported fields }
CreateOptions encapsulates create options
func NewCreateOptions ¶ added in v0.0.19
func NewCreateOptions() *CreateOptions
NewCreateOptions returns new instance of CreateOptions
func (*CreateOptions) Run ¶ added in v0.0.19
func (co *CreateOptions) Run() (err error)
Run has the logic to perform the required actions as part of command
func (*CreateOptions) Validate ¶ added in v0.0.19
func (co *CreateOptions) Validate() (err error)
Validate validates the create parameters
type DeleteOptions ¶ added in v0.0.19
type DeleteOptions struct { *ComponentOptions // contains filtered or unexported fields }
DeleteOptions is a container to attach complete, validate and run pattern
func NewDeleteOptions ¶ added in v0.0.19
func NewDeleteOptions() *DeleteOptions
NewDeleteOptions returns new instance of DeleteOptions
func (*DeleteOptions) Run ¶ added in v0.0.19
func (do *DeleteOptions) Run() (err error)
Run has the logic to perform the required actions as part of command
func (*DeleteOptions) Validate ¶ added in v0.0.19
func (do *DeleteOptions) Validate() (err error)
Validate validates the list parameters
type DescribeOptions ¶ added in v0.0.19
type DescribeOptions struct { *ComponentOptions // contains filtered or unexported fields }
DescribeOptions is a dummy container to attach complete, validate and run pattern
func NewDescribeOptions ¶ added in v0.0.19
func NewDescribeOptions() *DescribeOptions
NewDescribeOptions returns new instance of ListOptions
func (*DescribeOptions) Run ¶ added in v0.0.19
func (do *DescribeOptions) Run() (err error)
Run has the logic to perform the required actions as part of command
func (*DescribeOptions) Validate ¶ added in v0.0.19
func (do *DescribeOptions) Validate() (err error)
Validate validates the describe parameters
type GetOptions ¶ added in v0.0.19
type GetOptions struct { *genericclioptions.Context // contains filtered or unexported fields }
GetOptions encapsulates component get options
func NewGetOptions ¶ added in v0.0.19
func NewGetOptions() *GetOptions
NewGetOptions returns new instance of GetOptions
func (*GetOptions) Run ¶ added in v0.0.19
func (gto *GetOptions) Run() (err error)
Run has the logic to perform the required actions as part of command
func (*GetOptions) Validate ¶ added in v0.0.19
func (gto *GetOptions) Validate() (err error)
Validate validates the get parameters
type LinkOptions ¶ added in v0.0.18
type LinkOptions struct {
// contains filtered or unexported fields
}
LinkOptions encapsulates the options for the odo link command
func NewLinkOptions ¶ added in v0.0.18
func NewLinkOptions() *LinkOptions
NewLinkOptions creates a new LinkOptions instance
func (*LinkOptions) Complete ¶ added in v0.0.18
Complete completes LinkOptions after they've been created
func (*LinkOptions) Run ¶ added in v0.0.18
func (o *LinkOptions) Run() (err error)
Run contains the logic for the odo link command
func (*LinkOptions) Validate ¶ added in v0.0.18
func (o *LinkOptions) Validate() (err error)
Validate validates the LinkOptions based on completed values
type ListOptions ¶ added in v0.0.19
type ListOptions struct { *genericclioptions.Context // contains filtered or unexported fields }
ListOptions is a dummy container to attach complete, validate and run pattern
func NewListOptions ¶ added in v0.0.19
func NewListOptions() *ListOptions
NewListOptions returns new instance of ListOptions
func (*ListOptions) Run ¶ added in v0.0.19
func (lo *ListOptions) Run() (err error)
Run has the logic to perform the required actions as part of command
func (*ListOptions) Validate ¶ added in v0.0.19
func (lo *ListOptions) Validate() (err error)
Validate validates the list parameters
type LogOptions ¶ added in v0.0.19
type LogOptions struct { *ComponentOptions // contains filtered or unexported fields }
LogOptions contains log options
func NewLogOptions ¶ added in v0.0.19
func NewLogOptions() *LogOptions
NewLogOptions returns new instance of LogOptions
func (*LogOptions) Run ¶ added in v0.0.19
func (lo *LogOptions) Run() (err error)
Run has the logic to perform the required actions as part of command
func (*LogOptions) Validate ¶ added in v0.0.19
func (lo *LogOptions) Validate() (err error)
Validate validates the log parameters
type PushOptions ¶ added in v0.0.19
type PushOptions struct {
*CommonPushOptions
}
PushOptions encapsulates options that push command uses
func NewPushOptions ¶ added in v0.0.19
func NewPushOptions() *PushOptions
NewPushOptions returns new instance of PushOptions with "default" values for certain values, for example, show is "false"
func (*PushOptions) Run ¶ added in v0.0.19
func (po *PushOptions) Run() (err error)
Run has the logic to perform the required actions as part of command
func (*PushOptions) Validate ¶ added in v0.0.19
func (po *PushOptions) Validate() (err error)
Validate validates the push parameters
type UnlinkOptions ¶ added in v0.0.18
type UnlinkOptions struct {
// contains filtered or unexported fields
}
UnlinkOptions encapsulates the options for the odo link command
func NewUnlinkOptions ¶ added in v0.0.18
func NewUnlinkOptions() *UnlinkOptions
NewUnlinkOptions creates a new UnlinkOptions instance
func (*UnlinkOptions) Complete ¶ added in v0.0.18
Complete completes UnlinkOptions after they've been created
func (*UnlinkOptions) Run ¶ added in v0.0.18
func (o *UnlinkOptions) Run() (err error)
Run contains the logic for the odo link command
func (*UnlinkOptions) Validate ¶ added in v0.0.18
func (o *UnlinkOptions) Validate() (err error)
Validate validates the UnlinkOptions based on completed values
type UpdateOptions ¶ added in v0.0.19
type UpdateOptions struct { *CommonPushOptions // contains filtered or unexported fields }
UpdateOptions encapsulates the update command options
func NewUpdateOptions ¶ added in v0.0.19
func NewUpdateOptions() *UpdateOptions
NewUpdateOptions returns new instance of UpdateOptions
func (*UpdateOptions) Run ¶ added in v0.0.19
func (uo *UpdateOptions) Run() (err error)
Run has the logic to perform the required actions as part of command
func (*UpdateOptions) Validate ¶ added in v0.0.19
func (uo *UpdateOptions) Validate() (err error)
Validate validates the update parameters
type WatchOptions ¶ added in v0.0.19
type WatchOptions struct { *genericclioptions.Context // contains filtered or unexported fields }
WatchOptions contains attributes of the watch command
func NewWatchOptions ¶ added in v0.0.19
func NewWatchOptions() *WatchOptions
NewWatchOptions returns new instance of WatchOptions
func (*WatchOptions) Run ¶ added in v0.0.19
func (wo *WatchOptions) Run() (err error)
Run has the logic to perform the required actions as part of command
func (*WatchOptions) Validate ¶ added in v0.0.19
func (wo *WatchOptions) Validate() (err error)
Validate validates the watch parameters