Skip to content

Commit

Permalink
Fix stray invalid type links
Browse files Browse the repository at this point in the history
  • Loading branch information
JoshMock committed Nov 21, 2024
1 parent 13a72d6 commit 48c0503
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/reference-shared-types-ml-types.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,7 @@ interface MlAnomalyExplanation {
anomaly_characteristics_impact?: <<integer>>
pass:[/**] @property anomaly_length Length of the detected anomaly in the number of buckets. */
anomaly_length?: <<integer>>
pass:[/**] @property anomaly_type <<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
Expand Down
2 changes: 1 addition & 1 deletion docs/reference-shared-types-nodes-types.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -384,7 +384,7 @@ interface NodesDataPathStats {
total?: string
pass:[/**] @property total_in_bytes Total size of the file store in bytes. */
total_in_bytes?: <<long>>
pass:[/**] @property type <<Type>> of the file store (ex: ext4). */
pass:[/**] @property type Type of the file store (ex: ext4). */
type?: string
}
[pass]
Expand Down
2 changes: 1 addition & 1 deletion docs/reference-shared-types.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -1264,7 +1264,7 @@ type Indices = <<IndexName>> | <<IndexName>>[]
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 <<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`. */
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?: <<ExpandWildcards>>
pass:[/**] @property ignore_unavailable If true, missing or closed indices are not included in the response. */
ignore_unavailable?: boolean
Expand Down

0 comments on commit 48c0503

Please sign in to comment.