kubernetes/vendor/github.com/spf13/cobra/powershell_completions.go

func genPowerShellComp(buf io.StringWriter, name string, includeDesc bool) {}

func (c *Command) genPowerShellCompletion(w io.Writer, includeDesc bool) error {}

func (c *Command) genPowerShellCompletionFile(filename string, includeDesc bool) error {}

// GenPowerShellCompletionFile generates powershell completion file without descriptions.
func (c *Command) GenPowerShellCompletionFile(filename string) error {}

// GenPowerShellCompletion generates powershell completion file without descriptions
// and writes it to the passed writer.
func (c *Command) GenPowerShellCompletion(w io.Writer) error {}

// GenPowerShellCompletionFileWithDesc generates powershell completion file with descriptions.
func (c *Command) GenPowerShellCompletionFileWithDesc(filename string) error {}

// GenPowerShellCompletionWithDesc generates powershell completion file with descriptions
// and writes it to the passed writer.
func (c *Command) GenPowerShellCompletionWithDesc(w io.Writer) error {}