Skip to content

Commit af3aa8c

Browse files
Fix cluster.delete_component_template API (#1493) (#1516)
Co-authored-by: Philip Krauss <[email protected]>
1 parent e14d977 commit af3aa8c

File tree

3 files changed

+16
-6
lines changed

3 files changed

+16
-6
lines changed

output/schema/schema.json

Lines changed: 9 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

output/typescript/types.ts

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

specification/cluster/delete_component_template/ClusterDeleteComponentTemplateRequest.ts

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,18 +18,22 @@
1818
*/
1919

2020
import { RequestBase } from '@_types/Base'
21-
import { Name } from '@_types/common'
21+
import { Names } from '@_types/common'
2222
import { Time } from '@_types/Time'
2323

2424
/**
2525
* @rest_spec_name cluster.delete_component_template
2626
* @since 7.8.0
2727
* @stability stable
2828
* @doc_id indices-component-template
29+
* @cluster_privileges manage_index_templates,manage
2930
*/
3031
export interface Request extends RequestBase {
3132
path_parts: {
32-
name: Name
33+
/**
34+
* Comma-separated list or wildcard expression of component template names used to limit the request.
35+
*/
36+
name: Names
3337
}
3438
query_parameters: {
3539
/** @server_default 30s */

0 commit comments

Comments
 (0)