Skip to content
Merged
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
20 changes: 10 additions & 10 deletions src/content/partials/workers/wrangler-commands/kv.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -173,9 +173,9 @@ This command requires a `--binding` or `--namespace-id` flag.
- `--path` <MetaInfo text="optional" />
- When defined, the value is loaded from the file at `--path` rather than reading it from the `VALUE` argument. This is ideal for security-sensitive operations because it avoids saving keys and values into your terminal history.
- `--binding` string
- The binding name of the namespace, as stored in the `wrangler.toml` file, to delete.
- The binding name of the namespace, as stored in the `wrangler.toml` file, to write to.
- `--namespace-id` <Type text="string" />
- The ID of the namespace to delete.
- The ID of the namespace to write to.
- `--env` <Type text="string" /> <MetaInfo text="optional" />
- Perform on a specific environment.
- `--preview` <Type text="boolean" /> <MetaInfo text="optional" />
Expand Down Expand Up @@ -245,9 +245,9 @@ This command requires `--binding` or `--namespace-id`.
:::

- `--binding` <Type text="string" />
- The binding name of the namespace, as stored in the `wrangler.toml` file, to delete.
- The binding name of the namespace, as stored in the `wrangler.toml` file, to list from.
- `--namespace-id` <Type text="string" />
- The ID of the namespace to delete.
- The ID of the namespace to list from.
- `--env` <Type text="string" /> <MetaInfo text="optional" />
- Perform on a specific environment.
- `--preview` <Type text="boolean" /> <MetaInfo text="optional" />
Expand Down Expand Up @@ -333,9 +333,9 @@ Exactly one of `--binding` or `--namespace-id` is required.
- `KEY` <Type text="string" /> <MetaInfo text="required" />
- The key value to get.
- `--binding` <Type text="string" />
- The binding name of the namespace, as stored in the `wrangler.toml` file, to delete.
- The binding name of the namespace, as stored in the `wrangler.toml` file, to delete from.
- `--namespace-id` <Type text="string" />
- The ID of the namespace to delete.
- The ID of the namespace to delete from.
- `--env` <Type text="string" /> <MetaInfo text="optional" />
- Perform on a specific environment.
- `--preview` <Type text="boolean" /> <MetaInfo text="optional" />
Expand Down Expand Up @@ -385,9 +385,9 @@ This command requires `--binding` or `--namespace-id`.
- `FILENAME` <Type text="string" /> <MetaInfo text="required" />
- The JSON file containing an array of key-value pairs to write to the namespace.
- `--binding` <Type text="string" />
- The binding name of the namespace, as stored in the `wrangler.toml` file, to delete.
- The binding name of the namespace, as stored in the `wrangler.toml` file, to write to.
- `--namespace-id` <Type text="string" />
- The ID of the namespace to delete.
- The ID of the namespace to write to.
- `--env` <Type text="string" /> <MetaInfo text="optional" />
- Perform on a specific environment.
- `--preview` <Type text="boolean" /> <MetaInfo text="optional" />
Expand Down Expand Up @@ -467,9 +467,9 @@ This command requires `--binding` or `--namespace-id`.
- `FILENAME` <Type text="string" /> <MetaInfo text="required" />
- The JSON file containing an array of keys to delete from the namespace.
- `--binding` <Type text="string" />
- The binding name of the namespace, as stored in the `wrangler.toml` file, to delete.
- The binding name of the namespace, as stored in the `wrangler.toml` file, to delete from.
- `--namespace-id` <Type text="string" />
- The ID of the namespace to delete.
- The ID of the namespace to delete from.
- `--env` <Type text="string" /> <MetaInfo text="optional" />
- Perform on a specific environment.
- `--preview` <Type text="boolean" /> <MetaInfo text="optional" />
Expand Down
Loading