Skip to content

Commit

Permalink
Fix more bad links
Browse files Browse the repository at this point in the history
  • Loading branch information
JoshMock committed Nov 21, 2024
1 parent 48c0503 commit cc4050c
Show file tree
Hide file tree
Showing 15 changed files with 99 additions and 99 deletions.
6 changes: 3 additions & 3 deletions docs/reference-shared-types--global-msearch.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -75,11 +75,11 @@ interface MsearchMultisearchBody {
aggregations?: Record<string, <<AggregationsAggregationContainer>>>
aggs?: Record<string, <<AggregationsAggregationContainer>>>
collapse?: <<SearchFieldCollapse>>
pass:[/**] @property query Defines the search definition using the <<Query>> DSL. */
pass:[/**] @property query Defines the search definition using the Query DSL. */
query?: <<QueryDslQueryContainer>>
pass:[/**] @property explain If true, returns detailed information about score computation as part of a hit. */
explain?: boolean
pass:[/**] @property ext <<Configuration>> of search extensions defined by Elasticsearch plugins. */
pass:[/**] @property ext Configuration of search extensions defined by Elasticsearch plugins. */
ext?: Record<string, any>
pass:[/**] @property stored_fields List of stored fields to return as part of a hit. If no fields are specified, no stored fields are included in the response. If this field is specified, the _source parameter defaults to false. You can pass _source: true to return both source fields and stored fields in the search response. */
stored_fields?: <<Fields>>
Expand Down Expand Up @@ -109,7 +109,7 @@ interface MsearchMultisearchBody {
fields?: (<<QueryDslFieldAndFormat>> | <<Field>>)[]
pass:[/**] @property terminate_after Maximum number of documents to collect for each shard. If a query reaches this limit, Elasticsearch terminates the query early. Elasticsearch collects documents before sorting. Defaults to 0, which does not terminate query execution early. */
terminate_after?: <<long>>
pass:[/**] @property stats <<Stats>> groups to associate with the search. Each group maintains a statistics aggregation for its associated searches. You can retrieve these stats using the indices stats API. */
pass:[/**] @property stats Stats groups to associate with the search. Each group maintains a statistics aggregation for its associated searches. You can retrieve these stats using the indices stats API. */
stats?: string[]
pass:[/**] @property timeout Specifies the period of time to wait for a response from each shard. If no response is received before the timeout expires, the request fails and returns an error. Defaults to no timeout. */
timeout?: string
Expand Down
2 changes: 1 addition & 1 deletion docs/reference-shared-types--global-mtermvectors.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ interface MtermvectorsOperation {
fields?: <<Fields>>
pass:[/**] @property field_statistics If `true`, the response includes the document count, sum of document frequencies, and sum of total term frequencies. */
field_statistics?: boolean
pass:[/**] @property filter <<Filter>> terms based on their tf-idf scores. */
pass:[/**] @property filter Filter terms based on their tf-idf scores. */
filter?: <<TermvectorsFilter>>
pass:[/**] @property offsets If `true`, the response includes term offsets. */
offsets?: boolean
Expand Down
2 changes: 1 addition & 1 deletion docs/reference-shared-types--global-reindex.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ interface ReindexResponse {
interface ReindexSource {
pass:[/**] @property index The name of the data stream, index, or alias you are copying from. Accepts a comma-separated list to reindex from multiple sources. */
index: <<Indices>>
pass:[/**] @property query Specifies the documents to reindex using the <<Query>> DSL. */
pass:[/**] @property query Specifies the documents to reindex using the Query DSL. */
query?: <<QueryDslQueryContainer>>
pass:[/**] @property remote A remote instance of Elasticsearch that you want to index from. */
remote?: <<ReindexRemoteSource>>
Expand Down
2 changes: 1 addition & 1 deletion docs/reference-shared-types--global-search-types.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -549,7 +549,7 @@ interface SearchHighlightBase {
pass:[/**] @property fragment_size The size of the highlighted fragment in characters. */
fragment_size?: <<integer>>
highlight_filter?: boolean
pass:[/**] @property highlight_query <<Highlight>> matches for a query other than the search query. This is especially useful if you use a rescore query because those are not taken into account by highlighting by default. */
pass:[/**] @property highlight_query Highlight matches for a query other than the search query. This is especially useful if you use a rescore query because those are not taken into account by highlighting by default. */
highlight_query?: <<QueryDslQueryContainer>>
max_fragment_length?: <<integer>>
pass:[/**] @property max_analyzed_offset If set to a non-negative value, highlighting stops at this defined maximum limit. The rest of the text is not processed, thus not highlighted and no error is returned The `max_analyzed_offset` query setting does not override the `index.highlight.max_analyzed_offset` setting, which prevails when it’s set to lower value than the query setting. */
Expand Down
24 changes: 12 additions & 12 deletions docs/reference-shared-types-ilm-types.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -39,31 +39,31 @@
<pre>
++++
interface IlmActions {
pass:[/**] @property allocate <<Phases>> allowed: warm, cold. */
pass:[/**] @property allocate Phases allowed: warm, cold. */
allocate?: <<IlmAllocateAction>>
pass:[/**] @property delete <<Phases>> allowed: delete. */
pass:[/**] @property delete Phases allowed: delete. */
delete?: <<IlmDeleteAction>>
pass:[/**] @property downsample <<Phases>> allowed: hot, warm, cold. */
pass:[/**] @property downsample Phases allowed: hot, warm, cold. */
downsample?: <<IlmDownsampleAction>>
pass:[/**] @property freeze The freeze action is a noop in 8.x */
freeze?: <<EmptyObject>>
pass:[/**] @property forcemerge <<Phases>> allowed: hot, warm. */
pass:[/**] @property forcemerge Phases allowed: hot, warm. */
forcemerge?: <<IlmForceMergeAction>>
pass:[/**] @property migrate <<Phases>> allowed: warm, cold. */
pass:[/**] @property migrate Phases allowed: warm, cold. */
migrate?: <<IlmMigrateAction>>
pass:[/**] @property readonly <<Phases>> allowed: hot, warm, cold. */
pass:[/**] @property readonly Phases allowed: hot, warm, cold. */
readonly?: <<EmptyObject>>
pass:[/**] @property rollover <<Phases>> allowed: hot. */
pass:[/**] @property rollover Phases allowed: hot. */
rollover?: <<IlmRolloverAction>>
pass:[/**] @property set_priority <<Phases>> allowed: hot, warm, cold. */
pass:[/**] @property set_priority Phases allowed: hot, warm, cold. */
set_priority?: <<IlmSetPriorityAction>>
pass:[/**] @property searchable_snapshot <<Phases>> allowed: hot, cold, frozen. */
pass:[/**] @property searchable_snapshot Phases allowed: hot, cold, frozen. */
searchable_snapshot?: <<IlmSearchableSnapshotAction>>
pass:[/**] @property shrink <<Phases>> allowed: hot, warm. */
pass:[/**] @property shrink Phases allowed: hot, warm. */
shrink?: <<IlmShrinkAction>>
pass:[/**] @property unfollow <<Phases>> allowed: hot, warm, cold, frozen. */
pass:[/**] @property unfollow Phases allowed: hot, warm, cold, frozen. */
unfollow?: <<EmptyObject>>
pass:[/**] @property wait_for_snapshot <<Phases>> allowed: delete. */
pass:[/**] @property wait_for_snapshot Phases allowed: delete. */
wait_for_snapshot?: <<IlmWaitForSnapshotAction>>
}
[pass]
Expand Down
8 changes: 4 additions & 4 deletions docs/reference-shared-types-indices-types.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
<pre>
++++
interface IndicesAlias {
pass:[/**] @property filter <<Query>> used to limit documents the alias can access. */
pass:[/**] @property filter Query used to limit documents the alias can access. */
filter?: <<QueryDslQueryContainer>>
pass:[/**] @property index_routing Value used to route indexing operations to a specific shard. If specified, this overwrites the `routing` value for indexing operations. */
index_routing?: <<Routing>>
Expand All @@ -66,7 +66,7 @@ interface IndicesAlias {
<pre>
++++
interface IndicesAliasDefinition {
pass:[/**] @property filter <<Query>> used to limit documents the alias can access. */
pass:[/**] @property filter Query used to limit documents the alias can access. */
filter?: <<QueryDslQueryContainer>>
pass:[/**] @property index_routing Value used to route indexing operations to a specific shard. If specified, this overwrites the `routing` value for indexing operations. */
index_routing?: string
Expand Down Expand Up @@ -644,7 +644,7 @@ interface IndicesIndexSettingsAnalysis {
<pre>
++++
interface IndicesIndexSettingsLifecycle {
pass:[/**] @property name The name of the policy to use to manage the index. For information about how Elasticsearch applies policy changes, see <<Policy>> updates. */
pass:[/**] @property name The name of the policy to use to manage the index. For information about how Elasticsearch applies policy changes, see Policy updates. */
name?: <<Name>>
pass:[/**] @property indexing_complete Indicates whether or not the index has been rolled over. Automatically set to true when ILM completes the rollover action. You can explicitly set it to skip rollover. */
indexing_complete?: <<SpecUtilsStringified>><boolean>
Expand Down Expand Up @@ -780,7 +780,7 @@ interface IndicesIndexTemplateSummary {
aliases?: Record<<<IndexName>>, <<IndicesAlias>>>
pass:[/**] @property mappings Mapping for fields in the index. If specified, this mapping can include field names, field data types, and mapping parameters. */
mappings?: <<MappingTypeMapping>>
pass:[/**] @property settings <<Configuration>> options for the index. */
pass:[/**] @property settings Configuration options for the index. */
settings?: <<IndicesIndexSettings>>
lifecycle?: <<IndicesDataStreamLifecycleWithRollover>>
}
Expand Down
2 changes: 1 addition & 1 deletion docs/reference-shared-types-inference-types.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ type InferenceDenseVector = <<float>>[]
interface InferenceInferenceEndpoint {
pass:[/**] @property service The service type */
service: string
pass:[/**] @property service_settings <<Settings>> specific to the service */
pass:[/**] @property service_settings Settings specific to the service */
service_settings: <<InferenceServiceSettings>>
pass:[/**] @property task_settings Task settings specific to the service and task type */
task_settings?: <<InferenceTaskSettings>>
Expand Down
4 changes: 2 additions & 2 deletions docs/reference-shared-types-ingest-types.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -463,7 +463,7 @@ interface IngestForeachProcessor extends <<IngestProcessorBase>> {
field: <<Field>>
pass:[/**] @property ignore_missing If `true`, the processor silently exits without changing the document if the `field` is `null` or missing. */
ignore_missing?: boolean
pass:[/**] @property processor <<Ingest>> processor to run on each element. */
pass:[/**] @property processor Ingest processor to run on each element. */
processor: <<IngestProcessorContainer>>
}
[pass]
Expand Down Expand Up @@ -1043,7 +1043,7 @@ interface IngestProcessorContainer {
fingerprint?: <<IngestFingerprintProcessor>>
pass:[/**] @property foreach Runs an ingest processor on each element of an array or object. */
foreach?: <<IngestForeachProcessor>>
pass:[/**] @property ip_location Currently an undocumented alias for GeoIP <<Processor>>. */
pass:[/**] @property ip_location Currently an undocumented alias for GeoIP Processor. */
ip_location?: <<IngestIpLocationProcessor>>
pass:[/**] @property geo_grid Converts geo-grid definitions of grid tiles or cells to regular bounding boxes or polygons which describe their shape. This is useful if there is a need to interact with the tile shapes as spatially indexable fields. */
geo_grid?: <<IngestGeoGridProcessor>>
Expand Down
6 changes: 3 additions & 3 deletions docs/reference-shared-types-logstash-types.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -45,11 +45,11 @@ interface LogstashPipeline {
last_modified: <<DateTime>>
pass:[/**] @property pipeline_metadata Optional metadata about the pipeline. May have any contents. This metadata is not generated or used by Elasticsearch or Logstash. */
pipeline_metadata: <<LogstashPipelineMetadata>>
pass:[/**] @property username <<User>> who last updated the pipeline. */
pass:[/**] @property username User who last updated the pipeline. */
username: string
pass:[/**] @property pipeline <<Configuration>> for the pipeline. */
pass:[/**] @property pipeline Configuration for the pipeline. */
pipeline: string
pass:[/**] @property pipeline_settings <<Settings>> for the pipeline. Supports only flat keys in dot notation. */
pass:[/**] @property pipeline_settings Settings for the pipeline. Supports only flat keys in dot notation. */
pipeline_settings: <<LogstashPipelineSettings>>
}
[pass]
Expand Down
Loading

0 comments on commit cc4050c

Please sign in to comment.