File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 19
19
20
20
import { Dictionary } from '@spec_utils/Dictionary'
21
21
import { UserDefinedValue } from '@spec_utils/UserDefinedValue'
22
- import { Id , Indices , Names } from '@_types/common'
22
+ import { Id , IndexName , Names } from '@_types/common'
23
23
import { QueryContainer } from '@_types/query_dsl/abstractions'
24
24
import { ScriptLanguage } from '@_types/Scripting'
25
25
import { FieldSecurity } from './FieldSecurity'
@@ -204,7 +204,7 @@ export class IndicesPrivileges {
204
204
/**
205
205
* A list of indices (or index name patterns) to which the permissions in this entry apply.
206
206
*/
207
- names : Indices
207
+ names : IndexName [ ]
208
208
/**
209
209
* The index level privileges that owners of the role have on the specified indices.
210
210
*/
@@ -235,7 +235,7 @@ export class RemoteIndicesPrivileges {
235
235
/**
236
236
* A list of indices (or index name patterns) to which the permissions in this entry apply.
237
237
*/
238
- names : Indices
238
+ names : IndexName [ ]
239
239
/**
240
240
* The index level privileges that owners of the role have on the specified indices.
241
241
*/
@@ -261,7 +261,7 @@ export class UserIndicesPrivileges {
261
261
/**
262
262
* A list of indices (or index name patterns) to which the permissions in this entry apply.
263
263
*/
264
- names : Indices
264
+ names : IndexName [ ]
265
265
/**
266
266
* The index level privileges that owners of the role have on the specified indices.
267
267
*/
Original file line number Diff line number Diff line change 17
17
* under the License.
18
18
*/
19
19
20
- import { Indices } from '@_types/common'
20
+ import { IndexName } from '@_types/common'
21
21
22
22
export class Response {
23
- body : { cluster : string [ ] ; index : Indices }
23
+ body : { cluster : string [ ] ; index : IndexName [ ] }
24
24
}
You can’t perform that action at this time.
0 commit comments