We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 26c3eff commit e1fa4b1Copy full SHA for e1fa4b1
lib/puppet/functions/mysql/innobackupex_args.rb
@@ -1,6 +1,19 @@
1
# frozen_string_literal: true
2
3
+# @summary this function populates and returns the string of arguments which later gets injected in template.
4
+# arguments that return string holds is conditional and decided by the the input given to function.
5
+
6
Puppet::Functions.create_function(:'mysql::innobackupex_args') do
7
+ # @param args
8
+ # String backupuser
9
+ # Boolean backupcompress
10
+ # String backuppassword_unsensitive
11
+ # Array backupdatabases
12
+ # Array optional_args
13
+ #
14
+ # @return String
15
+ # Generated on the basis of provided values.
16
17
dispatch :innobackupex_args do
18
required_param 'Optional[String]', :backupuser
19
required_param 'Boolean', :backupcompress
0 commit comments