123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- [role="xpack"]
- [testenv="basic"]
- [[reset-transform]]
- = Reset {transform} API
- [subs="attributes"]
- ++++
- <titleabbrev>Reset {transform}</titleabbrev>
- ++++
- Resets a {transform}.
- [[reset-transform-request]]
- == {api-request-title}
- `POST _transform/<transform_id>/_reset`
- [[reset-transform-prereqs]]
- == {api-prereq-title}
- * Requires the `manage_transform` cluster privilege. This privilege is included
- in the `transform_admin` built-in role.
- [reset-transform-desc]]
- == {api-description-title}
- Before you can reset the {transform}, you must stop it; alternatively, use the
- `force` query parameter.
- If the destination index was created by the transform, it is deleted.
- [[reset-transform-path-parms]]
- == {api-path-parms-title}
- `<transform_id>`::
- (Required, string)
- include::{es-repo-dir}/rest-api/common-parms.asciidoc[tag=transform-id]
- [[reset-transform-query-parms]]
- == {api-query-parms-title}
- `force`::
- (Optional, Boolean)
- If this value is `true`, the {transform} is reset regardless of its current
- state. If it's false, the {transform} must be `stopped` before it can be reset.
- The default value is `false`
- `timeout`::
- (Optional, time)
- Period to wait for a response. If no response is received before the timeout
- expires, the request fails and returns an error. Defaults to `30s`.
- [[reset-transform-examples]]
- == {api-examples-title}
- [source,console]
- --------------------------------------------------
- POST _transform/ecommerce_transform/_reset
- --------------------------------------------------
- // TEST[skip:setup kibana sample data]
- When the {transform} is reset, you receive the following results:
- [source,console-result]
- ----
- {
- "acknowledged" : true
- }
- ----
|