MCPcopy Create free account
hub / github.com/UiPath/uipathcli / configSetKeyAllowedValues

Method configSetKeyAllowedValues

commandline/command_builder.go:626–636  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

624}
625
626func (b CommandBuilder) configSetKeyAllowedValues() string {
627 builder := strings.Builder{}
628 builder.WriteString("Allowed values:")
629 for _, value := range ConfigKeys {
630 if strings.HasSuffix(value, ".") {
631 value = value + "<key>"
632 }
633 builder.WriteString("\n- " + value)
634 }
635 return builder.String()
636}
637
638func (b CommandBuilder) createCacheClearCommand() *CommandDefinition {
639 flags := NewFlagBuilder().

Callers 1

Calls 1

StringMethod · 0.80

Tested by

no test coverage detected