com.aliyuncs.dcdn.model.v20180115.DescribeDcdnDomainRegionDataResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aliyun-java-sdk-dcdn Show documentation
Show all versions of aliyun-java-sdk-dcdn 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.dcdn.model.v20180115;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.dcdn.transform.v20180115.DescribeDcdnDomainRegionDataResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeDcdnDomainRegionDataResponse 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 RegionProportionData {
private String region;
private String proportion;
private String regionEname;
private String avgObjectSize;
private String avgResponseTime;
private String bps;
private String qps;
private String avgResponseRate;
private String totalBytes;
private String bytesProportion;
private String totalQuery;
public String getRegion() {
return this.region;
}
public void setRegion(String region) {
this.region = region;
}
public String getProportion() {
return this.proportion;
}
public void setProportion(String proportion) {
this.proportion = proportion;
}
public String getRegionEname() {
return this.regionEname;
}
public void setRegionEname(String regionEname) {
this.regionEname = regionEname;
}
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 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 DescribeDcdnDomainRegionDataResponse getInstance(UnmarshallerContext context) {
return DescribeDcdnDomainRegionDataResponseUnmarshaller.unmarshall(this, context);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy