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,11 +45,11 @@ Delete a dangling index. If Elasticsearch encounters index data that is absent f
[source,ts]
----
interface DanglingIndicesDeleteDanglingIndexRequest extends <<shared-type-request-base, RequestBase>> {
index_uuid: <<shared-type-uuid, Uuid>>
interface DanglingIndicesDeleteDanglingIndexRequest extends <<RequestBase>> {
index_uuid: <<Uuid>>
accept_data_loss: boolean
master_timeout?: <<shared-type-duration, Duration>>
timeout?: <<shared-type-duration, Duration>>
master_timeout?: <<Duration>>
timeout?: <<Duration>>
}
----
@ -58,6 +58,6 @@ interface DanglingIndicesDeleteDanglingIndexRequest extends <<shared-type-reques
[source,ts]
----
type DanglingIndicesDeleteDanglingIndexResponse = <<shared-type-acknowledged-response-base, AcknowledgedResponseBase>>
type DanglingIndicesDeleteDanglingIndexResponse = <<AcknowledgedResponseBase>>
----