Skip to content

Commit

Permalink
Rebuilt with latest dependency updates
Browse files Browse the repository at this point in the history
  • Loading branch information
oxide-reflector-bot[bot] committed Nov 5, 2024
1 parent 5a34c77 commit a81f40e
Show file tree
Hide file tree
Showing 3 changed files with 376 additions and 37 deletions.
20 changes: 10 additions & 10 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

28 changes: 22 additions & 6 deletions cli/src/generated_cli.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1436,10 +1436,17 @@ impl<T: CliConfig> Cli<T> {
))
.required(false)
.help(
"The auto-restart policy for this instance.\n\nThis indicates whether the \
instance should be automatically restarted by the control plane on \
failure. If this is `null`, no auto-restart policy has been configured \
for this instance by the user.",
"The auto-restart policy for this instance.\n\nThis policy determines \
whether the instance should be automatically restarted by the control \
plane on failure. If this is `null`, no auto-restart policy will be \
explicitly configured for this instance, and the control plane will \
select the default policy when determining whether the instance can be \
automatically restarted.\n\nCurrently, the global default auto-restart \
policy is \"best-effort\", so instances with `null` auto-restart \
policies will be automatically restarted. However, in the future, the \
default policy may be configurable through other mechanisms, such as on \
a per-project basis. In that case, any configured default policy will be \
used if this is `null`.",
),
)
.arg(
Expand Down Expand Up @@ -1550,8 +1557,17 @@ impl<T: CliConfig> Cli<T> {
))
.required(false)
.help(
"The auto-restart policy for this instance.\n\nIf not provided, unset the \
instance's auto-restart policy.",
"Sets the auto-restart policy for this instance.\n\nThis policy \
determines whether the instance should be automatically restarted by the \
control plane on failure. If this is `null`, any explicitly configured \
auto-restart policy will be unset, and the control plane will select the \
default policy when determining whether the instance can be \
automatically restarted.\n\nCurrently, the global default auto-restart \
policy is \"best-effort\", so instances with `null` auto-restart \
policies will be automatically restarted. However, in the future, the \
default policy may be configurable through other mechanisms, such as on \
a per-project basis. In that case, any configured default policy will be \
used if this is `null`.",
),
)
.arg(
Expand Down
Loading

0 comments on commit a81f40e

Please sign in to comment.