Skip to content

Commit

Permalink
Fix get_builtin_privileges:wq
Browse files Browse the repository at this point in the history
  • Loading branch information
pquentin committed Jan 2, 2025
1 parent c1ff4fa commit 3a9f5c0
Show file tree
Hide file tree
Showing 4 changed files with 37 additions and 7 deletions.
11 changes: 9 additions & 2 deletions output/openapi/elasticsearch-openapi.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

20 changes: 17 additions & 3 deletions output/schema/schema.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion output/typescript/types.ts

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,16 @@
* under the License.
*/

import {
ClusterPrivilege,
RemoteClusterPrivilege
} from '@security/_types/Privileges'
import { IndexName } from '@_types/common'

export class Response {
body: { cluster: string[]; index: IndexName[] }
body: {
cluster: ClusterPrivilege[]
index: IndexName[]
remote_cluster: RemoteClusterPrivilege[]
}
}

0 comments on commit 3a9f5c0

Please sign in to comment.