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

fix(inference): add scw standard to model name #4441

Closed
wants to merge 3 commits into from
Closed
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 @@ -6,9 +6,8 @@ USAGE:
scw iam user update-password <user-id ...> [arg=value ...]

ARGS:
user-id ID of the user to update
password The new password
[send-email] Whether or not to send an email alerting the user their password has changed
user-id ID of the user to update
password The new password

FLAGS:
-h, --help help for update-password
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ ARGS:
[order-by] (created_at_asc | created_at_desc)
[job-definition-id]
[project-id]
[state] (unknown_state | queued | scheduled | running | succeeded | failed | canceled | internal_error)
[organization-id]
[region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw | all)

Expand Down
1 change: 0 additions & 1 deletion docs/commands/iam.md
Original file line number Diff line number Diff line change
Expand Up @@ -1168,7 +1168,6 @@ scw iam user update-password <user-id ...> [arg=value ...]
|------|---|-------------|
| user-id | Required | ID of the user to update |
| password | Required | The new password |
| send-email | | Whether or not to send an email alerting the user their password has changed |



Expand Down
1 change: 1 addition & 0 deletions docs/commands/jobs.md
Original file line number Diff line number Diff line change
Expand Up @@ -217,6 +217,7 @@ scw jobs run list [arg=value ...]
| order-by | One of: `created_at_asc`, `created_at_desc` | |
| job-definition-id | | |
| project-id | | |
| state | One of: `unknown_state`, `queued`, `scheduled`, `running`, `succeeded`, `failed`, `canceled`, `internal_error` | |
| organization-id | | |
| region | Default: `fr-par`<br />One of: `fr-par`, `nl-ams`, `pl-waw`, `all` | Region to target. If none is passed will use default region from the config |

Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
🎲🎲🎲 EXIT CODE: 0 🎲🎲🎲
🟩🟩🟩 STDOUT️ 🟩🟩🟩️
ID Name Database Name Size Status Instance ID URL Expired Is Exported Expires At Created At Updated At Region Same Region
4a7d57b2-f92b-4b13-86de-b56e47cad9f5 will_be_exported rdb 2.1 kB ready 8a25dbba-dac7-49bf-854c-5f1da6a545bc false true few seconds ago few seconds ago few seconds ago fr-par false
4a7d57b2-f92b-4b13-86de-b56e47cad9f5 will_be_exported rdb 2.1 kB ready 8a25dbba-dac7-49bf-854c-5f1da6a545bc true true few seconds ago few seconds ago few seconds ago fr-par false
a929798a-28be-4717-b8a7-0c02c088160e will_not_be_exported rdb 2.1 kB ready 8a25dbba-dac7-49bf-854c-5f1da6a545bc true false few seconds ago few seconds ago few seconds ago fr-par false
🟩🟩🟩 JSON STDOUT 🟩🟩🟩
[
Expand All @@ -17,7 +17,7 @@ a929798a-28be-4717-b8a7-0c02c088160e will_not_be_exported rdb 2.1 k
"updated_at": "1970-01-01T00:00:00.0Z",
"instance_name": "cli-test",
"is_exported": true,
"url_expired": false,
"url_expired": true,
"region": "fr-par",
"same_region": false
},
Expand Down
Loading