aboutsummaryrefslogtreecommitdiffstats
path: root/clustercontroller-utils/src/main/java/com/yahoo/vespa/clustercontroller/utils/staterestapi/response/UnitResponse.java
blob: 3ddb3e5f9364344daf8495db85d0e1c1f0bcae92 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.vespa.clustercontroller.utils.staterestapi.response;

import java.util.Map;

public interface UnitResponse {

    UnitAttributes getAttributes();
    CurrentUnitState getCurrentState();
    Map<String, SubUnitList> getSubUnits();
    UnitMetrics getMetrics();
    DistributionStates getDistributionStates();

}