// Licensed to the Apache Software Foundation (ASF) under one // or more contributor license agreements. See the NOTICE file // distributed with this work for additional information // regarding copyright ownership. The ASF licenses this file // to you under the Apache License, Version 2.0 (the // "License"); you may not use this file except in compliance // with the License. You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, // software distributed under the License is distributed on an // "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY // KIND, either express or implied. See the License for the // specific language governing permissions and limitations // under the License. package org.apache.cloudstack.api.response; import org.apache.cloudstack.acl.RoleType; import org.apache.cloudstack.api.ApiConstants; import org.apache.cloudstack.api.BaseResponse; import com.cloud.network.rules.HealthCheckPolicy; import com.cloud.serializer.Param; import com.google.gson.annotations.SerializedName; public class LBHealthCheckPolicyResponse extends BaseResponse { @SerializedName("id") @Param(description = "the LB HealthCheck policy ID") private String id; @SerializedName("pingpath") @Param(description = "the pingpath of the healthcheck policy") private String pingpath; @SerializedName("description") @Param(description = "the description of the healthcheck policy") private String description; @SerializedName("state") @Param(description = "the state of the policy") private String state; @SerializedName("responsetime") @Param(description = "Time to wait when receiving a response from the health check") private int responseTime; @SerializedName("healthcheckinterval") @Param(description = "Amount of time between health checks") private int healthcheckInterval; @SerializedName("healthcheckthresshold") @Param(description = "Number of consecutive health check success before declaring an instance healthy") private int healthcheckthresshold; @SerializedName("unhealthcheckthresshold") @Param(description = "Number of consecutive health check failures before declaring an instance unhealthy.") private int unhealthcheckthresshold; @SerializedName(ApiConstants.FOR_DISPLAY) @Param(description = "is policy for display to the regular user", since = "4.4", authorized = {RoleType.Admin}) private Boolean forDisplay; public void setId(String id) { this.id = id; } public String getpingpath() { return pingpath; } public void setpingpath(String pingpath) { this.pingpath = pingpath; } public String getDescription() { return description; } public void setDescription(String description) { this.description = description; } public String getState() { return state; } public void setState(String state) { this.state = state; } public LBHealthCheckPolicyResponse(HealthCheckPolicy healthcheckpolicy) { if (healthcheckpolicy.isRevoke()) { this.setState("Revoked"); } if (healthcheckpolicy.getUuid() != null) setId(healthcheckpolicy.getUuid()); this.pingpath = healthcheckpolicy.getpingpath(); this.healthcheckInterval = healthcheckpolicy.getHealthcheckInterval(); this.responseTime = healthcheckpolicy.getResponseTime(); this.healthcheckthresshold = healthcheckpolicy.getHealthcheckThresshold(); this.unhealthcheckthresshold = healthcheckpolicy.getUnhealthThresshold(); this.forDisplay = healthcheckpolicy.isDisplay(); this.description = healthcheckpolicy.getDescription(); setObjectName("healthcheckpolicy"); } public void setForDisplay(Boolean forDisplay) { this.forDisplay = forDisplay; } }