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,9 +45,9 @@ Create or update an alias. Adds a data stream or index to an alias.
[source,ts]
----
interface IndicesUpdateAliasesRequest extends <<shared-type-request-base, RequestBase>> {
master_timeout?: <<shared-type-duration, Duration>>
timeout?: <<shared-type-duration, Duration>>
interface IndicesUpdateAliasesRequest extends <<RequestBase>> {
master_timeout?: <<Duration>>
timeout?: <<Duration>>
actions?: IndicesUpdateAliasesAction[]
}
----
@ -57,6 +57,6 @@ interface IndicesUpdateAliasesRequest extends <<shared-type-request-base, Reques
[source,ts]
----
type IndicesUpdateAliasesResponse = <<shared-type-acknowledged-response-base, AcknowledgedResponseBase>>
type IndicesUpdateAliasesResponse = <<AcknowledgedResponseBase>>
----