com.aliyuncs.ga.model.v20191120.GetHealthStatusResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aliyun-java-sdk-ga Show documentation
Show all versions of aliyun-java-sdk-ga Show documentation
Aliyun Open API SDK for Java
Copyright (C) Alibaba Cloud Computing
All rights reserved.
版权所有 (C)阿里云计算有限公司
http://www.aliyun.com
/*
* Licensed 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 com.aliyuncs.ga.model.v20191120;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.ga.transform.v20191120.GetHealthStatusResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class GetHealthStatusResponse extends AcsResponse {
private String requestId;
private String listenerId;
private String healthStatus;
private List endpointGroups;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public String getListenerId() {
return this.listenerId;
}
public void setListenerId(String listenerId) {
this.listenerId = listenerId;
}
public String getHealthStatus() {
return this.healthStatus;
}
public void setHealthStatus(String healthStatus) {
this.healthStatus = healthStatus;
}
public List getEndpointGroups() {
return this.endpointGroups;
}
public void setEndpointGroups(List endpointGroups) {
this.endpointGroups = endpointGroups;
}
public static class EndpointGroupHealthStatuses {
private String endpointGroupId;
private String endpointGroupType;
private String healthStatus;
private List endpoints;
private List forwardingRuleIds;
public String getEndpointGroupId() {
return this.endpointGroupId;
}
public void setEndpointGroupId(String endpointGroupId) {
this.endpointGroupId = endpointGroupId;
}
public String getEndpointGroupType() {
return this.endpointGroupType;
}
public void setEndpointGroupType(String endpointGroupType) {
this.endpointGroupType = endpointGroupType;
}
public String getHealthStatus() {
return this.healthStatus;
}
public void setHealthStatus(String healthStatus) {
this.healthStatus = healthStatus;
}
public List getEndpoints() {
return this.endpoints;
}
public void setEndpoints(List endpoints) {
this.endpoints = endpoints;
}
public List getForwardingRuleIds() {
return this.forwardingRuleIds;
}
public void setForwardingRuleIds(List forwardingRuleIds) {
this.forwardingRuleIds = forwardingRuleIds;
}
public static class EndpointHealthStatuses {
private String endpointId;
private String address;
private String healthStatus;
private String healthDetail;
private Long port;
private String type;
public String getEndpointId() {
return this.endpointId;
}
public void setEndpointId(String endpointId) {
this.endpointId = endpointId;
}
public String getAddress() {
return this.address;
}
public void setAddress(String address) {
this.address = address;
}
public String getHealthStatus() {
return this.healthStatus;
}
public void setHealthStatus(String healthStatus) {
this.healthStatus = healthStatus;
}
public String getHealthDetail() {
return this.healthDetail;
}
public void setHealthDetail(String healthDetail) {
this.healthDetail = healthDetail;
}
public Long getPort() {
return this.port;
}
public void setPort(Long port) {
this.port = port;
}
public String getType() {
return this.type;
}
public void setType(String type) {
this.type = type;
}
}
}
@Override
public GetHealthStatusResponse getInstance(UnmarshallerContext context) {
return GetHealthStatusResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy