Skip to content

Commit 0c91cb9

Browse files
committed
Add failures
1 parent de20075 commit 0c91cb9

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

specification/_global/capabilities/CapabilitiesResponse.ts

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

20-
import { Name } from '@_types/common'
20+
import { Id, Name } from '@_types/common'
2121
import { NodeStatistics } from '@_types/Node'
2222

2323
export class Response {
2424
body: {
2525
_nodes: NodeStatistics
2626
cluster_name: Name
2727
supported: boolean | null
28+
failures?: FailedNodeException[]
2829
}
2930
}
31+
32+
export class FailedNodeException {
33+
node_id: Id
34+
}

0 commit comments

Comments
 (0)