com.aliyuncs.cdn.model.v20141111.DescribeDomainISPDataResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aliyun-java-sdk-cdn Show documentation
Show all versions of aliyun-java-sdk-cdn 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.cdn.model.v20141111;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.cdn.transform.v20141111.DescribeDomainISPDataResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeDomainISPDataResponse extends AcsResponse {
private String requestId;
private String domainName;
private String dataInterval;
private String startTime;
private String endTime;
private List value;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public String getDomainName() {
return this.domainName;
}
public void setDomainName(String domainName) {
this.domainName = domainName;
}
public String getDataInterval() {
return this.dataInterval;
}
public void setDataInterval(String dataInterval) {
this.dataInterval = dataInterval;
}
public String getStartTime() {
return this.startTime;
}
public void setStartTime(String startTime) {
this.startTime = startTime;
}
public String getEndTime() {
return this.endTime;
}
public void setEndTime(String endTime) {
this.endTime = endTime;
}
public List getValue() {
return this.value;
}
public void setValue(List value) {
this.value = value;
}
public static class ISPProportionData {
private String iSP;
private String proportion;
private String ispEname;
private String avgObjectSize;
private String avgResponseTime;
private String bps;
private String qps;
private String avgResponseRate;
private String byteHitRate;
private String reqHitRate;
private String reqErrRate;
private String totalBytes;
private String bytesProportion;
private String totalQuery;
public String getISP() {
return this.iSP;
}
public void setISP(String iSP) {
this.iSP = iSP;
}
public String getProportion() {
return this.proportion;
}
public void setProportion(String proportion) {
this.proportion = proportion;
}
public String getIspEname() {
return this.ispEname;
}
public void setIspEname(String ispEname) {
this.ispEname = ispEname;
}
public String getAvgObjectSize() {
return this.avgObjectSize;
}
public void setAvgObjectSize(String avgObjectSize) {
this.avgObjectSize = avgObjectSize;
}
public String getAvgResponseTime() {
return this.avgResponseTime;
}
public void setAvgResponseTime(String avgResponseTime) {
this.avgResponseTime = avgResponseTime;
}
public String getBps() {
return this.bps;
}
public void setBps(String bps) {
this.bps = bps;
}
public String getQps() {
return this.qps;
}
public void setQps(String qps) {
this.qps = qps;
}
public String getAvgResponseRate() {
return this.avgResponseRate;
}
public void setAvgResponseRate(String avgResponseRate) {
this.avgResponseRate = avgResponseRate;
}
public String getByteHitRate() {
return this.byteHitRate;
}
public void setByteHitRate(String byteHitRate) {
this.byteHitRate = byteHitRate;
}
public String getReqHitRate() {
return this.reqHitRate;
}
public void setReqHitRate(String reqHitRate) {
this.reqHitRate = reqHitRate;
}
public String getReqErrRate() {
return this.reqErrRate;
}
public void setReqErrRate(String reqErrRate) {
this.reqErrRate = reqErrRate;
}
public String getTotalBytes() {
return this.totalBytes;
}
public void setTotalBytes(String totalBytes) {
this.totalBytes = totalBytes;
}
public String getBytesProportion() {
return this.bytesProportion;
}
public void setBytesProportion(String bytesProportion) {
this.bytesProportion = bytesProportion;
}
public String getTotalQuery() {
return this.totalQuery;
}
public void setTotalQuery(String totalQuery) {
this.totalQuery = totalQuery;
}
}
@Override
public DescribeDomainISPDataResponse getInstance(UnmarshallerContext context) {
return DescribeDomainISPDataResponseUnmarshaller.unmarshall(this, context);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy