Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions specification/security/_types/Privileges.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

import { Dictionary } from '@spec_utils/Dictionary'
import { UserDefinedValue } from '@spec_utils/UserDefinedValue'
import { Id, Indices, Names } from '@_types/common'
import { Id, IndexName, Names } from '@_types/common'
import { QueryContainer } from '@_types/query_dsl/abstractions'
import { ScriptLanguage } from '@_types/Scripting'
import { FieldSecurity } from './FieldSecurity'
Expand Down Expand Up @@ -204,7 +204,7 @@ export class IndicesPrivileges {
/**
* A list of indices (or index name patterns) to which the permissions in this entry apply.
*/
names: Indices
names: IndexName[]
/**
* The index level privileges that owners of the role have on the specified indices.
*/
Expand Down Expand Up @@ -235,7 +235,7 @@ export class RemoteIndicesPrivileges {
/**
* A list of indices (or index name patterns) to which the permissions in this entry apply.
*/
names: Indices
names: IndexName[]
/**
* The index level privileges that owners of the role have on the specified indices.
*/
Expand All @@ -261,7 +261,7 @@ export class UserIndicesPrivileges {
/**
* A list of indices (or index name patterns) to which the permissions in this entry apply.
*/
names: Indices
names: IndexName[]
/**
* The index level privileges that owners of the role have on the specified indices.
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@
* under the License.
*/

import { Indices } from '@_types/common'
import { IndexName } from '@_types/common'

export class Response {
body: { cluster: string[]; index: Indices }
body: { cluster: string[]; index: IndexName[] }
}
Loading