aboutsummaryrefslogtreecommitdiffstats
path: root/orchestrator/src/main/java/com/yahoo/vespa/orchestrator/model/ApplicationApi.java
blob: 0ac602b106e00cd0eb77f0453f4302fee4bddc28 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// Copyright 2016 Yahoo Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.vespa.orchestrator.model;

import com.yahoo.vespa.applicationmodel.HostName;
import com.yahoo.vespa.orchestrator.status.HostStatus;

import java.util.List;

/**
 * The API a Policy has access to
 */
public interface ApplicationApi {
    String applicationInfo();

    List<ClusterApi> getClusters();

    void setHostState(HostName hostName, HostStatus status);
    List<HostName> getNodesInGroupWithStatus(HostStatus status);

    List<StorageNode> getUpStorageNodesInGroupInClusterOrder();
    List<StorageNode> getStorageNodesAllowedToBeDownInGroupInReverseClusterOrder();
}