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,10 +45,10 @@ Convert an index alias to a data stream. Converts an index alias to a data strea
[source,ts]
----
interface IndicesMigrateToDataStreamRequest extends <<shared-type-request-base, RequestBase>> {
name: <<shared-type-index-name, IndexName>>
master_timeout?: <<shared-type-duration, Duration>>
timeout?: <<shared-type-duration, Duration>>
interface IndicesMigrateToDataStreamRequest extends <<RequestBase>> {
name: <<IndexName>>
master_timeout?: <<Duration>>
timeout?: <<Duration>>
}
----
@ -57,6 +57,6 @@ interface IndicesMigrateToDataStreamRequest extends <<shared-type-request-base,
[source,ts]
----
type IndicesMigrateToDataStreamResponse = <<shared-type-acknowledged-response-base, AcknowledgedResponseBase>>
type IndicesMigrateToDataStreamResponse = <<AcknowledgedResponseBase>>
----