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,16 +45,16 @@ Creates a snapshot in a repository.
[source,ts]
----
interface SnapshotCreateRequest extends <<shared-type-request-base, RequestBase>> {
repository: <<shared-type-name, Name>>
snapshot: <<shared-type-name, Name>>
master_timeout?: <<shared-type-duration, Duration>>
interface SnapshotCreateRequest extends <<RequestBase>> {
repository: <<Name>>
snapshot: <<Name>>
master_timeout?: <<Duration>>
wait_for_completion?: boolean
ignore_unavailable?: boolean
include_global_state?: boolean
indices?: <<shared-type-indices, Indices>>
indices?: <<Indices>>
feature_states?: string[]
metadata?: <<shared-type-metadata, Metadata>>
metadata?: <<Metadata>>
partial?: boolean
}
----