aboutsummaryrefslogtreecommitdiffstats
path: root/orchestrator-restapi/src/main/java/com/yahoo/vespa/orchestrator/restapi/HostSuspensionApi.java
blob: a5ca15d2d150431886605ab379bba3e4510f54bb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.vespa.orchestrator.restapi;

import com.yahoo.vespa.orchestrator.restapi.wire.BatchHostSuspendRequest;
import com.yahoo.vespa.orchestrator.restapi.wire.BatchOperationResult;

import javax.ws.rs.Consumes;
import javax.ws.rs.PUT;
import javax.ws.rs.Produces;
import javax.ws.rs.core.MediaType;

public interface HostSuspensionApi {
    /**
     * Path prefix for this api. Resources implementing this API should use this with a @Path annotation.
     */
    String PATH_PREFIX = "/v1/suspensions/hosts";

    /**
     * Ask for permission to temporarily suspend all services on a set of hosts.
     *
     * See HostApi::suspend for semantics of suspending a host.
     *
     * On failure, it tries to resume ALL hosts. It needs to try to resume all hosts because any or all hosts
     * may have been suspended in an earlier attempt. Ending with resumption of all hosts makes sure other
     * batch-requests for suspension of hosts succeed.
     */
    @PUT
    @Produces(MediaType.APPLICATION_JSON)
    @Consumes(MediaType.APPLICATION_JSON)
    BatchOperationResult suspendAll(BatchHostSuspendRequest request);
}