Skip to content

Commit 9a88efb

Browse files
dbaas: Fix typo and add additional detail in config update help. (#1583)
1 parent 61ea343 commit 9a88efb

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

commands/databases.go

+5-2
Original file line numberDiff line numberDiff line change
@@ -2424,8 +2424,11 @@ func databaseConfiguration() *Command {
24242424
Long: "The subcommands of `doctl databases configuration` are used to view a database cluster's configuration.",
24252425
},
24262426
}
2427-
getConfigurationLongDesc := "Retrieves the configuration for the specified cluster, including its backup settings, temporary file limit, and session timeout values."
2428-
updateConfigurationLongDesc := "Updates the specified database cluster's configuration. Using this command, you can update varioous settings like backup times, temporary file limits, and session timeouts."
2427+
getConfigurationLongDesc := "Retrieves the advanced configuration for the specified cluster, including its backup settings, temporary file limit, and session timeout values."
2428+
updateConfigurationLongDesc := `Updates the specified database cluster's advanced configuration. Using this command, you can update various settings like backup times, temporary file limits, and session timeouts. Available settings vary by database engine.
2429+
2430+
This command functions as a PATCH request, meaning that only the specified fields are updated. If a field is not specified, it will not be changed. The settings are passed using the ` + "`" + `--config-json` + "`" + ` flag, which takes a JSON object as its value.
2431+
`
24292432

24302433
getDatabaseCfgCommand := CmdBuilder(
24312434

0 commit comments

Comments
 (0)