1
1
# Reference
2
2
<!-- DO NOT EDIT: This document was generated by Puppet Strings -->
3
3
4
- ## Classes
4
+ ## Table of Contents
5
+
6
+ ** Classes**
5
7
6
- ### Public Classes
8
+ _ Public Classes _
7
9
8
10
* [ ` mysql::bindings ` ] ( #mysqlbindings ) : Parent class for MySQL bindings.
9
11
* [ ` mysql::client ` ] ( #mysqlclient ) : Installs and configures the MySQL client.
12
14
* [ ` mysql::server::monitor ` ] ( #mysqlservermonitor ) : This is a helper class to add a monitoring user to the database
13
15
* [ ` mysql::server::mysqltuner ` ] ( #mysqlservermysqltuner ) : Manage the MySQLTuner package.
14
16
15
- ### Private Classes
17
+ _ Private Classes _
16
18
17
19
* ` mysql::backup::mysqlbackup ` : Manage the mysqlbackup client.
18
20
* ` mysql::backup::mysqldump ` : "Provider" for mysqldump
35
37
* ` mysql::server::root_password ` : Private class for managing the root password
36
38
* ` mysql::server::service ` : Private class for managing the MySQL service
37
39
38
- ## Defined types
40
+ ** Defined types**
39
41
40
42
* [ ` mysql::db ` ] ( #mysqldb ) : Create and configure a MySQL database.
41
43
42
- ## Resource types
44
+ ** Resource types**
43
45
44
- ### Public Resource types
46
+ _ Public Resource types _
45
47
46
48
* [ ` mysql_plugin ` ] ( #mysql_plugin ) : Manage MySQL plugins.
47
49
48
- ### Private Resource types
50
+ _ Private Resource types _
49
51
50
52
* ` mysql_database ` : Manage a MySQL database.
51
53
* ` mysql_datadir ` : Manage MySQL datadirs with mysql_install_db OR mysqld (5.7.6 and above).
52
54
* ` mysql_grant ` : Manage a MySQL user's rights.
53
55
* ` mysql_user ` : Manage a MySQL user. This includes management of users password as well as privileges.
54
56
55
- ## Functions
57
+ ** Functions**
56
58
57
- * [ ` mysql_deepmerge ` ] ( #mysql_deepmerge ) : Recursively merges two or more hashes together and returns the resulting hash.
58
- * [ ` mysql_dirname ` ] ( #mysql_dirname ) : Returns the dirname of a path
59
+ * [ ` mysql::password ` ] ( #mysqlpassword ) : Hash a string as mysql's "PASSWORD()" function would do it
60
+ * [ ` mysql::strip_hash ` ] ( #mysqlstrip_hash ) : When given a hash this function strips out all blank entries.
61
+ * [ ` mysql_password ` ] ( #mysql_password ) : A wrapper for the 4.x function 'mysql::password' to bridge the gap between
62
+ it and the 3.x function 'mysql_password'.
59
63
* [ ` mysql_password ` ] ( #mysql_password ) : Hash a string as mysql's "PASSWORD()" function would do it
64
+ * [ ` mysql_strip_hash ` ] ( #mysql_strip_hash ) : A wrapper for the 4.x function 'mysql::strip_hash' to bridge the gap between
65
+ it and the 3.x function 'mysql_strip_hash'.
60
66
* [ ` mysql_strip_hash ` ] ( #mysql_strip_hash ) : TEMPORARY FUNCTION: EXPIRES 2014-03-10 When given a hash this function strips out all blank entries.
61
67
62
- ## Tasks
68
+ ** Tasks**
63
69
64
70
* [ ` export ` ] ( #export ) : Allows you to backup your database to local file.
65
71
* [ ` sql ` ] ( #sql ) : Allows you to execute arbitary SQL
@@ -616,6 +622,22 @@ This parameter no longer does anything. It exists only for backwards compatibili
616
622
617
623
Default value: ` undef `
618
624
625
+ ##### ` create_root_login_file `
626
+
627
+ Data type: ` Any `
628
+
629
+
630
+
631
+ Default value: $mysql::params::create_root_login_file
632
+
633
+ ##### ` login_file `
634
+
635
+ Data type: ` Any `
636
+
637
+
638
+
639
+ Default value: $mysql::params::login_file
640
+
619
641
### mysql::server::backup
620
642
621
643
Create and manage a MySQL backup.
@@ -811,7 +833,7 @@ Default value: '1M'
811
833
812
834
Data type: ` Any `
813
835
814
- Specifies an array of optional arguments which should be passed through to the backup tool. (Currently only supported by the xtrabackup provider .)
836
+ Specifies an array of optional arguments which should be passed through to the backup tool. (Supported by the xtrabackup and mysqldump providers .)
815
837
816
838
Default value: [ ]
817
839
@@ -879,13 +901,13 @@ Source path for the mysqltuner package.
879
901
880
902
Default value: ` undef `
881
903
882
- ##### ` environment `
904
+ ##### ` tuner_location `
883
905
884
906
Data type: ` Any `
885
907
886
- Environment variables active during download, e.g. to download via proxies: environment => 'https_proxy= http://proxy.example.com:80 '
908
+ Destination for the mysqltuner package.
887
909
888
- Default value: ` undef `
910
+ Default value: '/usr/local/bin/mysqltuner'
889
911
890
912
## Defined types
891
913
@@ -922,6 +944,14 @@ Data type: `Any`
922
944
923
945
The password for $user for the database you're creating.
924
946
947
+ ##### ` tls_options `
948
+
949
+ Data type: ` Any `
950
+
951
+ The tls_options for $user for the database you're creating.
952
+
953
+ Default value: ` undef `
954
+
925
955
##### ` dbname `
926
956
927
957
Data type: ` Any `
@@ -962,6 +992,14 @@ The privileges to be granted for user@host on the database.
962
992
963
993
Default value: 'ALL'
964
994
995
+ ##### ` grant_options `
996
+
997
+ Data type: ` Any `
998
+
999
+ The grant_options for the grant for user@host on the database.
1000
+
1001
+ Default value: ` undef `
1002
+
965
1003
##### ` sql `
966
1004
967
1005
Data type: ` Optional[Variant[Array, Hash, String]] `
@@ -1002,6 +1040,14 @@ Command to read the sqlfile for importing the database. Useful for compressed sq
1002
1040
1003
1041
Default value: 'cat'
1004
1042
1043
+ ##### ` mysql_exec_path `
1044
+
1045
+ Data type: ` Any `
1046
+
1047
+
1048
+
1049
+ Default value: $mysql::params::exec_path
1050
+
1005
1051
## Resource types
1006
1052
1007
1053
### mysql_plugin
@@ -1048,39 +1094,62 @@ The name of the MySQL plugin to manage.
1048
1094
1049
1095
## Functions
1050
1096
1051
- ### mysql_deepmerge
1097
+ ### mysql::password
1052
1098
1053
- Type: Ruby 3 .x API
1099
+ Type: Ruby 4 .x API
1054
1100
1055
- - When there is a duplicate key that is a hash, they are recursively merged.
1056
- - When there is a duplicate key that is not a hash, the key in the rightmost hash will "win."
1057
- - When there are conficting uses of dashes and underscores in two keys (which mysql would otherwise equate),
1058
- the rightmost style will win.
1101
+ Hash a string as mysql's "PASSWORD()" function would do it
1059
1102
1060
- #### ` mysql_deepmerge( )`
1103
+ #### ` mysql::password(String $password )`
1061
1104
1062
- - When there is a duplicate key that is a hash, they are recursively merged.
1063
- - When there is a duplicate key that is not a hash, the key in the rightmost hash will "win."
1064
- - When there are conficting uses of dashes and underscores in two keys (which mysql would otherwise equate),
1065
- the rightmost style will win.
1105
+ The mysql::password function.
1066
1106
1067
- Returns: ` Hash `
1107
+ Returns: ` String ` hash
1108
+ The mysql password hash from the clear text password.
1068
1109
1069
- ### mysql_dirname
1110
+ ##### ` password `
1070
1111
1071
- Type: Ruby 3.x API
1112
+ Data type: ` String `
1113
+
1114
+ Plain text password.
1115
+
1116
+ ### mysql::strip_hash
1117
+
1118
+ Type: Ruby 4.x API
1119
+
1120
+ When given a hash this function strips out all blank entries.
1121
+
1122
+ #### ` mysql::strip_hash(Hash $hash) `
1123
+
1124
+ The mysql::strip_hash function.
1125
+
1126
+ Returns: ` Hash ` hash
1127
+ The given hash with all blank entries removed
1128
+
1129
+ ##### ` hash `
1130
+
1131
+ Data type: ` Hash `
1132
+
1133
+ Hash to be stripped
1072
1134
1073
- Returns the dirname of a path
1135
+ ### mysql_password
1136
+
1137
+ Type: Ruby 4.x API
1074
1138
1075
- #### ` mysql_dirname(String $path) `
1139
+ A wrapper for the 4.x function 'mysql::password' to bridge the gap between
1140
+ it and the 3.x function 'mysql_password'.
1076
1141
1077
- Returns: ` String ` Directory name of path.
1142
+ #### ` mysql_password( String $password) `
1078
1143
1079
- ##### ` path `
1144
+ The mysql_password function.
1145
+
1146
+ Returns: ` String ` The mysql password hash from the 4.x function mysql::password.
1147
+
1148
+ ##### ` password `
1080
1149
1081
1150
Data type: ` String `
1082
1151
1083
- Path to find the dirname for .
1152
+ Plain text password .
1084
1153
1085
1154
### mysql_password
1086
1155
@@ -1090,6 +1159,8 @@ Hash a string as mysql's "PASSWORD()" function would do it
1090
1159
1091
1160
#### ` mysql_password(String $password) `
1092
1161
1162
+ The mysql_password function.
1163
+
1093
1164
Returns: ` String ` the mysql password hash from the clear text password.
1094
1165
1095
1166
##### ` password `
@@ -1100,6 +1171,26 @@ Plain text password.
1100
1171
1101
1172
### mysql_strip_hash
1102
1173
1174
+ Type: Ruby 4.x API
1175
+
1176
+ A wrapper for the 4.x function 'mysql::strip_hash' to bridge the gap between
1177
+ it and the 3.x function 'mysql_strip_hash'.
1178
+
1179
+ #### ` mysql_strip_hash(Hash $hash) `
1180
+
1181
+ The mysql_strip_hash function.
1182
+
1183
+ Returns: ` Hash ` hash
1184
+ The given hash with all blank entries removed
1185
+
1186
+ ##### ` hash `
1187
+
1188
+ Data type: ` Hash `
1189
+
1190
+ Hash to be stripped
1191
+
1192
+ ### mysql_strip_hash
1193
+
1103
1194
Type: Ruby 3.x API
1104
1195
1105
1196
TEMPORARY FUNCTION: EXPIRES 2014-03-10
0 commit comments