Use section headers for shared types

This commit is contained in:
Josh Mock
2024-11-19 12:23:01 -06:00
parent 6151aab208
commit ab21735b57
469 changed files with 2639 additions and 2850 deletions

View File

@ -45,12 +45,12 @@ Update data stream lifecycles. Update the data stream lifecycle of the specified
[source,ts]
----
interface IndicesPutDataLifecycleRequest extends <<shared-type-request-base, RequestBase>> {
name: <<shared-type-data-stream-names, DataStreamNames>>
expand_wildcards?: <<shared-type-expand-wildcards, ExpandWildcards>>
master_timeout?: <<shared-type-duration, Duration>>
timeout?: <<shared-type-duration, Duration>>
data_retention?: <<shared-type-duration, Duration>>
interface IndicesPutDataLifecycleRequest extends <<RequestBase>> {
name: <<DataStreamNames>>
expand_wildcards?: <<ExpandWildcards>>
master_timeout?: <<Duration>>
timeout?: <<Duration>>
data_retention?: <<Duration>>
downsampling?: IndicesDataStreamLifecycleDownsampling
}
----
@ -60,6 +60,6 @@ interface IndicesPutDataLifecycleRequest extends <<shared-type-request-base, Req
[source,ts]
----
type IndicesPutDataLifecycleResponse = <<shared-type-acknowledged-response-base, AcknowledgedResponseBase>>
type IndicesPutDataLifecycleResponse = <<AcknowledgedResponseBase>>
----