Skip to content

Commit 1d5d03a

Browse files
committed
make spec-format-fix
1 parent 8d5d969 commit 1d5d03a

File tree

4 files changed

+19
-6
lines changed

4 files changed

+19
-6
lines changed

specification/security/_types/RoleDescriptor.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,9 @@ import {
2525
ApplicationPrivileges,
2626
ClusterPrivilege,
2727
GlobalPrivilege,
28-
IndicesPrivileges, RemoteClusterPrivileges, RemoteIndicesPrivileges
28+
IndicesPrivileges,
29+
RemoteClusterPrivileges,
30+
RemoteIndicesPrivileges
2931
} from './Privileges'
3032

3133
export class RoleDescriptor {

specification/security/get_builtin_privileges/SecurityGetBuiltinPrivilegesResponse.ts

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

20+
import {
21+
ClusterPrivilege,
22+
ClusterPrivilegeForRemote
23+
} from '@security/_types/Privileges'
2024
import { IndexName } from '@_types/common'
21-
import {ClusterPrivilege, ClusterPrivilegeForRemote} from "@security/_types/Privileges";
2225

2326
export class Response {
24-
body: { cluster: ClusterPrivilege[]; index: IndexName[]; remote_cluster: ClusterPrivilegeForRemote[] }
27+
body: {
28+
cluster: ClusterPrivilege[]
29+
index: IndexName[]
30+
remote_cluster: ClusterPrivilegeForRemote[]
31+
}
2532
}

specification/security/get_role/types.ts

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,11 @@
1818
*/
1919

2020
import {
21-
ApplicationPrivileges, ClusterPrivilege,
22-
IndicesPrivileges, RemoteClusterPrivileges, RemoteIndicesPrivileges
21+
ApplicationPrivileges,
22+
ClusterPrivilege,
23+
IndicesPrivileges,
24+
RemoteClusterPrivileges,
25+
RemoteIndicesPrivileges
2326
} from '@security/_types/Privileges'
2427
import { RoleTemplate } from '@security/_types/RoleTemplate'
2528
import { Dictionary } from '@spec_utils/Dictionary'

specification/security/put_role/SecurityPutRoleRequest.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,8 @@
2020
import {
2121
ApplicationPrivileges,
2222
ClusterPrivilege,
23-
IndicesPrivileges, RemoteClusterPrivileges,
23+
IndicesPrivileges,
24+
RemoteClusterPrivileges,
2425
RemoteIndicesPrivileges
2526
} from '@security/_types/Privileges'
2627
import { Dictionary } from '@spec_utils/Dictionary'

0 commit comments

Comments
 (0)