Documentation ¶
Overview ¶
Package secret provides functions to manage secrets on onex platform.
Index ¶
- func NewCmdCreate(f cmdutil.Factory, ioStreams genericclioptions.IOStreams) *cobra.Command
- func NewCmdDelete(f cmdutil.Factory, ioStreams genericclioptions.IOStreams) *cobra.Command
- func NewCmdGet(f cmdutil.Factory, ioStreams genericclioptions.IOStreams) *cobra.Command
- func NewCmdList(f cmdutil.Factory, ioStreams genericclioptions.IOStreams) *cobra.Command
- func NewCmdSecret(f cmdutil.Factory, ioStreams genericclioptions.IOStreams) *cobra.Command
- func NewCmdUpdate(f cmdutil.Factory, ioStreams genericclioptions.IOStreams) *cobra.Command
- type CreateOptions
- type DeleteOptions
- type GetOptions
- type ListOptions
- type UpdateOptions
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func NewCmdCreate ¶
NewCmdCreate returns new initialized instance of create sub command.
func NewCmdDelete ¶
NewCmdDelete returns new initialized instance of delete sub command.
func NewCmdList ¶
NewCmdList returns new initialized instance of list sub command.
func NewCmdSecret ¶
NewCmdSecret returns new initialized instance of 'secret' sub command.
func NewCmdUpdate ¶
NewCmdUpdate returns new initialized instance of update sub command.
Types ¶
type CreateOptions ¶
type CreateOptions struct { Description string Expires int64 CreateSecretRequest *v1.CreateSecretRequest genericclioptions.IOStreams // contains filtered or unexported fields }
CreateOptions is an options struct to support create subcommands.
func NewCreateOptions ¶
func NewCreateOptions(ioStreams genericclioptions.IOStreams) *CreateOptions
NewCreateOptions returns an initialized CreateOptions instance.
type DeleteOptions ¶
type DeleteOptions struct { Name string DeleteSecretRequest *v1.DeleteSecretRequest genericclioptions.IOStreams // contains filtered or unexported fields }
DeleteOptions is an options struct to support delete subcommands.
func NewDeleteOptions ¶
func NewDeleteOptions(ioStreams genericclioptions.IOStreams) *DeleteOptions
NewDeleteOptions returns an initialized DeleteOptions instance.
type GetOptions ¶
type GetOptions struct { Name string GetSecretRequest *v1.GetSecretRequest genericclioptions.IOStreams // contains filtered or unexported fields }
GetOptions is an options struct to support get subcommands.
func NewGetOptions ¶
func NewGetOptions(ioStreams genericclioptions.IOStreams) *GetOptions
NewGetOptions returns an initialized GetOptions instance.
type ListOptions ¶
type ListOptions struct { Offset int64 Limit int64 ListSecretRequest *v1.ListSecretRequest genericclioptions.IOStreams // contains filtered or unexported fields }
ListOptions is an options struct to support list subcommands.
func NewListOptions ¶
func NewListOptions(ioStreams genericclioptions.IOStreams) *ListOptions
NewListOptions returns an initialized ListOptions instance.
type UpdateOptions ¶
type UpdateOptions struct { Description string Expires int64 Status int32 UpdateSecretRequest *v1.UpdateSecretRequest genericclioptions.IOStreams // contains filtered or unexported fields }
UpdateOptions is an options struct to support update subcommands.
func NewUpdateOptions ¶
func NewUpdateOptions(ioStreams genericclioptions.IOStreams) *UpdateOptions
NewUpdateOptions returns an initialized UpdateOptions instance.