forked from opensearch-project/opensearch-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeleteDanglingIndex.d.ts
34 lines (28 loc) · 1.01 KB
/
deleteDanglingIndex.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
/*
* Copyright OpenSearch Contributors
* SPDX-License-Identifier: Apache-2.0
*
* The OpenSearch Contributors require contributions made to
* this file be licensed under the Apache-2.0 license or a
* compatible open source license.
*
*/
/*
* This file was generated from the OpenSearch API Spec. Do NOT edit it
* manually. If you want to make changes, either update the spec or
* modify the API generator.
*/
import { ApiResponse } from '../../lib/Transport'
import * as Common from '../_types/_common'
import * as Global from '../_types/_global'
export type DanglingIndices_DeleteDanglingIndex_Request = Global.Params & {
accept_data_loss: boolean;
cluster_manager_timeout?: Common.Duration;
index_uuid: Common.Uuid;
master_timeout?: Common.Duration;
timeout?: Common.Duration;
}
export type DanglingIndices_DeleteDanglingIndex_Response = ApiResponse & {
body: DanglingIndices_DeleteDanglingIndex_ResponseBody;
}
export type DanglingIndices_DeleteDanglingIndex_ResponseBody = Common.AcknowledgedResponseBase