Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs(rdb): add precision in short for log policy max age retention #1998

Merged
merged 5 commits into from
Oct 26, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ ARGS:
[name] Name of the instance
instance-id UUID of the instance to update
[tags.{index}] Tags of a given instance
[logs-policy.max-age-retention] Max age of remote logs to keep on the database instance
[logs-policy.max-age-retention] Max age (in day) of remote logs to keep on the database instance
[logs-policy.total-disk-retention] Max disk size of remote logs to keep on the database instance
[region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw)

Expand Down
2 changes: 1 addition & 1 deletion docs/commands/rdb.md
Original file line number Diff line number Diff line change
Expand Up @@ -654,7 +654,7 @@ scw rdb instance update <instance-id ...> [arg=value ...]
| name | | Name of the instance |
| instance-id | Required | UUID of the instance to update |
| tags.{index} | | Tags of a given instance |
| logs-policy.max-age-retention | | Max age of remote logs to keep on the database instance |
| logs-policy.max-age-retention | | Max age (in day) of remote logs to keep on the database instance |
| logs-policy.total-disk-retention | | Max disk size of remote logs to keep on the database instance |
| region | Default: `fr-par`<br />One of: `fr-par`, `nl-ams`, `pl-waw` | Region to target. If none is passed will use default region from the config |

Expand Down
2 changes: 1 addition & 1 deletion internal/namespaces/rdb/v1/rdb_cli.go
Original file line number Diff line number Diff line change
Expand Up @@ -893,7 +893,7 @@ func rdbInstanceUpdate() *core.Command {
},
{
Name: "logs-policy.max-age-retention",
Short: `Max age of remote logs to keep on the database instance`,
Short: `Max age (in day) of remote logs to keep on the database instance`,
Required: false,
Deprecated: false,
Positional: false,
Expand Down