Skip to content

Commit 9a70a07

Browse files
committed
rename to RemoteClusterPrivilege
1 parent 57db4e8 commit 9a70a07

File tree

4 files changed

+36
-36
lines changed

4 files changed

+36
-36
lines changed

output/schema/schema.json

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

specification/security/_types/Privileges.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ export enum ClusterPrivilege {
202202
* The subset of cluster level privileges that can be defined for remote clusters.
203203
* @availability stack
204204
*/
205-
export enum ClusterPrivilegeForRemote {
205+
export enum RemoteClusterPrivilege {
206206
/**
207207
* @availability stack since=8.14.0
208208
*/
@@ -285,7 +285,7 @@ export class RemoteClusterPrivileges {
285285
/**
286286
* The cluster level privileges that owners of the role have on the remote cluster.
287287
*/
288-
privileges: ClusterPrivilegeForRemote[]
288+
privileges: RemoteClusterPrivilege[]
289289
}
290290

291291
export class UserIndicesPrivileges {

specification/security/get_builtin_privileges/SecurityGetBuiltinPrivilegesResponse.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,14 +19,14 @@
1919

2020
import {
2121
ClusterPrivilege,
22-
ClusterPrivilegeForRemote
22+
RemoteClusterPrivilege
2323
} from '@security/_types/Privileges'
2424
import { IndexName } from '@_types/common'
2525

2626
export class Response {
2727
body: {
2828
cluster: ClusterPrivilege[]
2929
index: IndexName[]
30-
remote_cluster: ClusterPrivilegeForRemote[]
30+
remote_cluster: RemoteClusterPrivilege[]
3131
}
3232
}

0 commit comments

Comments
 (0)