From 48c0503cde24e450e6e6538c1470adf808b7809d Mon Sep 17 00:00:00 2001 From: Josh Mock Date: Thu, 21 Nov 2024 10:54:07 -0600 Subject: [PATCH] Fix stray invalid type links --- docs/reference-shared-types-ml-types.asciidoc | 2 +- docs/reference-shared-types-nodes-types.asciidoc | 2 +- docs/reference-shared-types.asciidoc | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/reference-shared-types-ml-types.asciidoc b/docs/reference-shared-types-ml-types.asciidoc index 8d5d3517c..8f33826a4 100644 --- a/docs/reference-shared-types-ml-types.asciidoc +++ b/docs/reference-shared-types-ml-types.asciidoc @@ -245,7 +245,7 @@ interface MlAnomalyExplanation { anomaly_characteristics_impact?: <> pass:[/**] @property anomaly_length Length of the detected anomaly in the number of buckets. */ anomaly_length?: <> - pass:[/**] @property anomaly_type <> of the detected anomaly: `spike` or `dip`. */ + pass:[/**] @property anomaly_type Type of the detected anomaly: `spike` or `dip`. */ anomaly_type?: string pass:[/**] @property high_variance_penalty Indicates reduction of anomaly score for the bucket with large confidence intervals. If a bucket has large confidence intervals, the score is reduced. */ high_variance_penalty?: boolean diff --git a/docs/reference-shared-types-nodes-types.asciidoc b/docs/reference-shared-types-nodes-types.asciidoc index 6208830b5..0f20e63c4 100644 --- a/docs/reference-shared-types-nodes-types.asciidoc +++ b/docs/reference-shared-types-nodes-types.asciidoc @@ -384,7 +384,7 @@ interface NodesDataPathStats { total?: string pass:[/**] @property total_in_bytes Total size of the file store in bytes. */ total_in_bytes?: <> - pass:[/**] @property type <> of the file store (ex: ext4). */ + pass:[/**] @property type Type of the file store (ex: ext4). */ type?: string } [pass] diff --git a/docs/reference-shared-types.asciidoc b/docs/reference-shared-types.asciidoc index 8b29b14ef..7628c69d9 100644 --- a/docs/reference-shared-types.asciidoc +++ b/docs/reference-shared-types.asciidoc @@ -1264,7 +1264,7 @@ type Indices = <> | <>[] interface IndicesOptions { pass:[/**] @property allow_no_indices If false, the request returns an error if any wildcard expression, index alias, or `_all` value targets only missing or closed indices. This behavior applies even if the request targets other open indices. For example, a request targeting `foo*,bar*` returns an error if an index starts with `foo` but no index starts with `bar`. */ allow_no_indices?: boolean - pass:[/**] @property expand_wildcards <> of index that wildcard patterns can match. If the request can target data streams, this argument determines whether wildcard expressions match hidden data streams. Supports comma-separated values, such as `open,hidden`. */ + pass:[/**] @property expand_wildcards Type of index that wildcard patterns can match. If the request can target data streams, this argument determines whether wildcard expressions match hidden data streams. Supports comma-separated values, such as `open,hidden`. */ expand_wildcards?: <> pass:[/**] @property ignore_unavailable If true, missing or closed indices are not included in the response. */ ignore_unavailable?: boolean