-
Notifications
You must be signed in to change notification settings - Fork 115
Support for security remote_cluster and associated privileges #3125
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
8d5d969
1d5d03a
f03c118
57db4e8
9a70a07
ca54051
720e1f0
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Large diffs are not rendered by default.
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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
{ | ||
"dependencies": { | ||
"@stoplight/spectral-cli": "^6.13.1" | ||
"@stoplight/spectral-cli": "^6.14.1" | ||
} | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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[] | ||
jakelandis marked this conversation as resolved.
Show resolved
Hide resolved
|
||
index: IndexName[] | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Not for this PR, but I think this is wrong: |
||
remote_cluster: RemoteClusterPrivilege[] | ||
} | ||
} |
Uh oh!
There was an error while loading. Please reload this page.