You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/content/docs/workers/wrangler/commands.mdx
+4-46Lines changed: 4 additions & 46 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2045,6 +2045,8 @@ The minimum required Wrangler version to use this command is 3.66.0.
2045
2045
- The name of the interface to generate for the environment object.
2046
2046
- Not valid if the Worker uses the Service Worker syntax.
2047
2047
2048
+
2049
+
2048
2050
{/* <!--TODO Add examples of DTS generated output --> */}
2049
2051
2050
2052
## `workflows`
@@ -2061,7 +2063,7 @@ wrangler workflows list
2061
2063
2062
2064
### `view` | `describe`
2063
2065
2064
-
Show the current state of a Workflow.
2066
+
Get an existing Hyperdrive configuration.
2065
2067
2066
2068
```txt
2067
2069
wrangler workflows view <NAME>
@@ -2108,51 +2110,6 @@ Inspect and interact with specific instances of a Workflow.
2108
2110
wrangler workflows instances
2109
2111
```
2110
2112
2111
-
### `instances list`
2112
-
2113
-
List all instances of a Workflow (running, failed, and completed).
2114
-
2115
-
```txt
2116
-
wrangler workflows instances list <name>
2117
-
```
2118
-
2119
-
*`NAME` - `string` (required)
2120
-
* The name of the Workflow to list instances for.
2121
-
*`--reverse` - `boolean` (optional)
2122
-
* List instances from oldest to newest (newest at the bottom of the output).
2123
-
2124
-
### `instances describe`
2125
-
2126
-
Describe a specific Workflow instance. This is useful for debugging a specific run and inspecting its state.
2127
-
2128
-
```txt
2129
-
wrangler workflows instances list <name> <id>
2130
-
```
2131
-
2132
-
*`name` - `string` (required)
2133
-
* The name of the Workflow.
2134
-
*`id` - `string` (required)
2135
-
* The specific instance ID to describe.
2136
-
2137
-
You can describe the most recent instance of a Workflow by using `latest` as a positional. This avoids you needing to get the ID to inspect the latest run of a Workflow.
0 commit comments