Skip to content

Commit

Permalink
SCDN SDK Auto Released By xiaoyao,Version:1.1.0
Browse files Browse the repository at this point in the history
发布日志:
1, This is an example of release-log.
2, Please strictly follow this format to edit in English.
3, Format:Number + , + Space + Description
  • Loading branch information
jxyowen committed Sep 29, 2018
1 parent 658d033 commit 7f80c2e
Show file tree
Hide file tree
Showing 37 changed files with 1,125 additions and 123 deletions.
5 changes: 5 additions & 0 deletions aliyun-java-sdk-scdn/ChangeLog.txt
@@ -1,3 +1,8 @@
2018-09-29 Version: 1.1.0
1, This is an example of release-log.
2, Please strictly follow this format to edit in English.
3, Format:Number + , + Space + Description

2018-06-08 Version: 1.0.0
1, Add scdn interface,support scdn.

2 changes: 1 addition & 1 deletion aliyun-java-sdk-scdn/pom.xml
Expand Up @@ -3,7 +3,7 @@
<groupId>com.aliyun</groupId>
<artifactId>aliyun-java-sdk-scdn</artifactId>
<packaging>jar</packaging>
<version>1.0.0</version>
<version>1.1.0</version>
<name>aliyun-java-sdk-scdn</name>
<url>http://www.aliyun.com</url>
<description>Aliyun Open API SDK for Java
Expand Down
Expand Up @@ -14,7 +14,8 @@

package com.aliyuncs.scdn.model.v20171115;

import java.util.List;
import java.util.List;
import java.util.Map;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.scdn.transform.v20171115.DescribeScdnCertificateListResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
Expand Down
Expand Up @@ -32,16 +32,12 @@ public DescribeScdnDomainBpsDataRequest() {

private String ispNameEn;

private String securityToken;

private String domainName;

private String endTime;

private Long ownerId;

private String version;

private String interval;

public String getLocationNameEn() {
Expand Down Expand Up @@ -77,17 +73,6 @@ public void setIspNameEn(String ispNameEn) {
}
}

public String getSecurityToken() {
return this.securityToken;
}

public void setSecurityToken(String securityToken) {
this.securityToken = securityToken;
if(securityToken != null){
putQueryParameter("SecurityToken", securityToken);
}
}

public String getDomainName() {
return this.domainName;
}
Expand Down Expand Up @@ -121,17 +106,6 @@ public void setOwnerId(Long ownerId) {
}
}

public String getVersion() {
return this.version;
}

public void setVersion(String version) {
this.version = version;
if(version != null){
putQueryParameter("Version", version);
}
}

public String getInterval() {
return this.interval;
}
Expand Down
Expand Up @@ -14,7 +14,8 @@

package com.aliyuncs.scdn.model.v20171115;

import java.util.List;
import java.util.List;
import java.util.Map;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.scdn.transform.v20171115.DescribeScdnDomainDetailResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
Expand Down
@@ -0,0 +1,86 @@
/*
* 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.scdn.model.v20171115;

import com.aliyuncs.RpcAcsRequest;

/**
* @author auto create
* @version
*/
public class DescribeScdnDomainIspDataRequest extends RpcAcsRequest<DescribeScdnDomainIspDataResponse> {

public DescribeScdnDomainIspDataRequest() {
super("scdn", "2017-11-15", "DescribeScdnDomainIspData");
}

private String startTime;

private String domainName;

private String endTime;

private Long ownerId;

public String getStartTime() {
return this.startTime;
}

public void setStartTime(String startTime) {
this.startTime = startTime;
if(startTime != null){
putQueryParameter("StartTime", startTime);
}
}

public String getDomainName() {
return this.domainName;
}

public void setDomainName(String domainName) {
this.domainName = domainName;
if(domainName != null){
putQueryParameter("DomainName", domainName);
}
}

public String getEndTime() {
return this.endTime;
}

public void setEndTime(String endTime) {
this.endTime = endTime;
if(endTime != null){
putQueryParameter("EndTime", endTime);
}
}

public Long getOwnerId() {
return this.ownerId;
}

public void setOwnerId(Long ownerId) {
this.ownerId = ownerId;
if(ownerId != null){
putQueryParameter("OwnerId", ownerId.toString());
}
}

@Override
public Class<DescribeScdnDomainIspDataResponse> getResponseClass() {
return DescribeScdnDomainIspDataResponse.class;
}

}
@@ -0,0 +1,205 @@
/*
* 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.scdn.model.v20171115;

import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.scdn.transform.v20171115.DescribeScdnDomainIspDataResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;

/**
* @author auto create
* @version
*/
public class DescribeScdnDomainIspDataResponse extends AcsResponse {

private String requestId;

private String domainName;

private String dataInterval;

private String startTime;

private String endTime;

private List<IspProportionData> 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<IspProportionData> getValue() {
return this.value;
}

public void setValue(List<IspProportionData> 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 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 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 DescribeScdnDomainIspDataResponse getInstance(UnmarshallerContext context) {
return DescribeScdnDomainIspDataResponseUnmarshaller.unmarshall(this, context);
}
}

0 comments on commit 7f80c2e

Please sign in to comment.