remove ip data type (#6647)
Signed-off-by: Melissa Vagi <vagimeli@amazon.com>
This commit is contained in:
parent
95d5675df8
commit
48d46a036b
|
@ -32,7 +32,7 @@ The following table lists the required and optional parameters for the `convert`
|
||||||
Parameter | Required/Optional | Description |
|
Parameter | Required/Optional | Description |
|
||||||
|-----------|-----------|-----------|
|
|-----------|-----------|-----------|
|
||||||
`field` | Required | The name of the field containing the data to be converted. Supports [template snippets]({{site.url}}{{site.baseurl}}/ingest-pipelines/create-ingest/#template-snippets). |
|
`field` | Required | The name of the field containing the data to be converted. Supports [template snippets]({{site.url}}{{site.baseurl}}/ingest-pipelines/create-ingest/#template-snippets). |
|
||||||
`type` | Required | The type to convert the field value to. The supported types are `integer`, `long`, `float`, `double`, `string`, `boolean`, `ip`, and `auto`. If the `type` is `boolean`, the value is set to `true` if the field value is a string `true` (ignoring case) and to `false` if the field value is a string `false` (ignoring case). If the value is not one of the allowed values, an error will occur. |
|
`type` | Required | The type to convert the field value to. The supported types are `integer`, `long`, `float`, `double`, `string`, `boolean`, and `auto`. If the `type` is `boolean`, the value is set to `true` if the field value is a string `true` (ignoring case) and to `false` if the field value is a string `false` (ignoring case). If the value is not one of the allowed values, an error will occur. |
|
||||||
`description` | Optional | A brief description of the processor. |
|
`description` | Optional | A brief description of the processor. |
|
||||||
`if` | Optional | A condition for running the processor. |
|
`if` | Optional | A condition for running the processor. |
|
||||||
`ignore_failure` | Optional | Specifies whether the processor continues execution even if it encounters errors. If set to `true`, failures are ignored. Default is `false`. |
|
`ignore_failure` | Optional | Specifies whether the processor continues execution even if it encounters errors. If set to `true`, failures are ignored. Default is `false`. |
|
||||||
|
|
Loading…
Reference in New Issue