Documentation ¶
Index ¶
Constants ¶
View Source
const SecretOrRandomPasswordCommandName string = "secretOrRandomPassword"
Variables ¶
This section is empty.
Functions ¶
func ContainsCommandInvocation ¶
Returns true if the document 'doc' contains an invocation of a command.
Types ¶
type CommandExecutor ¶
type CommandExecutor interface { // Returns true + replacement string if a command is recognized and runs successfully. // Returns false and no error if the command was not recognized by the executor, or in other "no-op" cases. Run(ctx context.Context, commandName string, args []string) (bool, string, error) }
type SecretOrRandomPasswordCommandExecutor ¶
type SecretOrRandomPasswordCommandExecutor struct {
// contains filtered or unexported fields
}
func NewSecretOrRandomPasswordExecutor ¶
func NewSecretOrRandomPasswordExecutor( keyvaultService keyvault.KeyVaultService, subscriptionId string) *SecretOrRandomPasswordCommandExecutor
Click to show internal directories.
Click to hide internal directories.