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,7 +45,7 @@ Returns global and policy-level statistics about actions taken by snapshot lifec
[source,ts]
----
interface SlmGetStatsRequest extends <<shared-type-request-base, RequestBase>> {
interface SlmGetStatsRequest extends <<RequestBase>> {
}
----
@ -55,15 +55,15 @@ interface SlmGetStatsRequest extends <<shared-type-request-base, RequestBase>> {
[source,ts]
----
interface SlmGetStatsResponse {
retention_deletion_time: <<shared-type-duration, Duration>>
retention_deletion_time_millis: <<shared-type-duration-value, DurationValue>><<<shared-type-unit-millis, UnitMillis>>>
retention_failed: <<shared-type-long, long>>
retention_runs: <<shared-type-long, long>>
retention_timed_out: <<shared-type-long, long>>
total_snapshots_deleted: <<shared-type-long, long>>
total_snapshot_deletion_failures: <<shared-type-long, long>>
total_snapshots_failed: <<shared-type-long, long>>
total_snapshots_taken: <<shared-type-long, long>>
retention_deletion_time: <<Duration>>
retention_deletion_time_millis: <<DurationValue>><<<UnitMillis>>>
retention_failed: <<long>>
retention_runs: <<long>>
retention_timed_out: <<long>>
total_snapshots_deleted: <<long>>
total_snapshot_deletion_failures: <<long>>
total_snapshots_failed: <<long>>
total_snapshots_taken: <<long>>
policy_stats: string[]
}
----