Skip to content

Commit 223ed4b

Browse files
committed
fix: added comments for exported functions
1 parent 9f75a23 commit 223ed4b

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

services/dbaas/mariadb/cluster.go

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -215,6 +215,7 @@ func GetMariaDBClusterDataUpdate(d *schema.ResourceData) (*mariadb.PatchClusterR
215215
return &cluster, nil
216216
}
217217

218+
// GetMariaClusterConnectionsData retrieves the data from the terraform resource and sets it in the MariaDB connection struct.
218219
func GetMariaClusterConnectionsData(d *schema.ResourceData) []mariadb.Connection {
219220
connections := make([]mariadb.Connection, 0)
220221

@@ -243,6 +244,7 @@ func GetMariaClusterConnectionsData(d *schema.ResourceData) []mariadb.Connection
243244
return connections
244245
}
245246

247+
// GetMariaClusterMaintenanceWindowData retrieves the data from the terraform resource and sets it in the MariaDB Maintenance Window struct.
246248
func GetMariaClusterMaintenanceWindowData(d *schema.ResourceData) *mariadb.MaintenanceWindow {
247249
var maintenanceWindow mariadb.MaintenanceWindow
248250

0 commit comments

Comments
 (0)