aboutsummaryrefslogtreecommitdiffstats
path: root/orchestrator/src/main/java/com/yahoo/vespa/orchestrator/resources/ServiceResource.java
blob: 09fde807d1fc66542bfb1fba3d3b917476444031 (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
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.vespa.orchestrator.resources;

import com.fasterxml.jackson.annotation.JsonProperty;
import com.yahoo.vespa.applicationmodel.ClusterId;
import com.yahoo.vespa.applicationmodel.ConfigId;
import com.yahoo.vespa.applicationmodel.ServiceStatusInfo;
import com.yahoo.vespa.applicationmodel.ServiceType;

/**
 * @author hakonhall
 */
public class ServiceResource {
    @JsonProperty("clusterId")
    public ClusterId clusterId;

    @JsonProperty("serviceType")
    public ServiceType serviceType;

    @JsonProperty("configId")
    public ConfigId configId;

    @JsonProperty("status")
    public ServiceStatusInfo serviceStatusInfo;
}