Skip to content

Commit 3a9f5c0

Browse files
committed
Fix get_builtin_privileges:wq
1 parent c1ff4fa commit 3a9f5c0

File tree

4 files changed

+37
-7
lines changed

4 files changed

+37
-7
lines changed

output/openapi/elasticsearch-openapi.json

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

output/schema/schema.json

Lines changed: 17 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: 2 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

specification/security/get_builtin_privileges/SecurityGetBuiltinPrivilegesResponse.ts

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,16 @@
1717
* under the License.
1818
*/
1919

20+
import {
21+
ClusterPrivilege,
22+
RemoteClusterPrivilege
23+
} from '@security/_types/Privileges'
2024
import { IndexName } from '@_types/common'
2125

2226
export class Response {
23-
body: { cluster: string[]; index: IndexName[] }
27+
body: {
28+
cluster: ClusterPrivilege[]
29+
index: IndexName[]
30+
remote_cluster: RemoteClusterPrivilege[]
31+
}
2432
}

0 commit comments

Comments
 (0)