index
int64 | repo_id
string | file_path
string | content
string |
|---|---|---|---|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/model
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/model/v20180510/DescribeDomainTopReferVisitRequest.java
|
/*
* 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.v20180510;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.cdn.Endpoint;
/**
* @author auto create
* @version
*/
public class DescribeDomainTopReferVisitRequest extends RpcAcsRequest<DescribeDomainTopReferVisitResponse> {
private String domainName;
private String endTime;
private String sortBy;
private String startTime;
public DescribeDomainTopReferVisitRequest() {
super("Cdn", "2018-05-10", "DescribeDomainTopReferVisit");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
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 String getSortBy() {
return this.sortBy;
}
public void setSortBy(String sortBy) {
this.sortBy = sortBy;
if(sortBy != null){
putQueryParameter("SortBy", sortBy);
}
}
public String getStartTime() {
return this.startTime;
}
public void setStartTime(String startTime) {
this.startTime = startTime;
if(startTime != null){
putQueryParameter("StartTime", startTime);
}
}
@Override
public Class<DescribeDomainTopReferVisitResponse> getResponseClass() {
return DescribeDomainTopReferVisitResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/model
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/model/v20180510/DescribeDomainTopReferVisitResponse.java
|
/*
* 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.v20180510;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.cdn.transform.v20180510.DescribeDomainTopReferVisitResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeDomainTopReferVisitResponse extends AcsResponse {
private String startTime;
private String requestId;
private String domainName;
private List<ReferList> topReferList;
public String getStartTime() {
return this.startTime;
}
public void setStartTime(String startTime) {
this.startTime = startTime;
}
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 List<ReferList> getTopReferList() {
return this.topReferList;
}
public void setTopReferList(List<ReferList> topReferList) {
this.topReferList = topReferList;
}
public static class ReferList {
private String flow;
private Float flowProportion;
private String visitData;
private String referDetail;
private Float visitProportion;
public String getFlow() {
return this.flow;
}
public void setFlow(String flow) {
this.flow = flow;
}
public Float getFlowProportion() {
return this.flowProportion;
}
public void setFlowProportion(Float flowProportion) {
this.flowProportion = flowProportion;
}
public String getVisitData() {
return this.visitData;
}
public void setVisitData(String visitData) {
this.visitData = visitData;
}
public String getReferDetail() {
return this.referDetail;
}
public void setReferDetail(String referDetail) {
this.referDetail = referDetail;
}
public Float getVisitProportion() {
return this.visitProportion;
}
public void setVisitProportion(Float visitProportion) {
this.visitProportion = visitProportion;
}
}
@Override
public DescribeDomainTopReferVisitResponse getInstance(UnmarshallerContext context) {
return DescribeDomainTopReferVisitResponseUnmarshaller.unmarshall(this, context);
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/model
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/model/v20180510/DescribeDomainTopUrlVisitRequest.java
|
/*
* 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.v20180510;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.cdn.Endpoint;
/**
* @author auto create
* @version
*/
public class DescribeDomainTopUrlVisitRequest extends RpcAcsRequest<DescribeDomainTopUrlVisitResponse> {
private String domainName;
private String endTime;
private String sortBy;
private String startTime;
public DescribeDomainTopUrlVisitRequest() {
super("Cdn", "2018-05-10", "DescribeDomainTopUrlVisit");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
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 String getSortBy() {
return this.sortBy;
}
public void setSortBy(String sortBy) {
this.sortBy = sortBy;
if(sortBy != null){
putQueryParameter("SortBy", sortBy);
}
}
public String getStartTime() {
return this.startTime;
}
public void setStartTime(String startTime) {
this.startTime = startTime;
if(startTime != null){
putQueryParameter("StartTime", startTime);
}
}
@Override
public Class<DescribeDomainTopUrlVisitResponse> getResponseClass() {
return DescribeDomainTopUrlVisitResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/model
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/model/v20180510/DescribeDomainTopUrlVisitResponse.java
|
/*
* 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.v20180510;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.cdn.transform.v20180510.DescribeDomainTopUrlVisitResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeDomainTopUrlVisitResponse extends AcsResponse {
private String startTime;
private String requestId;
private String domainName;
private List<UrlList> allUrlList;
private List<UrlList> url200List;
private List<UrlList> url300List;
private List<UrlList> url400List;
private List<UrlList> url500List;
public String getStartTime() {
return this.startTime;
}
public void setStartTime(String startTime) {
this.startTime = startTime;
}
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 List<UrlList> getAllUrlList() {
return this.allUrlList;
}
public void setAllUrlList(List<UrlList> allUrlList) {
this.allUrlList = allUrlList;
}
public List<UrlList> getUrl200List() {
return this.url200List;
}
public void setUrl200List(List<UrlList> url200List) {
this.url200List = url200List;
}
public List<UrlList> getUrl300List() {
return this.url300List;
}
public void setUrl300List(List<UrlList> url300List) {
this.url300List = url300List;
}
public List<UrlList> getUrl400List() {
return this.url400List;
}
public void setUrl400List(List<UrlList> url400List) {
this.url400List = url400List;
}
public List<UrlList> getUrl500List() {
return this.url500List;
}
public void setUrl500List(List<UrlList> url500List) {
this.url500List = url500List;
}
public static class UrlList {
private String flow;
private String urlDetail;
private Float flowProportion;
private String visitData;
private Float visitProportion;
public String getFlow() {
return this.flow;
}
public void setFlow(String flow) {
this.flow = flow;
}
public String getUrlDetail() {
return this.urlDetail;
}
public void setUrlDetail(String urlDetail) {
this.urlDetail = urlDetail;
}
public Float getFlowProportion() {
return this.flowProportion;
}
public void setFlowProportion(Float flowProportion) {
this.flowProportion = flowProportion;
}
public String getVisitData() {
return this.visitData;
}
public void setVisitData(String visitData) {
this.visitData = visitData;
}
public Float getVisitProportion() {
return this.visitProportion;
}
public void setVisitProportion(Float visitProportion) {
this.visitProportion = visitProportion;
}
}
@Override
public DescribeDomainTopUrlVisitResponse getInstance(UnmarshallerContext context) {
return DescribeDomainTopUrlVisitResponseUnmarshaller.unmarshall(this, context);
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/model
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/model/v20180510/DescribeDomainTrafficDataRequest.java
|
/*
* 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.v20180510;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.cdn.Endpoint;
/**
* @author auto create
* @version
*/
public class DescribeDomainTrafficDataRequest extends RpcAcsRequest<DescribeDomainTrafficDataResponse> {
private String domainName;
private String endTime;
private String interval;
private String locationNameEn;
private String startTime;
private String ispNameEn;
public DescribeDomainTrafficDataRequest() {
super("Cdn", "2018-05-10", "DescribeDomainTrafficData");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
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 String getInterval() {
return this.interval;
}
public void setInterval(String interval) {
this.interval = interval;
if(interval != null){
putQueryParameter("Interval", interval);
}
}
public String getLocationNameEn() {
return this.locationNameEn;
}
public void setLocationNameEn(String locationNameEn) {
this.locationNameEn = locationNameEn;
if(locationNameEn != null){
putQueryParameter("LocationNameEn", locationNameEn);
}
}
public String getStartTime() {
return this.startTime;
}
public void setStartTime(String startTime) {
this.startTime = startTime;
if(startTime != null){
putQueryParameter("StartTime", startTime);
}
}
public String getIspNameEn() {
return this.ispNameEn;
}
public void setIspNameEn(String ispNameEn) {
this.ispNameEn = ispNameEn;
if(ispNameEn != null){
putQueryParameter("IspNameEn", ispNameEn);
}
}
@Override
public Class<DescribeDomainTrafficDataResponse> getResponseClass() {
return DescribeDomainTrafficDataResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/model
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/model/v20180510/DescribeDomainTrafficDataResponse.java
|
/*
* 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.v20180510;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.cdn.transform.v20180510.DescribeDomainTrafficDataResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeDomainTrafficDataResponse extends AcsResponse {
private String endTime;
private String startTime;
private String requestId;
private String domainName;
private String dataInterval;
private List<DataModule> trafficDataPerInterval;
public String getEndTime() {
return this.endTime;
}
public void setEndTime(String endTime) {
this.endTime = endTime;
}
public String getStartTime() {
return this.startTime;
}
public void setStartTime(String startTime) {
this.startTime = startTime;
}
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 List<DataModule> getTrafficDataPerInterval() {
return this.trafficDataPerInterval;
}
public void setTrafficDataPerInterval(List<DataModule> trafficDataPerInterval) {
this.trafficDataPerInterval = trafficDataPerInterval;
}
public static class DataModule {
private String httpsDomesticValue;
private String value;
private String overseasValue;
private String httpsValue;
private String httpsOverseasValue;
private String timeStamp;
private String domesticValue;
public String getHttpsDomesticValue() {
return this.httpsDomesticValue;
}
public void setHttpsDomesticValue(String httpsDomesticValue) {
this.httpsDomesticValue = httpsDomesticValue;
}
public String getValue() {
return this.value;
}
public void setValue(String value) {
this.value = value;
}
public String getOverseasValue() {
return this.overseasValue;
}
public void setOverseasValue(String overseasValue) {
this.overseasValue = overseasValue;
}
public String getHttpsValue() {
return this.httpsValue;
}
public void setHttpsValue(String httpsValue) {
this.httpsValue = httpsValue;
}
public String getHttpsOverseasValue() {
return this.httpsOverseasValue;
}
public void setHttpsOverseasValue(String httpsOverseasValue) {
this.httpsOverseasValue = httpsOverseasValue;
}
public String getTimeStamp() {
return this.timeStamp;
}
public void setTimeStamp(String timeStamp) {
this.timeStamp = timeStamp;
}
public String getDomesticValue() {
return this.domesticValue;
}
public void setDomesticValue(String domesticValue) {
this.domesticValue = domesticValue;
}
}
@Override
public DescribeDomainTrafficDataResponse getInstance(UnmarshallerContext context) {
return DescribeDomainTrafficDataResponseUnmarshaller.unmarshall(this, context);
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/model
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/model/v20180510/DescribeDomainUsageDataRequest.java
|
/*
* 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.v20180510;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.cdn.Endpoint;
/**
* @author auto create
* @version
*/
public class DescribeDomainUsageDataRequest extends RpcAcsRequest<DescribeDomainUsageDataResponse> {
private String area;
private String field;
private String domainName;
private String endTime;
private String interval;
private String startTime;
private String type;
private String dataProtocol;
public DescribeDomainUsageDataRequest() {
super("Cdn", "2018-05-10", "DescribeDomainUsageData");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getArea() {
return this.area;
}
public void setArea(String area) {
this.area = area;
if(area != null){
putQueryParameter("Area", area);
}
}
public String getField() {
return this.field;
}
public void setField(String field) {
this.field = field;
if(field != null){
putQueryParameter("Field", field);
}
}
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 String getInterval() {
return this.interval;
}
public void setInterval(String interval) {
this.interval = interval;
if(interval != null){
putQueryParameter("Interval", interval);
}
}
public String getStartTime() {
return this.startTime;
}
public void setStartTime(String startTime) {
this.startTime = startTime;
if(startTime != null){
putQueryParameter("StartTime", startTime);
}
}
public String getType() {
return this.type;
}
public void setType(String type) {
this.type = type;
if(type != null){
putQueryParameter("Type", type);
}
}
public String getDataProtocol() {
return this.dataProtocol;
}
public void setDataProtocol(String dataProtocol) {
this.dataProtocol = dataProtocol;
if(dataProtocol != null){
putQueryParameter("DataProtocol", dataProtocol);
}
}
@Override
public Class<DescribeDomainUsageDataResponse> getResponseClass() {
return DescribeDomainUsageDataResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/model
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/model/v20180510/DescribeDomainUsageDataResponse.java
|
/*
* 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.v20180510;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.cdn.transform.v20180510.DescribeDomainUsageDataResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeDomainUsageDataResponse extends AcsResponse {
private String requestId;
private String domainName;
private String startTime;
private String endTime;
private String type;
private String area;
private String dataInterval;
private List<DataModule> usageDataPerInterval;
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 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 String getType() {
return this.type;
}
public void setType(String type) {
this.type = type;
}
public String getArea() {
return this.area;
}
public void setArea(String area) {
this.area = area;
}
public String getDataInterval() {
return this.dataInterval;
}
public void setDataInterval(String dataInterval) {
this.dataInterval = dataInterval;
}
public List<DataModule> getUsageDataPerInterval() {
return this.usageDataPerInterval;
}
public void setUsageDataPerInterval(List<DataModule> usageDataPerInterval) {
this.usageDataPerInterval = usageDataPerInterval;
}
public static class DataModule {
private String value;
private String timeStamp;
private String peakTime;
private String specialValue;
public String getValue() {
return this.value;
}
public void setValue(String value) {
this.value = value;
}
public String getTimeStamp() {
return this.timeStamp;
}
public void setTimeStamp(String timeStamp) {
this.timeStamp = timeStamp;
}
public String getPeakTime() {
return this.peakTime;
}
public void setPeakTime(String peakTime) {
this.peakTime = peakTime;
}
public String getSpecialValue() {
return this.specialValue;
}
public void setSpecialValue(String specialValue) {
this.specialValue = specialValue;
}
}
@Override
public DescribeDomainUsageDataResponse getInstance(UnmarshallerContext context) {
return DescribeDomainUsageDataResponseUnmarshaller.unmarshall(this, context);
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/model
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/model/v20180510/DescribeDomainUvDataRequest.java
|
/*
* 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.v20180510;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.cdn.Endpoint;
/**
* @author auto create
* @version
*/
public class DescribeDomainUvDataRequest extends RpcAcsRequest<DescribeDomainUvDataResponse> {
private String domainName;
private String endTime;
private String startTime;
public DescribeDomainUvDataRequest() {
super("Cdn", "2018-05-10", "DescribeDomainUvData");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
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 String getStartTime() {
return this.startTime;
}
public void setStartTime(String startTime) {
this.startTime = startTime;
if(startTime != null){
putQueryParameter("StartTime", startTime);
}
}
@Override
public Class<DescribeDomainUvDataResponse> getResponseClass() {
return DescribeDomainUvDataResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/model
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/model/v20180510/DescribeDomainUvDataResponse.java
|
/*
* 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.v20180510;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.cdn.transform.v20180510.DescribeDomainUvDataResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeDomainUvDataResponse extends AcsResponse {
private String endTime;
private String startTime;
private String requestId;
private String domainName;
private String dataInterval;
private List<UsageData> uvDataInterval;
public String getEndTime() {
return this.endTime;
}
public void setEndTime(String endTime) {
this.endTime = endTime;
}
public String getStartTime() {
return this.startTime;
}
public void setStartTime(String startTime) {
this.startTime = startTime;
}
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 List<UsageData> getUvDataInterval() {
return this.uvDataInterval;
}
public void setUvDataInterval(List<UsageData> uvDataInterval) {
this.uvDataInterval = uvDataInterval;
}
public static class UsageData {
private String value;
private String timeStamp;
public String getValue() {
return this.value;
}
public void setValue(String value) {
this.value = value;
}
public String getTimeStamp() {
return this.timeStamp;
}
public void setTimeStamp(String timeStamp) {
this.timeStamp = timeStamp;
}
}
@Override
public DescribeDomainUvDataResponse getInstance(UnmarshallerContext context) {
return DescribeDomainUvDataResponseUnmarshaller.unmarshall(this, context);
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/model
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/model/v20180510/DescribeDomainsBySourceRequest.java
|
/*
* 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.v20180510;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.cdn.Endpoint;
/**
* @author auto create
* @version
*/
public class DescribeDomainsBySourceRequest extends RpcAcsRequest<DescribeDomainsBySourceResponse> {
private String sources;
private Long ownerId;
private String securityToken;
public DescribeDomainsBySourceRequest() {
super("Cdn", "2018-05-10", "DescribeDomainsBySource");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getSources() {
return this.sources;
}
public void setSources(String sources) {
this.sources = sources;
if(sources != null){
putQueryParameter("Sources", sources);
}
}
public Long getOwnerId() {
return this.ownerId;
}
public void setOwnerId(Long ownerId) {
this.ownerId = ownerId;
if(ownerId != null){
putQueryParameter("OwnerId", ownerId.toString());
}
}
public String getSecurityToken() {
return this.securityToken;
}
public void setSecurityToken(String securityToken) {
this.securityToken = securityToken;
if(securityToken != null){
putQueryParameter("SecurityToken", securityToken);
}
}
@Override
public Class<DescribeDomainsBySourceResponse> getResponseClass() {
return DescribeDomainsBySourceResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/model
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/model/v20180510/DescribeDomainsBySourceResponse.java
|
/*
* 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.v20180510;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.cdn.transform.v20180510.DescribeDomainsBySourceResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeDomainsBySourceResponse extends AcsResponse {
private String sources;
private String requestId;
private List<DomainsData> domainsList;
public String getSources() {
return this.sources;
}
public void setSources(String sources) {
this.sources = sources;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public List<DomainsData> getDomainsList() {
return this.domainsList;
}
public void setDomainsList(List<DomainsData> domainsList) {
this.domainsList = domainsList;
}
public static class DomainsData {
private String source;
private List<DomainInfo> domainInfos;
private List<String> domains;
public String getSource() {
return this.source;
}
public void setSource(String source) {
this.source = source;
}
public List<DomainInfo> getDomainInfos() {
return this.domainInfos;
}
public void setDomainInfos(List<DomainInfo> domainInfos) {
this.domainInfos = domainInfos;
}
public List<String> getDomains() {
return this.domains;
}
public void setDomains(List<String> domains) {
this.domains = domains;
}
public static class DomainInfo {
private String status;
private String updateTime;
private String createTime;
private String domainCname;
private String cdnType;
private String domainName;
public String getStatus() {
return this.status;
}
public void setStatus(String status) {
this.status = status;
}
public String getUpdateTime() {
return this.updateTime;
}
public void setUpdateTime(String updateTime) {
this.updateTime = updateTime;
}
public String getCreateTime() {
return this.createTime;
}
public void setCreateTime(String createTime) {
this.createTime = createTime;
}
public String getDomainCname() {
return this.domainCname;
}
public void setDomainCname(String domainCname) {
this.domainCname = domainCname;
}
public String getCdnType() {
return this.cdnType;
}
public void setCdnType(String cdnType) {
this.cdnType = cdnType;
}
public String getDomainName() {
return this.domainName;
}
public void setDomainName(String domainName) {
this.domainName = domainName;
}
}
}
@Override
public DescribeDomainsBySourceResponse getInstance(UnmarshallerContext context) {
return DescribeDomainsBySourceResponseUnmarshaller.unmarshall(this, context);
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/model
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/model/v20180510/DescribeDomainsUsageByDayRequest.java
|
/*
* 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.v20180510;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.cdn.Endpoint;
/**
* @author auto create
* @version
*/
public class DescribeDomainsUsageByDayRequest extends RpcAcsRequest<DescribeDomainsUsageByDayResponse> {
private String domainName;
private String endTime;
private String startTime;
public DescribeDomainsUsageByDayRequest() {
super("Cdn", "2018-05-10", "DescribeDomainsUsageByDay");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
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 String getStartTime() {
return this.startTime;
}
public void setStartTime(String startTime) {
this.startTime = startTime;
if(startTime != null){
putQueryParameter("StartTime", startTime);
}
}
@Override
public Class<DescribeDomainsUsageByDayResponse> getResponseClass() {
return DescribeDomainsUsageByDayResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/model
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/model/v20180510/DescribeDomainsUsageByDayResponse.java
|
/*
* 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.v20180510;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.cdn.transform.v20180510.DescribeDomainsUsageByDayResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeDomainsUsageByDayResponse extends AcsResponse {
private String endTime;
private String startTime;
private String requestId;
private String domainName;
private String dataInterval;
private List<UsageByDay> usageByDays;
private UsageTotal usageTotal;
public String getEndTime() {
return this.endTime;
}
public void setEndTime(String endTime) {
this.endTime = endTime;
}
public String getStartTime() {
return this.startTime;
}
public void setStartTime(String startTime) {
this.startTime = startTime;
}
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 List<UsageByDay> getUsageByDays() {
return this.usageByDays;
}
public void setUsageByDays(List<UsageByDay> usageByDays) {
this.usageByDays = usageByDays;
}
public UsageTotal getUsageTotal() {
return this.usageTotal;
}
public void setUsageTotal(UsageTotal usageTotal) {
this.usageTotal = usageTotal;
}
public static class UsageByDay {
private String maxSrcBpsTime;
private String qps;
private String requestHitRate;
private String maxBps;
private String totalAccess;
private String timeStamp;
private String bytesHitRate;
private String totalTraffic;
private String maxSrcBps;
private String maxBpsTime;
public String getMaxSrcBpsTime() {
return this.maxSrcBpsTime;
}
public void setMaxSrcBpsTime(String maxSrcBpsTime) {
this.maxSrcBpsTime = maxSrcBpsTime;
}
public String getQps() {
return this.qps;
}
public void setQps(String qps) {
this.qps = qps;
}
public String getRequestHitRate() {
return this.requestHitRate;
}
public void setRequestHitRate(String requestHitRate) {
this.requestHitRate = requestHitRate;
}
public String getMaxBps() {
return this.maxBps;
}
public void setMaxBps(String maxBps) {
this.maxBps = maxBps;
}
public String getTotalAccess() {
return this.totalAccess;
}
public void setTotalAccess(String totalAccess) {
this.totalAccess = totalAccess;
}
public String getTimeStamp() {
return this.timeStamp;
}
public void setTimeStamp(String timeStamp) {
this.timeStamp = timeStamp;
}
public String getBytesHitRate() {
return this.bytesHitRate;
}
public void setBytesHitRate(String bytesHitRate) {
this.bytesHitRate = bytesHitRate;
}
public String getTotalTraffic() {
return this.totalTraffic;
}
public void setTotalTraffic(String totalTraffic) {
this.totalTraffic = totalTraffic;
}
public String getMaxSrcBps() {
return this.maxSrcBps;
}
public void setMaxSrcBps(String maxSrcBps) {
this.maxSrcBps = maxSrcBps;
}
public String getMaxBpsTime() {
return this.maxBpsTime;
}
public void setMaxBpsTime(String maxBpsTime) {
this.maxBpsTime = maxBpsTime;
}
}
public static class UsageTotal {
private String maxSrcBpsTime;
private String requestHitRate;
private String maxBps;
private String totalAccess;
private String bytesHitRate;
private String totalTraffic;
private String maxBpsTime;
private String maxSrcBps;
public String getMaxSrcBpsTime() {
return this.maxSrcBpsTime;
}
public void setMaxSrcBpsTime(String maxSrcBpsTime) {
this.maxSrcBpsTime = maxSrcBpsTime;
}
public String getRequestHitRate() {
return this.requestHitRate;
}
public void setRequestHitRate(String requestHitRate) {
this.requestHitRate = requestHitRate;
}
public String getMaxBps() {
return this.maxBps;
}
public void setMaxBps(String maxBps) {
this.maxBps = maxBps;
}
public String getTotalAccess() {
return this.totalAccess;
}
public void setTotalAccess(String totalAccess) {
this.totalAccess = totalAccess;
}
public String getBytesHitRate() {
return this.bytesHitRate;
}
public void setBytesHitRate(String bytesHitRate) {
this.bytesHitRate = bytesHitRate;
}
public String getTotalTraffic() {
return this.totalTraffic;
}
public void setTotalTraffic(String totalTraffic) {
this.totalTraffic = totalTraffic;
}
public String getMaxBpsTime() {
return this.maxBpsTime;
}
public void setMaxBpsTime(String maxBpsTime) {
this.maxBpsTime = maxBpsTime;
}
public String getMaxSrcBps() {
return this.maxSrcBps;
}
public void setMaxSrcBps(String maxSrcBps) {
this.maxSrcBps = maxSrcBps;
}
}
@Override
public DescribeDomainsUsageByDayResponse getInstance(UnmarshallerContext context) {
return DescribeDomainsUsageByDayResponseUnmarshaller.unmarshall(this, context);
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/model
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/model/v20180510/DescribeEsExceptionDataRequest.java
|
/*
* 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.v20180510;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.cdn.Endpoint;
/**
* @author auto create
* @version
*/
public class DescribeEsExceptionDataRequest extends RpcAcsRequest<DescribeEsExceptionDataResponse> {
private String endTime;
private String startTime;
private String ruleId;
public DescribeEsExceptionDataRequest() {
super("Cdn", "2018-05-10", "DescribeEsExceptionData");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getEndTime() {
return this.endTime;
}
public void setEndTime(String endTime) {
this.endTime = endTime;
if(endTime != null){
putQueryParameter("EndTime", endTime);
}
}
public String getStartTime() {
return this.startTime;
}
public void setStartTime(String startTime) {
this.startTime = startTime;
if(startTime != null){
putQueryParameter("StartTime", startTime);
}
}
public String getRuleId() {
return this.ruleId;
}
public void setRuleId(String ruleId) {
this.ruleId = ruleId;
if(ruleId != null){
putQueryParameter("RuleId", ruleId);
}
}
@Override
public Class<DescribeEsExceptionDataResponse> getResponseClass() {
return DescribeEsExceptionDataResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/model
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/model/v20180510/DescribeEsExceptionDataResponse.java
|
/*
* 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.v20180510;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.cdn.transform.v20180510.DescribeEsExceptionDataResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeEsExceptionDataResponse extends AcsResponse {
private String requestId;
private List<Content> contents;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public List<Content> getContents() {
return this.contents;
}
public void setContents(List<Content> contents) {
this.contents = contents;
}
public static class Content {
private String name;
private List<PointsItem> points;
private List<String> columns;
public String getName() {
return this.name;
}
public void setName(String name) {
this.name = name;
}
public List<PointsItem> getPoints() {
return this.points;
}
public void setPoints(List<PointsItem> points) {
this.points = points;
}
public List<String> getColumns() {
return this.columns;
}
public void setColumns(List<String> columns) {
this.columns = columns;
}
public static class PointsItem {
private List<String> points1;
public List<String> getPoints1() {
return this.points1;
}
public void setPoints1(List<String> points1) {
this.points1 = points1;
}
}
}
@Override
public DescribeEsExceptionDataResponse getInstance(UnmarshallerContext context) {
return DescribeEsExceptionDataResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/model
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/model/v20180510/DescribeEsExecuteDataRequest.java
|
/*
* 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.v20180510;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.cdn.Endpoint;
/**
* @author auto create
* @version
*/
public class DescribeEsExecuteDataRequest extends RpcAcsRequest<DescribeEsExecuteDataResponse> {
private String endTime;
private String startTime;
private String ruleId;
public DescribeEsExecuteDataRequest() {
super("Cdn", "2018-05-10", "DescribeEsExecuteData");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getEndTime() {
return this.endTime;
}
public void setEndTime(String endTime) {
this.endTime = endTime;
if(endTime != null){
putQueryParameter("EndTime", endTime);
}
}
public String getStartTime() {
return this.startTime;
}
public void setStartTime(String startTime) {
this.startTime = startTime;
if(startTime != null){
putQueryParameter("StartTime", startTime);
}
}
public String getRuleId() {
return this.ruleId;
}
public void setRuleId(String ruleId) {
this.ruleId = ruleId;
if(ruleId != null){
putQueryParameter("RuleId", ruleId);
}
}
@Override
public Class<DescribeEsExecuteDataResponse> getResponseClass() {
return DescribeEsExecuteDataResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/model
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/model/v20180510/DescribeEsExecuteDataResponse.java
|
/*
* 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.v20180510;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.cdn.transform.v20180510.DescribeEsExecuteDataResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeEsExecuteDataResponse extends AcsResponse {
private String requestId;
private List<Content> contents;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public List<Content> getContents() {
return this.contents;
}
public void setContents(List<Content> contents) {
this.contents = contents;
}
public static class Content {
private String name;
private List<String> points;
private List<String> columns;
public String getName() {
return this.name;
}
public void setName(String name) {
this.name = name;
}
public List<String> getPoints() {
return this.points;
}
public void setPoints(List<String> points) {
this.points = points;
}
public List<String> getColumns() {
return this.columns;
}
public void setColumns(List<String> columns) {
this.columns = columns;
}
}
@Override
public DescribeEsExecuteDataResponse getInstance(UnmarshallerContext context) {
return DescribeEsExecuteDataResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/model
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/model/v20180510/DescribeFCTriggerRequest.java
|
/*
* 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.v20180510;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.cdn.Endpoint;
/**
* @author auto create
* @version
*/
public class DescribeFCTriggerRequest extends RpcAcsRequest<DescribeFCTriggerResponse> {
private String triggerARN;
public DescribeFCTriggerRequest() {
super("Cdn", "2018-05-10", "DescribeFCTrigger");
setMethod(MethodType.GET);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getTriggerARN() {
return this.triggerARN;
}
public void setTriggerARN(String triggerARN) {
this.triggerARN = triggerARN;
if(triggerARN != null){
putQueryParameter("TriggerARN", triggerARN);
}
}
@Override
public Class<DescribeFCTriggerResponse> getResponseClass() {
return DescribeFCTriggerResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/model
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/model/v20180510/DescribeFCTriggerResponse.java
|
/*
* 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.v20180510;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.cdn.transform.v20180510.DescribeFCTriggerResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeFCTriggerResponse extends AcsResponse {
private String requestId;
private FCTrigger fCTrigger;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public FCTrigger getFCTrigger() {
return this.fCTrigger;
}
public void setFCTrigger(FCTrigger fCTrigger) {
this.fCTrigger = fCTrigger;
}
public static class FCTrigger {
private String triggerARN;
private String roleARN;
private String sourceArn;
private String notes;
private String eventMetaName;
private String eventMetaVersion;
public String getTriggerARN() {
return this.triggerARN;
}
public void setTriggerARN(String triggerARN) {
this.triggerARN = triggerARN;
}
public String getRoleARN() {
return this.roleARN;
}
public void setRoleARN(String roleARN) {
this.roleARN = roleARN;
}
public String getSourceArn() {
return this.sourceArn;
}
public void setSourceArn(String sourceArn) {
this.sourceArn = sourceArn;
}
public String getNotes() {
return this.notes;
}
public void setNotes(String notes) {
this.notes = notes;
}
public String getEventMetaName() {
return this.eventMetaName;
}
public void setEventMetaName(String eventMetaName) {
this.eventMetaName = eventMetaName;
}
public String getEventMetaVersion() {
return this.eventMetaVersion;
}
public void setEventMetaVersion(String eventMetaVersion) {
this.eventMetaVersion = eventMetaVersion;
}
}
@Override
public DescribeFCTriggerResponse getInstance(UnmarshallerContext context) {
return DescribeFCTriggerResponseUnmarshaller.unmarshall(this, context);
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/model
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/model/v20180510/DescribeIpInfoRequest.java
|
/*
* 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.v20180510;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.cdn.Endpoint;
/**
* @author auto create
* @version
*/
public class DescribeIpInfoRequest extends RpcAcsRequest<DescribeIpInfoResponse> {
private String iP;
public DescribeIpInfoRequest() {
super("Cdn", "2018-05-10", "DescribeIpInfo");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getIP() {
return this.iP;
}
public void setIP(String iP) {
this.iP = iP;
if(iP != null){
putQueryParameter("IP", iP);
}
}
@Override
public Class<DescribeIpInfoResponse> getResponseClass() {
return DescribeIpInfoResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/model
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/model/v20180510/DescribeIpInfoResponse.java
|
/*
* 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.v20180510;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.cdn.transform.v20180510.DescribeIpInfoResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeIpInfoResponse extends AcsResponse {
private String cdnIp;
private String requestId;
private String regionEname;
private String region;
private String ispEname;
private String iSP;
public String getCdnIp() {
return this.cdnIp;
}
public void setCdnIp(String cdnIp) {
this.cdnIp = cdnIp;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public String getRegionEname() {
return this.regionEname;
}
public void setRegionEname(String regionEname) {
this.regionEname = regionEname;
}
public String getRegion() {
return this.region;
}
public void setRegion(String region) {
this.region = region;
}
public String getIspEname() {
return this.ispEname;
}
public void setIspEname(String ispEname) {
this.ispEname = ispEname;
}
public String getISP() {
return this.iSP;
}
public void setISP(String iSP) {
this.iSP = iSP;
}
@Override
public DescribeIpInfoResponse getInstance(UnmarshallerContext context) {
return DescribeIpInfoResponseUnmarshaller.unmarshall(this, context);
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/model
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/model/v20180510/DescribeIpStatusRequest.java
|
/*
* 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.v20180510;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.cdn.Endpoint;
/**
* @author auto create
* @version
*/
public class DescribeIpStatusRequest extends RpcAcsRequest<DescribeIpStatusResponse> {
private String ips;
public DescribeIpStatusRequest() {
super("Cdn", "2018-05-10", "DescribeIpStatus");
setMethod(MethodType.GET);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getIps() {
return this.ips;
}
public void setIps(String ips) {
this.ips = ips;
if(ips != null){
putQueryParameter("Ips", ips);
}
}
@Override
public Class<DescribeIpStatusResponse> getResponseClass() {
return DescribeIpStatusResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/model
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/model/v20180510/DescribeIpStatusResponse.java
|
/*
* 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.v20180510;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.cdn.transform.v20180510.DescribeIpStatusResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeIpStatusResponse extends AcsResponse {
private String requestId;
private List<UsageData> ipStatus;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public List<UsageData> getIpStatus() {
return this.ipStatus;
}
public void setIpStatus(List<UsageData> ipStatus) {
this.ipStatus = ipStatus;
}
public static class UsageData {
private String ip;
private String status;
public String getIp() {
return this.ip;
}
public void setIp(String ip) {
this.ip = ip;
}
public String getStatus() {
return this.status;
}
public void setStatus(String status) {
this.status = status;
}
}
@Override
public DescribeIpStatusResponse getInstance(UnmarshallerContext context) {
return DescribeIpStatusResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/model
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/model/v20180510/DescribeL2VipsByDomainRequest.java
|
/*
* 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.v20180510;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.cdn.Endpoint;
/**
* @author auto create
* @version
*/
public class DescribeL2VipsByDomainRequest extends RpcAcsRequest<DescribeL2VipsByDomainResponse> {
private String domainName;
private Long ownerId;
private String securityToken;
public DescribeL2VipsByDomainRequest() {
super("Cdn", "2018-05-10", "DescribeL2VipsByDomain");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getDomainName() {
return this.domainName;
}
public void setDomainName(String domainName) {
this.domainName = domainName;
if(domainName != null){
putQueryParameter("DomainName", domainName);
}
}
public Long getOwnerId() {
return this.ownerId;
}
public void setOwnerId(Long ownerId) {
this.ownerId = ownerId;
if(ownerId != null){
putQueryParameter("OwnerId", ownerId.toString());
}
}
public String getSecurityToken() {
return this.securityToken;
}
public void setSecurityToken(String securityToken) {
this.securityToken = securityToken;
if(securityToken != null){
putQueryParameter("SecurityToken", securityToken);
}
}
@Override
public Class<DescribeL2VipsByDomainResponse> getResponseClass() {
return DescribeL2VipsByDomainResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/model
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/model/v20180510/DescribeL2VipsByDomainResponse.java
|
/*
* 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.v20180510;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.cdn.transform.v20180510.DescribeL2VipsByDomainResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeL2VipsByDomainResponse extends AcsResponse {
private String domainName;
private String requestId;
private List<String> vips;
public String getDomainName() {
return this.domainName;
}
public void setDomainName(String domainName) {
this.domainName = domainName;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public List<String> getVips() {
return this.vips;
}
public void setVips(List<String> vips) {
this.vips = vips;
}
@Override
public DescribeL2VipsByDomainResponse getInstance(UnmarshallerContext context) {
return DescribeL2VipsByDomainResponseUnmarshaller.unmarshall(this, context);
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/model
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/model/v20180510/DescribePreloadDetailByIdRequest.java
|
/*
* 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.v20180510;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.cdn.Endpoint;
/**
* @author auto create
* @version
*/
public class DescribePreloadDetailByIdRequest extends RpcAcsRequest<DescribePreloadDetailByIdResponse> {
private String taskId;
public DescribePreloadDetailByIdRequest() {
super("Cdn", "2018-05-10", "DescribePreloadDetailById");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getTaskId() {
return this.taskId;
}
public void setTaskId(String taskId) {
this.taskId = taskId;
if(taskId != null){
putQueryParameter("TaskId", taskId);
}
}
@Override
public Class<DescribePreloadDetailByIdResponse> getResponseClass() {
return DescribePreloadDetailByIdResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/model
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/model/v20180510/DescribePreloadDetailByIdResponse.java
|
/*
* 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.v20180510;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.cdn.transform.v20180510.DescribePreloadDetailByIdResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribePreloadDetailByIdResponse extends AcsResponse {
private Long totalCount;
private String requestId;
private List<UrlDetail> urlDetails;
public Long getTotalCount() {
return this.totalCount;
}
public void setTotalCount(Long totalCount) {
this.totalCount = totalCount;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public List<UrlDetail> getUrlDetails() {
return this.urlDetails;
}
public void setUrlDetails(List<UrlDetail> urlDetails) {
this.urlDetails = urlDetails;
}
public static class UrlDetail {
private String taskId;
private String domain;
private String creationTime;
private String endTime;
private String retCode;
private String process;
private String status;
private List<Url> urls;
public String getTaskId() {
return this.taskId;
}
public void setTaskId(String taskId) {
this.taskId = taskId;
}
public String getDomain() {
return this.domain;
}
public void setDomain(String domain) {
this.domain = domain;
}
public String getCreationTime() {
return this.creationTime;
}
public void setCreationTime(String creationTime) {
this.creationTime = creationTime;
}
public String getEndTime() {
return this.endTime;
}
public void setEndTime(String endTime) {
this.endTime = endTime;
}
public String getRetCode() {
return this.retCode;
}
public void setRetCode(String retCode) {
this.retCode = retCode;
}
public String getProcess() {
return this.process;
}
public void setProcess(String process) {
this.process = process;
}
public String getStatus() {
return this.status;
}
public void setStatus(String status) {
this.status = status;
}
public List<Url> getUrls() {
return this.urls;
}
public void setUrls(List<Url> urls) {
this.urls = urls;
}
public static class Url {
private String url;
private String success;
private String description;
public String getUrl() {
return this.url;
}
public void setUrl(String url) {
this.url = url;
}
public String getSuccess() {
return this.success;
}
public void setSuccess(String success) {
this.success = success;
}
public String getDescription() {
return this.description;
}
public void setDescription(String description) {
this.description = description;
}
}
}
@Override
public DescribePreloadDetailByIdResponse getInstance(UnmarshallerContext context) {
return DescribePreloadDetailByIdResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/model
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/model/v20180510/DescribeRangeDataByLocateAndIspServiceRequest.java
|
/*
* 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.v20180510;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.cdn.Endpoint;
/**
* @author auto create
* @version
*/
public class DescribeRangeDataByLocateAndIspServiceRequest extends RpcAcsRequest<DescribeRangeDataByLocateAndIspServiceResponse> {
private String ispNames;
private String domainNames;
private String locationNames;
private String endTime;
private String startTime;
public DescribeRangeDataByLocateAndIspServiceRequest() {
super("Cdn", "2018-05-10", "DescribeRangeDataByLocateAndIspService");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getIspNames() {
return this.ispNames;
}
public void setIspNames(String ispNames) {
this.ispNames = ispNames;
if(ispNames != null){
putQueryParameter("IspNames", ispNames);
}
}
public String getDomainNames() {
return this.domainNames;
}
public void setDomainNames(String domainNames) {
this.domainNames = domainNames;
if(domainNames != null){
putQueryParameter("DomainNames", domainNames);
}
}
public String getLocationNames() {
return this.locationNames;
}
public void setLocationNames(String locationNames) {
this.locationNames = locationNames;
if(locationNames != null){
putQueryParameter("LocationNames", locationNames);
}
}
public String getEndTime() {
return this.endTime;
}
public void setEndTime(String endTime) {
this.endTime = endTime;
if(endTime != null){
putQueryParameter("EndTime", endTime);
}
}
public String getStartTime() {
return this.startTime;
}
public void setStartTime(String startTime) {
this.startTime = startTime;
if(startTime != null){
putQueryParameter("StartTime", startTime);
}
}
@Override
public Class<DescribeRangeDataByLocateAndIspServiceResponse> getResponseClass() {
return DescribeRangeDataByLocateAndIspServiceResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/model
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/model/v20180510/DescribeRangeDataByLocateAndIspServiceResponse.java
|
/*
* 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.v20180510;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.cdn.transform.v20180510.DescribeRangeDataByLocateAndIspServiceResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeRangeDataByLocateAndIspServiceResponse extends AcsResponse {
private String jsonResult;
private String requestId;
public String getJsonResult() {
return this.jsonResult;
}
public void setJsonResult(String jsonResult) {
this.jsonResult = jsonResult;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
@Override
public DescribeRangeDataByLocateAndIspServiceResponse getInstance(UnmarshallerContext context) {
return DescribeRangeDataByLocateAndIspServiceResponseUnmarshaller.unmarshall(this, context);
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/model
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/model/v20180510/DescribeRealtimeDeliveryAccRequest.java
|
/*
* 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.v20180510;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.cdn.Endpoint;
/**
* @author auto create
* @version
*/
public class DescribeRealtimeDeliveryAccRequest extends RpcAcsRequest<DescribeRealtimeDeliveryAccResponse> {
private String endTime;
private String project;
private String interval;
private String startTime;
private String logStore;
public DescribeRealtimeDeliveryAccRequest() {
super("Cdn", "2018-05-10", "DescribeRealtimeDeliveryAcc");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getEndTime() {
return this.endTime;
}
public void setEndTime(String endTime) {
this.endTime = endTime;
if(endTime != null){
putQueryParameter("EndTime", endTime);
}
}
public String getProject() {
return this.project;
}
public void setProject(String project) {
this.project = project;
if(project != null){
putQueryParameter("Project", project);
}
}
public String getInterval() {
return this.interval;
}
public void setInterval(String interval) {
this.interval = interval;
if(interval != null){
putQueryParameter("Interval", interval);
}
}
public String getStartTime() {
return this.startTime;
}
public void setStartTime(String startTime) {
this.startTime = startTime;
if(startTime != null){
putQueryParameter("StartTime", startTime);
}
}
public String getLogStore() {
return this.logStore;
}
public void setLogStore(String logStore) {
this.logStore = logStore;
if(logStore != null){
putQueryParameter("LogStore", logStore);
}
}
@Override
public Class<DescribeRealtimeDeliveryAccResponse> getResponseClass() {
return DescribeRealtimeDeliveryAccResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/model
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/model/v20180510/DescribeRealtimeDeliveryAccResponse.java
|
/*
* 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.v20180510;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.cdn.transform.v20180510.DescribeRealtimeDeliveryAccResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeRealtimeDeliveryAccResponse extends AcsResponse {
private String requestId;
private List<AccData> reatTimeDeliveryAccData;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public List<AccData> getReatTimeDeliveryAccData() {
return this.reatTimeDeliveryAccData;
}
public void setReatTimeDeliveryAccData(List<AccData> reatTimeDeliveryAccData) {
this.reatTimeDeliveryAccData = reatTimeDeliveryAccData;
}
public static class AccData {
private String timeStamp;
private Integer failedNum;
private Integer successNum;
public String getTimeStamp() {
return this.timeStamp;
}
public void setTimeStamp(String timeStamp) {
this.timeStamp = timeStamp;
}
public Integer getFailedNum() {
return this.failedNum;
}
public void setFailedNum(Integer failedNum) {
this.failedNum = failedNum;
}
public Integer getSuccessNum() {
return this.successNum;
}
public void setSuccessNum(Integer successNum) {
this.successNum = successNum;
}
}
@Override
public DescribeRealtimeDeliveryAccResponse getInstance(UnmarshallerContext context) {
return DescribeRealtimeDeliveryAccResponseUnmarshaller.unmarshall(this, context);
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/model
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/model/v20180510/DescribeRefreshQuotaRequest.java
|
/*
* 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.v20180510;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.cdn.Endpoint;
/**
* @author auto create
* @version
*/
public class DescribeRefreshQuotaRequest extends RpcAcsRequest<DescribeRefreshQuotaResponse> {
private Long ownerId;
private String securityToken;
public DescribeRefreshQuotaRequest() {
super("Cdn", "2018-05-10", "DescribeRefreshQuota");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public Long getOwnerId() {
return this.ownerId;
}
public void setOwnerId(Long ownerId) {
this.ownerId = ownerId;
if(ownerId != null){
putQueryParameter("OwnerId", ownerId.toString());
}
}
public String getSecurityToken() {
return this.securityToken;
}
public void setSecurityToken(String securityToken) {
this.securityToken = securityToken;
if(securityToken != null){
putQueryParameter("SecurityToken", securityToken);
}
}
@Override
public Class<DescribeRefreshQuotaResponse> getResponseClass() {
return DescribeRefreshQuotaResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/model
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/model/v20180510/DescribeRefreshQuotaResponse.java
|
/*
* 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.v20180510;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.cdn.transform.v20180510.DescribeRefreshQuotaResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeRefreshQuotaResponse extends AcsResponse {
private String preloadRemain;
private String blockRemain;
private String regexRemain;
private String urlRemain;
private String dirRemain;
private String urlQuota;
private String blockQuota;
private String requestId;
private String dirQuota;
private String preloadEdgeQuota;
private String preloadEdgeRemain;
private String preloadQuota;
private String regexQuota;
private String ignoreParamsQuota;
private String ignoreParamsRemain;
public String getPreloadRemain() {
return this.preloadRemain;
}
public void setPreloadRemain(String preloadRemain) {
this.preloadRemain = preloadRemain;
}
public String getBlockRemain() {
return this.blockRemain;
}
public void setBlockRemain(String blockRemain) {
this.blockRemain = blockRemain;
}
public String getRegexRemain() {
return this.regexRemain;
}
public void setRegexRemain(String regexRemain) {
this.regexRemain = regexRemain;
}
public String getUrlRemain() {
return this.urlRemain;
}
public void setUrlRemain(String urlRemain) {
this.urlRemain = urlRemain;
}
public String getDirRemain() {
return this.dirRemain;
}
public void setDirRemain(String dirRemain) {
this.dirRemain = dirRemain;
}
public String getUrlQuota() {
return this.urlQuota;
}
public void setUrlQuota(String urlQuota) {
this.urlQuota = urlQuota;
}
public String getBlockQuota() {
return this.blockQuota;
}
public void setBlockQuota(String blockQuota) {
this.blockQuota = blockQuota;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public String getDirQuota() {
return this.dirQuota;
}
public void setDirQuota(String dirQuota) {
this.dirQuota = dirQuota;
}
public String getPreloadEdgeQuota() {
return this.preloadEdgeQuota;
}
public void setPreloadEdgeQuota(String preloadEdgeQuota) {
this.preloadEdgeQuota = preloadEdgeQuota;
}
public String getPreloadEdgeRemain() {
return this.preloadEdgeRemain;
}
public void setPreloadEdgeRemain(String preloadEdgeRemain) {
this.preloadEdgeRemain = preloadEdgeRemain;
}
public String getPreloadQuota() {
return this.preloadQuota;
}
public void setPreloadQuota(String preloadQuota) {
this.preloadQuota = preloadQuota;
}
public String getRegexQuota() {
return this.regexQuota;
}
public void setRegexQuota(String regexQuota) {
this.regexQuota = regexQuota;
}
public String getIgnoreParamsQuota() {
return this.ignoreParamsQuota;
}
public void setIgnoreParamsQuota(String ignoreParamsQuota) {
this.ignoreParamsQuota = ignoreParamsQuota;
}
public String getIgnoreParamsRemain() {
return this.ignoreParamsRemain;
}
public void setIgnoreParamsRemain(String ignoreParamsRemain) {
this.ignoreParamsRemain = ignoreParamsRemain;
}
@Override
public DescribeRefreshQuotaResponse getInstance(UnmarshallerContext context) {
return DescribeRefreshQuotaResponseUnmarshaller.unmarshall(this, context);
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/model
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/model/v20180510/DescribeRefreshTaskByIdRequest.java
|
/*
* 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.v20180510;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.cdn.Endpoint;
/**
* @author auto create
* @version
*/
public class DescribeRefreshTaskByIdRequest extends RpcAcsRequest<DescribeRefreshTaskByIdResponse> {
private String taskId;
public DescribeRefreshTaskByIdRequest() {
super("Cdn", "2018-05-10", "DescribeRefreshTaskById");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getTaskId() {
return this.taskId;
}
public void setTaskId(String taskId) {
this.taskId = taskId;
if(taskId != null){
putQueryParameter("TaskId", taskId);
}
}
@Override
public Class<DescribeRefreshTaskByIdResponse> getResponseClass() {
return DescribeRefreshTaskByIdResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/model
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/model/v20180510/DescribeRefreshTaskByIdResponse.java
|
/*
* 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.v20180510;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.cdn.transform.v20180510.DescribeRefreshTaskByIdResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeRefreshTaskByIdResponse extends AcsResponse {
private Long totalCount;
private String requestId;
private List<CDNTask> tasks;
public Long getTotalCount() {
return this.totalCount;
}
public void setTotalCount(Long totalCount) {
this.totalCount = totalCount;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public List<CDNTask> getTasks() {
return this.tasks;
}
public void setTasks(List<CDNTask> tasks) {
this.tasks = tasks;
}
public static class CDNTask {
private String status;
private String creationTime;
private String objectType;
private String process;
private String description;
private String objectPath;
private String taskId;
public String getStatus() {
return this.status;
}
public void setStatus(String status) {
this.status = status;
}
public String getCreationTime() {
return this.creationTime;
}
public void setCreationTime(String creationTime) {
this.creationTime = creationTime;
}
public String getObjectType() {
return this.objectType;
}
public void setObjectType(String objectType) {
this.objectType = objectType;
}
public String getProcess() {
return this.process;
}
public void setProcess(String process) {
this.process = process;
}
public String getDescription() {
return this.description;
}
public void setDescription(String description) {
this.description = description;
}
public String getObjectPath() {
return this.objectPath;
}
public void setObjectPath(String objectPath) {
this.objectPath = objectPath;
}
public String getTaskId() {
return this.taskId;
}
public void setTaskId(String taskId) {
this.taskId = taskId;
}
}
@Override
public DescribeRefreshTaskByIdResponse getInstance(UnmarshallerContext context) {
return DescribeRefreshTaskByIdResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/model
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/model/v20180510/DescribeRefreshTasksRequest.java
|
/*
* 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.v20180510;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.cdn.Endpoint;
/**
* @author auto create
* @version
*/
public class DescribeRefreshTasksRequest extends RpcAcsRequest<DescribeRefreshTasksResponse> {
private String objectPath;
private String startTime;
private Integer pageNumber;
private String resourceGroupId;
private String securityToken;
private Integer pageSize;
private String objectType;
private String taskId;
private String domainName;
private String endTime;
private Long ownerId;
private String status;
public DescribeRefreshTasksRequest() {
super("Cdn", "2018-05-10", "DescribeRefreshTasks");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getObjectPath() {
return this.objectPath;
}
public void setObjectPath(String objectPath) {
this.objectPath = objectPath;
if(objectPath != null){
putQueryParameter("ObjectPath", objectPath);
}
}
public String getStartTime() {
return this.startTime;
}
public void setStartTime(String startTime) {
this.startTime = startTime;
if(startTime != null){
putQueryParameter("StartTime", startTime);
}
}
public Integer getPageNumber() {
return this.pageNumber;
}
public void setPageNumber(Integer pageNumber) {
this.pageNumber = pageNumber;
if(pageNumber != null){
putQueryParameter("PageNumber", pageNumber.toString());
}
}
public String getResourceGroupId() {
return this.resourceGroupId;
}
public void setResourceGroupId(String resourceGroupId) {
this.resourceGroupId = resourceGroupId;
if(resourceGroupId != null){
putQueryParameter("ResourceGroupId", resourceGroupId);
}
}
public String getSecurityToken() {
return this.securityToken;
}
public void setSecurityToken(String securityToken) {
this.securityToken = securityToken;
if(securityToken != null){
putQueryParameter("SecurityToken", securityToken);
}
}
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
if(pageSize != null){
putQueryParameter("PageSize", pageSize.toString());
}
}
public String getObjectType() {
return this.objectType;
}
public void setObjectType(String objectType) {
this.objectType = objectType;
if(objectType != null){
putQueryParameter("ObjectType", objectType);
}
}
public String getTaskId() {
return this.taskId;
}
public void setTaskId(String taskId) {
this.taskId = taskId;
if(taskId != null){
putQueryParameter("TaskId", taskId);
}
}
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());
}
}
public String getStatus() {
return this.status;
}
public void setStatus(String status) {
this.status = status;
if(status != null){
putQueryParameter("Status", status);
}
}
@Override
public Class<DescribeRefreshTasksResponse> getResponseClass() {
return DescribeRefreshTasksResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/model
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/model/v20180510/DescribeRefreshTasksResponse.java
|
/*
* 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.v20180510;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.cdn.transform.v20180510.DescribeRefreshTasksResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeRefreshTasksResponse extends AcsResponse {
private String requestId;
private Long pageNumber;
private Long pageSize;
private Long totalCount;
private List<CDNTask> tasks;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public Long getPageNumber() {
return this.pageNumber;
}
public void setPageNumber(Long pageNumber) {
this.pageNumber = pageNumber;
}
public Long getPageSize() {
return this.pageSize;
}
public void setPageSize(Long pageSize) {
this.pageSize = pageSize;
}
public Long getTotalCount() {
return this.totalCount;
}
public void setTotalCount(Long totalCount) {
this.totalCount = totalCount;
}
public List<CDNTask> getTasks() {
return this.tasks;
}
public void setTasks(List<CDNTask> tasks) {
this.tasks = tasks;
}
public static class CDNTask {
private String status;
private String creationTime;
private String objectType;
private String process;
private String description;
private String objectPath;
private String taskId;
public String getStatus() {
return this.status;
}
public void setStatus(String status) {
this.status = status;
}
public String getCreationTime() {
return this.creationTime;
}
public void setCreationTime(String creationTime) {
this.creationTime = creationTime;
}
public String getObjectType() {
return this.objectType;
}
public void setObjectType(String objectType) {
this.objectType = objectType;
}
public String getProcess() {
return this.process;
}
public void setProcess(String process) {
this.process = process;
}
public String getDescription() {
return this.description;
}
public void setDescription(String description) {
this.description = description;
}
public String getObjectPath() {
return this.objectPath;
}
public void setObjectPath(String objectPath) {
this.objectPath = objectPath;
}
public String getTaskId() {
return this.taskId;
}
public void setTaskId(String taskId) {
this.taskId = taskId;
}
}
@Override
public DescribeRefreshTasksResponse getInstance(UnmarshallerContext context) {
return DescribeRefreshTasksResponseUnmarshaller.unmarshall(this, context);
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/model
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/model/v20180510/DescribeStagingIpRequest.java
|
/*
* 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.v20180510;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.cdn.Endpoint;
/**
* @author auto create
* @version
*/
public class DescribeStagingIpRequest extends RpcAcsRequest<DescribeStagingIpResponse> {
public DescribeStagingIpRequest() {
super("Cdn", "2018-05-10", "DescribeStagingIp");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
@Override
public Class<DescribeStagingIpResponse> getResponseClass() {
return DescribeStagingIpResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/model
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/model/v20180510/DescribeStagingIpResponse.java
|
/*
* 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.v20180510;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.cdn.transform.v20180510.DescribeStagingIpResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeStagingIpResponse extends AcsResponse {
private String requestId;
private List<String> iPV4s;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public List<String> getIPV4s() {
return this.iPV4s;
}
public void setIPV4s(List<String> iPV4s) {
this.iPV4s = iPV4s;
}
@Override
public DescribeStagingIpResponse getInstance(UnmarshallerContext context) {
return DescribeStagingIpResponseUnmarshaller.unmarshall(this, context);
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/model
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/model/v20180510/DescribeTagResourcesRequest.java
|
/*
* 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.v20180510;
import com.aliyuncs.RpcAcsRequest;
import java.util.List;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.cdn.Endpoint;
/**
* @author auto create
* @version
*/
public class DescribeTagResourcesRequest extends RpcAcsRequest<DescribeTagResourcesResponse> {
private List<String> resourceIds;
private List<Tag> tags;
private String resourceType;
public DescribeTagResourcesRequest() {
super("Cdn", "2018-05-10", "DescribeTagResources");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public List<String> getResourceIds() {
return this.resourceIds;
}
public void setResourceIds(List<String> resourceIds) {
this.resourceIds = resourceIds;
if (resourceIds != null) {
for (int i = 0; i < resourceIds.size(); i++) {
putQueryParameter("ResourceId." + (i + 1) , resourceIds.get(i));
}
}
}
public List<Tag> getTags() {
return this.tags;
}
public void setTags(List<Tag> tags) {
this.tags = tags;
if (tags != null) {
for (int depth1 = 0; depth1 < tags.size(); depth1++) {
putQueryParameter("Tag." + (depth1 + 1) + ".Key" , tags.get(depth1).getKey());
putQueryParameter("Tag." + (depth1 + 1) + ".Value" , tags.get(depth1).getValue());
}
}
}
public String getResourceType() {
return this.resourceType;
}
public void setResourceType(String resourceType) {
this.resourceType = resourceType;
if(resourceType != null){
putQueryParameter("ResourceType", resourceType);
}
}
public static class Tag {
private String key;
private String value;
public String getKey() {
return this.key;
}
public void setKey(String key) {
this.key = key;
}
public String getValue() {
return this.value;
}
public void setValue(String value) {
this.value = value;
}
}
@Override
public Class<DescribeTagResourcesResponse> getResponseClass() {
return DescribeTagResourcesResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/model
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/model/v20180510/DescribeTagResourcesResponse.java
|
/*
* 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.v20180510;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.cdn.transform.v20180510.DescribeTagResourcesResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeTagResourcesResponse extends AcsResponse {
private String requestId;
private List<TagResource> tagResources;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public List<TagResource> getTagResources() {
return this.tagResources;
}
public void setTagResources(List<TagResource> tagResources) {
this.tagResources = tagResources;
}
public static class TagResource {
private String resourceId;
private List<TagItem> tag;
public String getResourceId() {
return this.resourceId;
}
public void setResourceId(String resourceId) {
this.resourceId = resourceId;
}
public List<TagItem> getTag() {
return this.tag;
}
public void setTag(List<TagItem> tag) {
this.tag = tag;
}
public static class TagItem {
private String key;
private String value;
public String getKey() {
return this.key;
}
public void setKey(String key) {
this.key = key;
}
public String getValue() {
return this.value;
}
public void setValue(String value) {
this.value = value;
}
}
}
@Override
public DescribeTagResourcesResponse getInstance(UnmarshallerContext context) {
return DescribeTagResourcesResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/model
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/model/v20180510/DescribeTopDomainsByFlowRequest.java
|
/*
* 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.v20180510;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.cdn.Endpoint;
/**
* @author auto create
* @version
*/
public class DescribeTopDomainsByFlowRequest extends RpcAcsRequest<DescribeTopDomainsByFlowResponse> {
private Long limit;
private String endTime;
private String startTime;
public DescribeTopDomainsByFlowRequest() {
super("Cdn", "2018-05-10", "DescribeTopDomainsByFlow");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public Long getLimit() {
return this.limit;
}
public void setLimit(Long limit) {
this.limit = limit;
if(limit != null){
putQueryParameter("Limit", limit.toString());
}
}
public String getEndTime() {
return this.endTime;
}
public void setEndTime(String endTime) {
this.endTime = endTime;
if(endTime != null){
putQueryParameter("EndTime", endTime);
}
}
public String getStartTime() {
return this.startTime;
}
public void setStartTime(String startTime) {
this.startTime = startTime;
if(startTime != null){
putQueryParameter("StartTime", startTime);
}
}
@Override
public Class<DescribeTopDomainsByFlowResponse> getResponseClass() {
return DescribeTopDomainsByFlowResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/model
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/model/v20180510/DescribeTopDomainsByFlowResponse.java
|
/*
* 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.v20180510;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.cdn.transform.v20180510.DescribeTopDomainsByFlowResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeTopDomainsByFlowResponse extends AcsResponse {
private Long domainOnlineCount;
private String endTime;
private String startTime;
private String requestId;
private Long domainCount;
private List<TopDomain> topDomains;
public Long getDomainOnlineCount() {
return this.domainOnlineCount;
}
public void setDomainOnlineCount(Long domainOnlineCount) {
this.domainOnlineCount = domainOnlineCount;
}
public String getEndTime() {
return this.endTime;
}
public void setEndTime(String endTime) {
this.endTime = endTime;
}
public String getStartTime() {
return this.startTime;
}
public void setStartTime(String startTime) {
this.startTime = startTime;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public Long getDomainCount() {
return this.domainCount;
}
public void setDomainCount(Long domainCount) {
this.domainCount = domainCount;
}
public List<TopDomain> getTopDomains() {
return this.topDomains;
}
public void setTopDomains(List<TopDomain> topDomains) {
this.topDomains = topDomains;
}
public static class TopDomain {
private Float maxBps;
private Long rank;
private Long totalAccess;
private String trafficPercent;
private String domainName;
private String totalTraffic;
private String maxBpsTime;
public Float getMaxBps() {
return this.maxBps;
}
public void setMaxBps(Float maxBps) {
this.maxBps = maxBps;
}
public Long getRank() {
return this.rank;
}
public void setRank(Long rank) {
this.rank = rank;
}
public Long getTotalAccess() {
return this.totalAccess;
}
public void setTotalAccess(Long totalAccess) {
this.totalAccess = totalAccess;
}
public String getTrafficPercent() {
return this.trafficPercent;
}
public void setTrafficPercent(String trafficPercent) {
this.trafficPercent = trafficPercent;
}
public String getDomainName() {
return this.domainName;
}
public void setDomainName(String domainName) {
this.domainName = domainName;
}
public String getTotalTraffic() {
return this.totalTraffic;
}
public void setTotalTraffic(String totalTraffic) {
this.totalTraffic = totalTraffic;
}
public String getMaxBpsTime() {
return this.maxBpsTime;
}
public void setMaxBpsTime(String maxBpsTime) {
this.maxBpsTime = maxBpsTime;
}
}
@Override
public DescribeTopDomainsByFlowResponse getInstance(UnmarshallerContext context) {
return DescribeTopDomainsByFlowResponseUnmarshaller.unmarshall(this, context);
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/model
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/model/v20180510/DescribeUserCertificateExpireCountRequest.java
|
/*
* 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.v20180510;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.cdn.Endpoint;
/**
* @author auto create
* @version
*/
public class DescribeUserCertificateExpireCountRequest extends RpcAcsRequest<DescribeUserCertificateExpireCountResponse> {
public DescribeUserCertificateExpireCountRequest() {
super("Cdn", "2018-05-10", "DescribeUserCertificateExpireCount");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
@Override
public Class<DescribeUserCertificateExpireCountResponse> getResponseClass() {
return DescribeUserCertificateExpireCountResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/model
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/model/v20180510/DescribeUserCertificateExpireCountResponse.java
|
/*
* 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.v20180510;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.cdn.transform.v20180510.DescribeUserCertificateExpireCountResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeUserCertificateExpireCountResponse extends AcsResponse {
private Integer expireWithin30DaysCount;
private String requestId;
private Integer expiredCount;
public Integer getExpireWithin30DaysCount() {
return this.expireWithin30DaysCount;
}
public void setExpireWithin30DaysCount(Integer expireWithin30DaysCount) {
this.expireWithin30DaysCount = expireWithin30DaysCount;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public Integer getExpiredCount() {
return this.expiredCount;
}
public void setExpiredCount(Integer expiredCount) {
this.expiredCount = expiredCount;
}
@Override
public DescribeUserCertificateExpireCountResponse getInstance(UnmarshallerContext context) {
return DescribeUserCertificateExpireCountResponseUnmarshaller.unmarshall(this, context);
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/model
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/model/v20180510/DescribeUserConfigsRequest.java
|
/*
* 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.v20180510;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.cdn.Endpoint;
/**
* @author auto create
* @version
*/
public class DescribeUserConfigsRequest extends RpcAcsRequest<DescribeUserConfigsResponse> {
private String securityToken;
private Long ownerId;
private String config;
public DescribeUserConfigsRequest() {
super("Cdn", "2018-05-10", "DescribeUserConfigs");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getSecurityToken() {
return this.securityToken;
}
public void setSecurityToken(String securityToken) {
this.securityToken = securityToken;
if(securityToken != null){
putQueryParameter("SecurityToken", securityToken);
}
}
public Long getOwnerId() {
return this.ownerId;
}
public void setOwnerId(Long ownerId) {
this.ownerId = ownerId;
if(ownerId != null){
putQueryParameter("OwnerId", ownerId.toString());
}
}
public String getConfig() {
return this.config;
}
public void setConfig(String config) {
this.config = config;
if(config != null){
putQueryParameter("Config", config);
}
}
@Override
public Class<DescribeUserConfigsResponse> getResponseClass() {
return DescribeUserConfigsResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/model
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/model/v20180510/DescribeUserConfigsResponse.java
|
/*
* 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.v20180510;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.cdn.transform.v20180510.DescribeUserConfigsResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeUserConfigsResponse extends AcsResponse {
private String requestId;
private Configs configs;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public Configs getConfigs() {
return this.configs;
}
public void setConfigs(Configs configs) {
this.configs = configs;
}
public static class Configs {
private OssLogConfig ossLogConfig;
private WafConfig wafConfig;
public OssLogConfig getOssLogConfig() {
return this.ossLogConfig;
}
public void setOssLogConfig(OssLogConfig ossLogConfig) {
this.ossLogConfig = ossLogConfig;
}
public WafConfig getWafConfig() {
return this.wafConfig;
}
public void setWafConfig(WafConfig wafConfig) {
this.wafConfig = wafConfig;
}
public static class OssLogConfig {
private String prefix;
private String enable;
private String bucket;
public String getPrefix() {
return this.prefix;
}
public void setPrefix(String prefix) {
this.prefix = prefix;
}
public String getEnable() {
return this.enable;
}
public void setEnable(String enable) {
this.enable = enable;
}
public String getBucket() {
return this.bucket;
}
public void setBucket(String bucket) {
this.bucket = bucket;
}
}
public static class WafConfig {
private String enable;
public String getEnable() {
return this.enable;
}
public void setEnable(String enable) {
this.enable = enable;
}
}
}
@Override
public DescribeUserConfigsResponse getInstance(UnmarshallerContext context) {
return DescribeUserConfigsResponseUnmarshaller.unmarshall(this, context);
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/model
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/model/v20180510/DescribeUserDomainsRequest.java
|
/*
* 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.v20180510;
import com.aliyuncs.RpcAcsRequest;
import java.util.List;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.cdn.Endpoint;
/**
* @author auto create
* @version
*/
public class DescribeUserDomainsRequest extends RpcAcsRequest<DescribeUserDomainsResponse> {
private String source;
private Integer pageNumber;
private Boolean checkDomainShow;
private String resourceGroupId;
private String securityToken;
private String cdnType;
private String changeEndTime;
private Integer pageSize;
private List<Tag> tags;
private String coverage;
private String domainName;
private Long ownerId;
private String domainStatus;
private String domainSearchType;
private String changeStartTime;
public DescribeUserDomainsRequest() {
super("Cdn", "2018-05-10", "DescribeUserDomains");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getSource() {
return this.source;
}
public void setSource(String source) {
this.source = source;
if(source != null){
putQueryParameter("Source", source);
}
}
public Integer getPageNumber() {
return this.pageNumber;
}
public void setPageNumber(Integer pageNumber) {
this.pageNumber = pageNumber;
if(pageNumber != null){
putQueryParameter("PageNumber", pageNumber.toString());
}
}
public Boolean getCheckDomainShow() {
return this.checkDomainShow;
}
public void setCheckDomainShow(Boolean checkDomainShow) {
this.checkDomainShow = checkDomainShow;
if(checkDomainShow != null){
putQueryParameter("CheckDomainShow", checkDomainShow.toString());
}
}
public String getResourceGroupId() {
return this.resourceGroupId;
}
public void setResourceGroupId(String resourceGroupId) {
this.resourceGroupId = resourceGroupId;
if(resourceGroupId != null){
putQueryParameter("ResourceGroupId", resourceGroupId);
}
}
public String getSecurityToken() {
return this.securityToken;
}
public void setSecurityToken(String securityToken) {
this.securityToken = securityToken;
if(securityToken != null){
putQueryParameter("SecurityToken", securityToken);
}
}
public String getCdnType() {
return this.cdnType;
}
public void setCdnType(String cdnType) {
this.cdnType = cdnType;
if(cdnType != null){
putQueryParameter("CdnType", cdnType);
}
}
public String getChangeEndTime() {
return this.changeEndTime;
}
public void setChangeEndTime(String changeEndTime) {
this.changeEndTime = changeEndTime;
if(changeEndTime != null){
putQueryParameter("ChangeEndTime", changeEndTime);
}
}
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
if(pageSize != null){
putQueryParameter("PageSize", pageSize.toString());
}
}
public List<Tag> getTags() {
return this.tags;
}
public void setTags(List<Tag> tags) {
this.tags = tags;
if (tags != null) {
for (int depth1 = 0; depth1 < tags.size(); depth1++) {
putQueryParameter("Tag." + (depth1 + 1) + ".Value" , tags.get(depth1).getValue());
putQueryParameter("Tag." + (depth1 + 1) + ".Key" , tags.get(depth1).getKey());
}
}
}
public String getCoverage() {
return this.coverage;
}
public void setCoverage(String coverage) {
this.coverage = coverage;
if(coverage != null){
putQueryParameter("Coverage", coverage);
}
}
public String getDomainName() {
return this.domainName;
}
public void setDomainName(String domainName) {
this.domainName = domainName;
if(domainName != null){
putQueryParameter("DomainName", domainName);
}
}
public Long getOwnerId() {
return this.ownerId;
}
public void setOwnerId(Long ownerId) {
this.ownerId = ownerId;
if(ownerId != null){
putQueryParameter("OwnerId", ownerId.toString());
}
}
public String getDomainStatus() {
return this.domainStatus;
}
public void setDomainStatus(String domainStatus) {
this.domainStatus = domainStatus;
if(domainStatus != null){
putQueryParameter("DomainStatus", domainStatus);
}
}
public String getDomainSearchType() {
return this.domainSearchType;
}
public void setDomainSearchType(String domainSearchType) {
this.domainSearchType = domainSearchType;
if(domainSearchType != null){
putQueryParameter("DomainSearchType", domainSearchType);
}
}
public String getChangeStartTime() {
return this.changeStartTime;
}
public void setChangeStartTime(String changeStartTime) {
this.changeStartTime = changeStartTime;
if(changeStartTime != null){
putQueryParameter("ChangeStartTime", changeStartTime);
}
}
public static class Tag {
private String value;
private String key;
public String getValue() {
return this.value;
}
public void setValue(String value) {
this.value = value;
}
public String getKey() {
return this.key;
}
public void setKey(String key) {
this.key = key;
}
}
@Override
public Class<DescribeUserDomainsResponse> getResponseClass() {
return DescribeUserDomainsResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/model
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/model/v20180510/DescribeUserDomainsResponse.java
|
/*
* 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.v20180510;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.cdn.transform.v20180510.DescribeUserDomainsResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeUserDomainsResponse extends AcsResponse {
private String requestId;
private Long pageNumber;
private Long pageSize;
private Long totalCount;
private List<PageData> domains;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public Long getPageNumber() {
return this.pageNumber;
}
public void setPageNumber(Long pageNumber) {
this.pageNumber = pageNumber;
}
public Long getPageSize() {
return this.pageSize;
}
public void setPageSize(Long pageSize) {
this.pageSize = pageSize;
}
public Long getTotalCount() {
return this.totalCount;
}
public void setTotalCount(Long totalCount) {
this.totalCount = totalCount;
}
public List<PageData> getDomains() {
return this.domains;
}
public void setDomains(List<PageData> domains) {
this.domains = domains;
}
public static class PageData {
private String sslProtocol;
private String sandbox;
private String gmtModified;
private String domainName;
private Long domainId;
private String gmtCreated;
private String description;
private String coverage;
private String resourceGroupId;
private String cname;
private String domainStatus;
private String cdnType;
private List<Source> sources;
public String getSslProtocol() {
return this.sslProtocol;
}
public void setSslProtocol(String sslProtocol) {
this.sslProtocol = sslProtocol;
}
public String getSandbox() {
return this.sandbox;
}
public void setSandbox(String sandbox) {
this.sandbox = sandbox;
}
public String getGmtModified() {
return this.gmtModified;
}
public void setGmtModified(String gmtModified) {
this.gmtModified = gmtModified;
}
public String getDomainName() {
return this.domainName;
}
public void setDomainName(String domainName) {
this.domainName = domainName;
}
public Long getDomainId() {
return this.domainId;
}
public void setDomainId(Long domainId) {
this.domainId = domainId;
}
public String getGmtCreated() {
return this.gmtCreated;
}
public void setGmtCreated(String gmtCreated) {
this.gmtCreated = gmtCreated;
}
public String getDescription() {
return this.description;
}
public void setDescription(String description) {
this.description = description;
}
public String getCoverage() {
return this.coverage;
}
public void setCoverage(String coverage) {
this.coverage = coverage;
}
public String getResourceGroupId() {
return this.resourceGroupId;
}
public void setResourceGroupId(String resourceGroupId) {
this.resourceGroupId = resourceGroupId;
}
public String getCname() {
return this.cname;
}
public void setCname(String cname) {
this.cname = cname;
}
public String getDomainStatus() {
return this.domainStatus;
}
public void setDomainStatus(String domainStatus) {
this.domainStatus = domainStatus;
}
public String getCdnType() {
return this.cdnType;
}
public void setCdnType(String cdnType) {
this.cdnType = cdnType;
}
public List<Source> getSources() {
return this.sources;
}
public void setSources(List<Source> sources) {
this.sources = sources;
}
public static class Source {
private String type;
private String weight;
private String priority;
private Integer port;
private String content;
public String getType() {
return this.type;
}
public void setType(String type) {
this.type = type;
}
public String getWeight() {
return this.weight;
}
public void setWeight(String weight) {
this.weight = weight;
}
public String getPriority() {
return this.priority;
}
public void setPriority(String priority) {
this.priority = priority;
}
public Integer getPort() {
return this.port;
}
public void setPort(Integer port) {
this.port = port;
}
public String getContent() {
return this.content;
}
public void setContent(String content) {
this.content = content;
}
}
}
@Override
public DescribeUserDomainsResponse getInstance(UnmarshallerContext context) {
return DescribeUserDomainsResponseUnmarshaller.unmarshall(this, context);
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/model
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/model/v20180510/DescribeUserTagsRequest.java
|
/*
* 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.v20180510;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.cdn.Endpoint;
/**
* @author auto create
* @version
*/
public class DescribeUserTagsRequest extends RpcAcsRequest<DescribeUserTagsResponse> {
public DescribeUserTagsRequest() {
super("Cdn", "2018-05-10", "DescribeUserTags");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
@Override
public Class<DescribeUserTagsResponse> getResponseClass() {
return DescribeUserTagsResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/model
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/model/v20180510/DescribeUserTagsResponse.java
|
/*
* 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.v20180510;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.cdn.transform.v20180510.DescribeUserTagsResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeUserTagsResponse extends AcsResponse {
private String requestId;
private List<Tag> tags;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public List<Tag> getTags() {
return this.tags;
}
public void setTags(List<Tag> tags) {
this.tags = tags;
}
public static class Tag {
private String key;
private List<String> value;
public String getKey() {
return this.key;
}
public void setKey(String key) {
this.key = key;
}
public List<String> getValue() {
return this.value;
}
public void setValue(List<String> value) {
this.value = value;
}
}
@Override
public DescribeUserTagsResponse getInstance(UnmarshallerContext context) {
return DescribeUserTagsResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/model
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/model/v20180510/DescribeUserUsageDataExportTaskRequest.java
|
/*
* 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.v20180510;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.cdn.Endpoint;
/**
* @author auto create
* @version
*/
public class DescribeUserUsageDataExportTaskRequest extends RpcAcsRequest<DescribeUserUsageDataExportTaskResponse> {
private String pageSize;
private String pageNumber;
public DescribeUserUsageDataExportTaskRequest() {
super("Cdn", "2018-05-10", "DescribeUserUsageDataExportTask");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getPageSize() {
return this.pageSize;
}
public void setPageSize(String pageSize) {
this.pageSize = pageSize;
if(pageSize != null){
putQueryParameter("PageSize", pageSize);
}
}
public String getPageNumber() {
return this.pageNumber;
}
public void setPageNumber(String pageNumber) {
this.pageNumber = pageNumber;
if(pageNumber != null){
putQueryParameter("PageNumber", pageNumber);
}
}
@Override
public Class<DescribeUserUsageDataExportTaskResponse> getResponseClass() {
return DescribeUserUsageDataExportTaskResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/model
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/model/v20180510/DescribeUserUsageDataExportTaskResponse.java
|
/*
* 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.v20180510;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.cdn.transform.v20180510.DescribeUserUsageDataExportTaskResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeUserUsageDataExportTaskResponse extends AcsResponse {
private String requestId;
private UsageDataPerPage usageDataPerPage;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public UsageDataPerPage getUsageDataPerPage() {
return this.usageDataPerPage;
}
public void setUsageDataPerPage(UsageDataPerPage usageDataPerPage) {
this.usageDataPerPage = usageDataPerPage;
}
public static class UsageDataPerPage {
private Integer pageSize;
private Integer pageNumber;
private Integer totalCount;
private List<DataItem> data;
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
}
public Integer getPageNumber() {
return this.pageNumber;
}
public void setPageNumber(Integer pageNumber) {
this.pageNumber = pageNumber;
}
public Integer getTotalCount() {
return this.totalCount;
}
public void setTotalCount(Integer totalCount) {
this.totalCount = totalCount;
}
public List<DataItem> getData() {
return this.data;
}
public void setData(List<DataItem> data) {
this.data = data;
}
public static class DataItem {
private String status;
private String updateTime;
private String downloadUrl;
private String createTime;
private String taskName;
private String taskId;
private TaskConfig taskConfig;
public String getStatus() {
return this.status;
}
public void setStatus(String status) {
this.status = status;
}
public String getUpdateTime() {
return this.updateTime;
}
public void setUpdateTime(String updateTime) {
this.updateTime = updateTime;
}
public String getDownloadUrl() {
return this.downloadUrl;
}
public void setDownloadUrl(String downloadUrl) {
this.downloadUrl = downloadUrl;
}
public String getCreateTime() {
return this.createTime;
}
public void setCreateTime(String createTime) {
this.createTime = createTime;
}
public String getTaskName() {
return this.taskName;
}
public void setTaskName(String taskName) {
this.taskName = taskName;
}
public String getTaskId() {
return this.taskId;
}
public void setTaskId(String taskId) {
this.taskId = taskId;
}
public TaskConfig getTaskConfig() {
return this.taskConfig;
}
public void setTaskConfig(TaskConfig taskConfig) {
this.taskConfig = taskConfig;
}
public static class TaskConfig {
private String endTime;
private String startTime;
public String getEndTime() {
return this.endTime;
}
public void setEndTime(String endTime) {
this.endTime = endTime;
}
public String getStartTime() {
return this.startTime;
}
public void setStartTime(String startTime) {
this.startTime = startTime;
}
}
}
}
@Override
public DescribeUserUsageDataExportTaskResponse getInstance(UnmarshallerContext context) {
return DescribeUserUsageDataExportTaskResponseUnmarshaller.unmarshall(this, context);
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/model
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/model/v20180510/DescribeUserUsageDetailDataExportTaskRequest.java
|
/*
* 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.v20180510;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.cdn.Endpoint;
/**
* @author auto create
* @version
*/
public class DescribeUserUsageDetailDataExportTaskRequest extends RpcAcsRequest<DescribeUserUsageDetailDataExportTaskResponse> {
private String pageSize;
private String pageNumber;
public DescribeUserUsageDetailDataExportTaskRequest() {
super("Cdn", "2018-05-10", "DescribeUserUsageDetailDataExportTask");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getPageSize() {
return this.pageSize;
}
public void setPageSize(String pageSize) {
this.pageSize = pageSize;
if(pageSize != null){
putQueryParameter("PageSize", pageSize);
}
}
public String getPageNumber() {
return this.pageNumber;
}
public void setPageNumber(String pageNumber) {
this.pageNumber = pageNumber;
if(pageNumber != null){
putQueryParameter("PageNumber", pageNumber);
}
}
@Override
public Class<DescribeUserUsageDetailDataExportTaskResponse> getResponseClass() {
return DescribeUserUsageDetailDataExportTaskResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/model
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/model/v20180510/DescribeUserUsageDetailDataExportTaskResponse.java
|
/*
* 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.v20180510;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.cdn.transform.v20180510.DescribeUserUsageDetailDataExportTaskResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeUserUsageDetailDataExportTaskResponse extends AcsResponse {
private String requestId;
private UsageDataPerPage usageDataPerPage;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public UsageDataPerPage getUsageDataPerPage() {
return this.usageDataPerPage;
}
public void setUsageDataPerPage(UsageDataPerPage usageDataPerPage) {
this.usageDataPerPage = usageDataPerPage;
}
public static class UsageDataPerPage {
private Integer pageSize;
private Integer pageNumber;
private Integer totalCount;
private List<DataItem> data;
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
}
public Integer getPageNumber() {
return this.pageNumber;
}
public void setPageNumber(Integer pageNumber) {
this.pageNumber = pageNumber;
}
public Integer getTotalCount() {
return this.totalCount;
}
public void setTotalCount(Integer totalCount) {
this.totalCount = totalCount;
}
public List<DataItem> getData() {
return this.data;
}
public void setData(List<DataItem> data) {
this.data = data;
}
public static class DataItem {
private String status;
private String updateTime;
private String downloadUrl;
private String createTime;
private String taskName;
private String taskId;
private TaskConfig taskConfig;
public String getStatus() {
return this.status;
}
public void setStatus(String status) {
this.status = status;
}
public String getUpdateTime() {
return this.updateTime;
}
public void setUpdateTime(String updateTime) {
this.updateTime = updateTime;
}
public String getDownloadUrl() {
return this.downloadUrl;
}
public void setDownloadUrl(String downloadUrl) {
this.downloadUrl = downloadUrl;
}
public String getCreateTime() {
return this.createTime;
}
public void setCreateTime(String createTime) {
this.createTime = createTime;
}
public String getTaskName() {
return this.taskName;
}
public void setTaskName(String taskName) {
this.taskName = taskName;
}
public String getTaskId() {
return this.taskId;
}
public void setTaskId(String taskId) {
this.taskId = taskId;
}
public TaskConfig getTaskConfig() {
return this.taskConfig;
}
public void setTaskConfig(TaskConfig taskConfig) {
this.taskConfig = taskConfig;
}
public static class TaskConfig {
private String endTime;
private String startTime;
public String getEndTime() {
return this.endTime;
}
public void setEndTime(String endTime) {
this.endTime = endTime;
}
public String getStartTime() {
return this.startTime;
}
public void setStartTime(String startTime) {
this.startTime = startTime;
}
}
}
}
@Override
public DescribeUserUsageDetailDataExportTaskResponse getInstance(UnmarshallerContext context) {
return DescribeUserUsageDetailDataExportTaskResponseUnmarshaller.unmarshall(this, context);
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/model
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/model/v20180510/DescribeUserVipsByDomainRequest.java
|
/*
* 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.v20180510;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.cdn.Endpoint;
/**
* @author auto create
* @version
*/
public class DescribeUserVipsByDomainRequest extends RpcAcsRequest<DescribeUserVipsByDomainResponse> {
private String domainName;
private String available;
public DescribeUserVipsByDomainRequest() {
super("Cdn", "2018-05-10", "DescribeUserVipsByDomain");
setMethod(MethodType.GET);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getDomainName() {
return this.domainName;
}
public void setDomainName(String domainName) {
this.domainName = domainName;
if(domainName != null){
putQueryParameter("DomainName", domainName);
}
}
public String getAvailable() {
return this.available;
}
public void setAvailable(String available) {
this.available = available;
if(available != null){
putQueryParameter("Available", available);
}
}
@Override
public Class<DescribeUserVipsByDomainResponse> getResponseClass() {
return DescribeUserVipsByDomainResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/model
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/model/v20180510/DescribeUserVipsByDomainResponse.java
|
/*
* 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.v20180510;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.cdn.transform.v20180510.DescribeUserVipsByDomainResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeUserVipsByDomainResponse extends AcsResponse {
private String domainName;
private String requestId;
private List<String> vips;
public String getDomainName() {
return this.domainName;
}
public void setDomainName(String domainName) {
this.domainName = domainName;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public List<String> getVips() {
return this.vips;
}
public void setVips(List<String> vips) {
this.vips = vips;
}
@Override
public DescribeUserVipsByDomainResponse getInstance(UnmarshallerContext context) {
return DescribeUserVipsByDomainResponseUnmarshaller.unmarshall(this, context);
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/model
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/model/v20180510/DescribeVerifyContentRequest.java
|
/*
* 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.v20180510;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.cdn.Endpoint;
/**
* @author auto create
* @version
*/
public class DescribeVerifyContentRequest extends RpcAcsRequest<DescribeVerifyContentResponse> {
private String domainName;
public DescribeVerifyContentRequest() {
super("Cdn", "2018-05-10", "DescribeVerifyContent");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getDomainName() {
return this.domainName;
}
public void setDomainName(String domainName) {
this.domainName = domainName;
if(domainName != null){
putQueryParameter("DomainName", domainName);
}
}
@Override
public Class<DescribeVerifyContentResponse> getResponseClass() {
return DescribeVerifyContentResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/model
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/model/v20180510/DescribeVerifyContentResponse.java
|
/*
* 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.v20180510;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.cdn.transform.v20180510.DescribeVerifyContentResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeVerifyContentResponse extends AcsResponse {
private String content;
private String requestId;
public String getContent() {
return this.content;
}
public void setContent(String content) {
this.content = content;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
@Override
public DescribeVerifyContentResponse getInstance(UnmarshallerContext context) {
return DescribeVerifyContentResponseUnmarshaller.unmarshall(this, context);
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/model
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/model/v20180510/DisableRealtimeLogDeliveryRequest.java
|
/*
* 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.v20180510;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.cdn.Endpoint;
/**
* @author auto create
* @version
*/
public class DisableRealtimeLogDeliveryRequest extends RpcAcsRequest<DisableRealtimeLogDeliveryResponse> {
private String domain;
public DisableRealtimeLogDeliveryRequest() {
super("Cdn", "2018-05-10", "DisableRealtimeLogDelivery");
setMethod(MethodType.GET);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getDomain() {
return this.domain;
}
public void setDomain(String domain) {
this.domain = domain;
if(domain != null){
putQueryParameter("Domain", domain);
}
}
@Override
public Class<DisableRealtimeLogDeliveryResponse> getResponseClass() {
return DisableRealtimeLogDeliveryResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/model
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/model/v20180510/DisableRealtimeLogDeliveryResponse.java
|
/*
* 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.v20180510;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.cdn.transform.v20180510.DisableRealtimeLogDeliveryResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DisableRealtimeLogDeliveryResponse extends AcsResponse {
private String requestId;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
@Override
public DisableRealtimeLogDeliveryResponse getInstance(UnmarshallerContext context) {
return DisableRealtimeLogDeliveryResponseUnmarshaller.unmarshall(this, context);
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/model
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/model/v20180510/EnableRealtimeLogDeliveryRequest.java
|
/*
* 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.v20180510;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.cdn.Endpoint;
/**
* @author auto create
* @version
*/
public class EnableRealtimeLogDeliveryRequest extends RpcAcsRequest<EnableRealtimeLogDeliveryResponse> {
private String domain;
public EnableRealtimeLogDeliveryRequest() {
super("Cdn", "2018-05-10", "EnableRealtimeLogDelivery");
setMethod(MethodType.GET);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getDomain() {
return this.domain;
}
public void setDomain(String domain) {
this.domain = domain;
if(domain != null){
putQueryParameter("Domain", domain);
}
}
@Override
public Class<EnableRealtimeLogDeliveryResponse> getResponseClass() {
return EnableRealtimeLogDeliveryResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/model
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/model/v20180510/EnableRealtimeLogDeliveryResponse.java
|
/*
* 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.v20180510;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.cdn.transform.v20180510.EnableRealtimeLogDeliveryResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class EnableRealtimeLogDeliveryResponse extends AcsResponse {
private String requestId;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
@Override
public EnableRealtimeLogDeliveryResponse getInstance(UnmarshallerContext context) {
return EnableRealtimeLogDeliveryResponseUnmarshaller.unmarshall(this, context);
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/model
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/model/v20180510/ListDomainsByLogConfigIdRequest.java
|
/*
* 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.v20180510;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.cdn.Endpoint;
/**
* @author auto create
* @version
*/
public class ListDomainsByLogConfigIdRequest extends RpcAcsRequest<ListDomainsByLogConfigIdResponse> {
private String configId;
public ListDomainsByLogConfigIdRequest() {
super("Cdn", "2018-05-10", "ListDomainsByLogConfigId");
setMethod(MethodType.GET);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getConfigId() {
return this.configId;
}
public void setConfigId(String configId) {
this.configId = configId;
if(configId != null){
putQueryParameter("ConfigId", configId);
}
}
@Override
public Class<ListDomainsByLogConfigIdResponse> getResponseClass() {
return ListDomainsByLogConfigIdResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/model
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/model/v20180510/ListDomainsByLogConfigIdResponse.java
|
/*
* 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.v20180510;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.cdn.transform.v20180510.ListDomainsByLogConfigIdResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class ListDomainsByLogConfigIdResponse extends AcsResponse {
private String requestId;
private List<String> domains;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public List<String> getDomains() {
return this.domains;
}
public void setDomains(List<String> domains) {
this.domains = domains;
}
@Override
public ListDomainsByLogConfigIdResponse getInstance(UnmarshallerContext context) {
return ListDomainsByLogConfigIdResponseUnmarshaller.unmarshall(this, context);
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/model
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/model/v20180510/ListFCTriggerRequest.java
|
/*
* 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.v20180510;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.cdn.Endpoint;
/**
* @author auto create
* @version
*/
public class ListFCTriggerRequest extends RpcAcsRequest<ListFCTriggerResponse> {
private String eventMetaVersion;
private String eventMetaName;
public ListFCTriggerRequest() {
super("Cdn", "2018-05-10", "ListFCTrigger");
setMethod(MethodType.GET);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getEventMetaVersion() {
return this.eventMetaVersion;
}
public void setEventMetaVersion(String eventMetaVersion) {
this.eventMetaVersion = eventMetaVersion;
if(eventMetaVersion != null){
putQueryParameter("EventMetaVersion", eventMetaVersion);
}
}
public String getEventMetaName() {
return this.eventMetaName;
}
public void setEventMetaName(String eventMetaName) {
this.eventMetaName = eventMetaName;
if(eventMetaName != null){
putQueryParameter("EventMetaName", eventMetaName);
}
}
@Override
public Class<ListFCTriggerResponse> getResponseClass() {
return ListFCTriggerResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/model
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/model/v20180510/ListFCTriggerResponse.java
|
/*
* 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.v20180510;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.cdn.transform.v20180510.ListFCTriggerResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class ListFCTriggerResponse extends AcsResponse {
private String requestId;
private List<FCTrigger> fCTriggers;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public List<FCTrigger> getFCTriggers() {
return this.fCTriggers;
}
public void setFCTriggers(List<FCTrigger> fCTriggers) {
this.fCTriggers = fCTriggers;
}
public static class FCTrigger {
private String triggerARN;
private String roleARN;
private String sourceArn;
private String notes;
private String eventMetaName;
private String eventMetaVersion;
public String getTriggerARN() {
return this.triggerARN;
}
public void setTriggerARN(String triggerARN) {
this.triggerARN = triggerARN;
}
public String getRoleARN() {
return this.roleARN;
}
public void setRoleARN(String roleARN) {
this.roleARN = roleARN;
}
public String getSourceArn() {
return this.sourceArn;
}
public void setSourceArn(String sourceArn) {
this.sourceArn = sourceArn;
}
public String getNotes() {
return this.notes;
}
public void setNotes(String notes) {
this.notes = notes;
}
public String getEventMetaName() {
return this.eventMetaName;
}
public void setEventMetaName(String eventMetaName) {
this.eventMetaName = eventMetaName;
}
public String getEventMetaVersion() {
return this.eventMetaVersion;
}
public void setEventMetaVersion(String eventMetaVersion) {
this.eventMetaVersion = eventMetaVersion;
}
}
@Override
public ListFCTriggerResponse getInstance(UnmarshallerContext context) {
return ListFCTriggerResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/model
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/model/v20180510/ListRealtimeLogDeliveryDomainsRequest.java
|
/*
* 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.v20180510;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.cdn.Endpoint;
/**
* @author auto create
* @version
*/
public class ListRealtimeLogDeliveryDomainsRequest extends RpcAcsRequest<ListRealtimeLogDeliveryDomainsResponse> {
private String project;
private String region;
private String logstore;
public ListRealtimeLogDeliveryDomainsRequest() {
super("Cdn", "2018-05-10", "ListRealtimeLogDeliveryDomains");
setMethod(MethodType.GET);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getProject() {
return this.project;
}
public void setProject(String project) {
this.project = project;
if(project != null){
putQueryParameter("Project", project);
}
}
public String getRegion() {
return this.region;
}
public void setRegion(String region) {
this.region = region;
if(region != null){
putQueryParameter("Region", region);
}
}
public String getLogstore() {
return this.logstore;
}
public void setLogstore(String logstore) {
this.logstore = logstore;
if(logstore != null){
putQueryParameter("Logstore", logstore);
}
}
@Override
public Class<ListRealtimeLogDeliveryDomainsResponse> getResponseClass() {
return ListRealtimeLogDeliveryDomainsResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/model
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/model/v20180510/ListRealtimeLogDeliveryDomainsResponse.java
|
/*
* 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.v20180510;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.cdn.transform.v20180510.ListRealtimeLogDeliveryDomainsResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class ListRealtimeLogDeliveryDomainsResponse extends AcsResponse {
private String requestId;
private List<Domains> content;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public List<Domains> getContent() {
return this.content;
}
public void setContent(List<Domains> content) {
this.content = content;
}
public static class Domains {
private String status;
private String domainName;
public String getStatus() {
return this.status;
}
public void setStatus(String status) {
this.status = status;
}
public String getDomainName() {
return this.domainName;
}
public void setDomainName(String domainName) {
this.domainName = domainName;
}
}
@Override
public ListRealtimeLogDeliveryDomainsResponse getInstance(UnmarshallerContext context) {
return ListRealtimeLogDeliveryDomainsResponseUnmarshaller.unmarshall(this, context);
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/model
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/model/v20180510/ListRealtimeLogDeliveryInfosRequest.java
|
/*
* 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.v20180510;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.cdn.Endpoint;
/**
* @author auto create
* @version
*/
public class ListRealtimeLogDeliveryInfosRequest extends RpcAcsRequest<ListRealtimeLogDeliveryInfosResponse> {
public ListRealtimeLogDeliveryInfosRequest() {
super("Cdn", "2018-05-10", "ListRealtimeLogDeliveryInfos");
setMethod(MethodType.GET);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
@Override
public Class<ListRealtimeLogDeliveryInfosResponse> getResponseClass() {
return ListRealtimeLogDeliveryInfosResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/model
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/model/v20180510/ListRealtimeLogDeliveryInfosResponse.java
|
/*
* 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.v20180510;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.cdn.transform.v20180510.ListRealtimeLogDeliveryInfosResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class ListRealtimeLogDeliveryInfosResponse extends AcsResponse {
private String requestId;
private List<RealtimeLogDeliveryInfos> content;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public List<RealtimeLogDeliveryInfos> getContent() {
return this.content;
}
public void setContent(List<RealtimeLogDeliveryInfos> content) {
this.content = content;
}
public static class RealtimeLogDeliveryInfos {
private String logstore;
private String project;
private String region;
public String getLogstore() {
return this.logstore;
}
public void setLogstore(String logstore) {
this.logstore = logstore;
}
public String getProject() {
return this.project;
}
public void setProject(String project) {
this.project = project;
}
public String getRegion() {
return this.region;
}
public void setRegion(String region) {
this.region = region;
}
}
@Override
public ListRealtimeLogDeliveryInfosResponse getInstance(UnmarshallerContext context) {
return ListRealtimeLogDeliveryInfosResponseUnmarshaller.unmarshall(this, context);
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/model
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/model/v20180510/ListUserCustomLogConfigRequest.java
|
/*
* 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.v20180510;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.cdn.Endpoint;
/**
* @author auto create
* @version
*/
public class ListUserCustomLogConfigRequest extends RpcAcsRequest<ListUserCustomLogConfigResponse> {
public ListUserCustomLogConfigRequest() {
super("Cdn", "2018-05-10", "ListUserCustomLogConfig");
setMethod(MethodType.GET);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
@Override
public Class<ListUserCustomLogConfigResponse> getResponseClass() {
return ListUserCustomLogConfigResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/model
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/model/v20180510/ListUserCustomLogConfigResponse.java
|
/*
* 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.v20180510;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.cdn.transform.v20180510.ListUserCustomLogConfigResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class ListUserCustomLogConfigResponse extends AcsResponse {
private String requestId;
private List<String> configIds;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public List<String> getConfigIds() {
return this.configIds;
}
public void setConfigIds(List<String> configIds) {
this.configIds = configIds;
}
@Override
public ListUserCustomLogConfigResponse getInstance(UnmarshallerContext context) {
return ListUserCustomLogConfigResponseUnmarshaller.unmarshall(this, context);
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/model
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/model/v20180510/ModifyCdnDomainRequest.java
|
/*
* 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.v20180510;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.cdn.Endpoint;
/**
* @author auto create
* @version
*/
public class ModifyCdnDomainRequest extends RpcAcsRequest<ModifyCdnDomainResponse> {
private String sources;
private String resourceGroupId;
private String securityToken;
private String topLevelDomain;
private String domainName;
private Long ownerId;
public ModifyCdnDomainRequest() {
super("Cdn", "2018-05-10", "ModifyCdnDomain");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getSources() {
return this.sources;
}
public void setSources(String sources) {
this.sources = sources;
if(sources != null){
putQueryParameter("Sources", sources);
}
}
public String getResourceGroupId() {
return this.resourceGroupId;
}
public void setResourceGroupId(String resourceGroupId) {
this.resourceGroupId = resourceGroupId;
if(resourceGroupId != null){
putQueryParameter("ResourceGroupId", resourceGroupId);
}
}
public String getSecurityToken() {
return this.securityToken;
}
public void setSecurityToken(String securityToken) {
this.securityToken = securityToken;
if(securityToken != null){
putQueryParameter("SecurityToken", securityToken);
}
}
public String getTopLevelDomain() {
return this.topLevelDomain;
}
public void setTopLevelDomain(String topLevelDomain) {
this.topLevelDomain = topLevelDomain;
if(topLevelDomain != null){
putQueryParameter("TopLevelDomain", topLevelDomain);
}
}
public String getDomainName() {
return this.domainName;
}
public void setDomainName(String domainName) {
this.domainName = domainName;
if(domainName != null){
putQueryParameter("DomainName", domainName);
}
}
public Long getOwnerId() {
return this.ownerId;
}
public void setOwnerId(Long ownerId) {
this.ownerId = ownerId;
if(ownerId != null){
putQueryParameter("OwnerId", ownerId.toString());
}
}
@Override
public Class<ModifyCdnDomainResponse> getResponseClass() {
return ModifyCdnDomainResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/model
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/model/v20180510/ModifyCdnDomainResponse.java
|
/*
* 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.v20180510;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.cdn.transform.v20180510.ModifyCdnDomainResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class ModifyCdnDomainResponse extends AcsResponse {
private String requestId;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
@Override
public ModifyCdnDomainResponse getInstance(UnmarshallerContext context) {
return ModifyCdnDomainResponseUnmarshaller.unmarshall(this, context);
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/model
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/model/v20180510/ModifyCdnDomainSchdmByPropertyRequest.java
|
/*
* 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.v20180510;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.cdn.Endpoint;
/**
* @author auto create
* @version
*/
public class ModifyCdnDomainSchdmByPropertyRequest extends RpcAcsRequest<ModifyCdnDomainSchdmByPropertyResponse> {
private String domainName;
private String property;
public ModifyCdnDomainSchdmByPropertyRequest() {
super("Cdn", "2018-05-10", "ModifyCdnDomainSchdmByProperty");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getDomainName() {
return this.domainName;
}
public void setDomainName(String domainName) {
this.domainName = domainName;
if(domainName != null){
putQueryParameter("DomainName", domainName);
}
}
public String getProperty() {
return this.property;
}
public void setProperty(String property) {
this.property = property;
if(property != null){
putQueryParameter("Property", property);
}
}
@Override
public Class<ModifyCdnDomainSchdmByPropertyResponse> getResponseClass() {
return ModifyCdnDomainSchdmByPropertyResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/model
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/model/v20180510/ModifyCdnDomainSchdmByPropertyResponse.java
|
/*
* 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.v20180510;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.cdn.transform.v20180510.ModifyCdnDomainSchdmByPropertyResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class ModifyCdnDomainSchdmByPropertyResponse extends AcsResponse {
private String requestId;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
@Override
public ModifyCdnDomainSchdmByPropertyResponse getInstance(UnmarshallerContext context) {
return ModifyCdnDomainSchdmByPropertyResponseUnmarshaller.unmarshall(this, context);
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/model
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/model/v20180510/ModifyRealtimeLogDeliveryRequest.java
|
/*
* 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.v20180510;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.cdn.Endpoint;
/**
* @author auto create
* @version
*/
public class ModifyRealtimeLogDeliveryRequest extends RpcAcsRequest<ModifyRealtimeLogDeliveryResponse> {
private String domain;
private String project;
private String region;
private String logstore;
public ModifyRealtimeLogDeliveryRequest() {
super("Cdn", "2018-05-10", "ModifyRealtimeLogDelivery");
setMethod(MethodType.GET);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getDomain() {
return this.domain;
}
public void setDomain(String domain) {
this.domain = domain;
if(domain != null){
putQueryParameter("Domain", domain);
}
}
public String getProject() {
return this.project;
}
public void setProject(String project) {
this.project = project;
if(project != null){
putQueryParameter("Project", project);
}
}
public String getRegion() {
return this.region;
}
public void setRegion(String region) {
this.region = region;
if(region != null){
putQueryParameter("Region", region);
}
}
public String getLogstore() {
return this.logstore;
}
public void setLogstore(String logstore) {
this.logstore = logstore;
if(logstore != null){
putQueryParameter("Logstore", logstore);
}
}
@Override
public Class<ModifyRealtimeLogDeliveryResponse> getResponseClass() {
return ModifyRealtimeLogDeliveryResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/model
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/model/v20180510/ModifyRealtimeLogDeliveryResponse.java
|
/*
* 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.v20180510;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.cdn.transform.v20180510.ModifyRealtimeLogDeliveryResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class ModifyRealtimeLogDeliveryResponse extends AcsResponse {
private String requestId;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
@Override
public ModifyRealtimeLogDeliveryResponse getInstance(UnmarshallerContext context) {
return ModifyRealtimeLogDeliveryResponseUnmarshaller.unmarshall(this, context);
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/model
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/model/v20180510/OpenCdnServiceRequest.java
|
/*
* 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.v20180510;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.cdn.Endpoint;
/**
* @author auto create
* @version
*/
public class OpenCdnServiceRequest extends RpcAcsRequest<OpenCdnServiceResponse> {
private Long ownerId;
private String securityToken;
private String internetChargeType;
public OpenCdnServiceRequest() {
super("Cdn", "2018-05-10", "OpenCdnService");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public Long getOwnerId() {
return this.ownerId;
}
public void setOwnerId(Long ownerId) {
this.ownerId = ownerId;
if(ownerId != null){
putQueryParameter("OwnerId", ownerId.toString());
}
}
public String getSecurityToken() {
return this.securityToken;
}
public void setSecurityToken(String securityToken) {
this.securityToken = securityToken;
if(securityToken != null){
putQueryParameter("SecurityToken", securityToken);
}
}
public String getInternetChargeType() {
return this.internetChargeType;
}
public void setInternetChargeType(String internetChargeType) {
this.internetChargeType = internetChargeType;
if(internetChargeType != null){
putQueryParameter("InternetChargeType", internetChargeType);
}
}
@Override
public Class<OpenCdnServiceResponse> getResponseClass() {
return OpenCdnServiceResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/model
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/model/v20180510/OpenCdnServiceResponse.java
|
/*
* 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.v20180510;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.cdn.transform.v20180510.OpenCdnServiceResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class OpenCdnServiceResponse extends AcsResponse {
private String requestId;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
@Override
public OpenCdnServiceResponse getInstance(UnmarshallerContext context) {
return OpenCdnServiceResponseUnmarshaller.unmarshall(this, context);
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/model
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/model/v20180510/PublishStagingConfigToProductionRequest.java
|
/*
* 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.v20180510;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.cdn.Endpoint;
/**
* @author auto create
* @version
*/
public class PublishStagingConfigToProductionRequest extends RpcAcsRequest<PublishStagingConfigToProductionResponse> {
private String domainName;
public PublishStagingConfigToProductionRequest() {
super("Cdn", "2018-05-10", "PublishStagingConfigToProduction");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getDomainName() {
return this.domainName;
}
public void setDomainName(String domainName) {
this.domainName = domainName;
if(domainName != null){
putQueryParameter("DomainName", domainName);
}
}
@Override
public Class<PublishStagingConfigToProductionResponse> getResponseClass() {
return PublishStagingConfigToProductionResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/model
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/model/v20180510/PublishStagingConfigToProductionResponse.java
|
/*
* 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.v20180510;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.cdn.transform.v20180510.PublishStagingConfigToProductionResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class PublishStagingConfigToProductionResponse extends AcsResponse {
private String requestId;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
@Override
public PublishStagingConfigToProductionResponse getInstance(UnmarshallerContext context) {
return PublishStagingConfigToProductionResponseUnmarshaller.unmarshall(this, context);
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/model
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/model/v20180510/PushObjectCacheRequest.java
|
/*
* 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.v20180510;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.cdn.Endpoint;
/**
* @author auto create
* @version
*/
public class PushObjectCacheRequest extends RpcAcsRequest<PushObjectCacheResponse> {
private String objectPath;
private String securityToken;
private Boolean l2Preload;
private String area;
private String withHeader;
private Long ownerId;
public PushObjectCacheRequest() {
super("Cdn", "2018-05-10", "PushObjectCache");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getObjectPath() {
return this.objectPath;
}
public void setObjectPath(String objectPath) {
this.objectPath = objectPath;
if(objectPath != null){
putQueryParameter("ObjectPath", objectPath);
}
}
public String getSecurityToken() {
return this.securityToken;
}
public void setSecurityToken(String securityToken) {
this.securityToken = securityToken;
if(securityToken != null){
putQueryParameter("SecurityToken", securityToken);
}
}
public Boolean getL2Preload() {
return this.l2Preload;
}
public void setL2Preload(Boolean l2Preload) {
this.l2Preload = l2Preload;
if(l2Preload != null){
putQueryParameter("L2Preload", l2Preload.toString());
}
}
public String getArea() {
return this.area;
}
public void setArea(String area) {
this.area = area;
if(area != null){
putQueryParameter("Area", area);
}
}
public String getWithHeader() {
return this.withHeader;
}
public void setWithHeader(String withHeader) {
this.withHeader = withHeader;
if(withHeader != null){
putQueryParameter("WithHeader", withHeader);
}
}
public Long getOwnerId() {
return this.ownerId;
}
public void setOwnerId(Long ownerId) {
this.ownerId = ownerId;
if(ownerId != null){
putQueryParameter("OwnerId", ownerId.toString());
}
}
@Override
public Class<PushObjectCacheResponse> getResponseClass() {
return PushObjectCacheResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/model
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/model/v20180510/PushObjectCacheResponse.java
|
/*
* 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.v20180510;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.cdn.transform.v20180510.PushObjectCacheResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class PushObjectCacheResponse extends AcsResponse {
private String pushTaskId;
private String requestId;
public String getPushTaskId() {
return this.pushTaskId;
}
public void setPushTaskId(String pushTaskId) {
this.pushTaskId = pushTaskId;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
@Override
public PushObjectCacheResponse getInstance(UnmarshallerContext context) {
return PushObjectCacheResponseUnmarshaller.unmarshall(this, context);
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/model
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/model/v20180510/RefreshObjectCachesRequest.java
|
/*
* 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.v20180510;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.cdn.Endpoint;
/**
* @author auto create
* @version
*/
public class RefreshObjectCachesRequest extends RpcAcsRequest<RefreshObjectCachesResponse> {
private String objectPath;
private String securityToken;
private String objectType;
private Long ownerId;
public RefreshObjectCachesRequest() {
super("Cdn", "2018-05-10", "RefreshObjectCaches");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getObjectPath() {
return this.objectPath;
}
public void setObjectPath(String objectPath) {
this.objectPath = objectPath;
if(objectPath != null){
putQueryParameter("ObjectPath", objectPath);
}
}
public String getSecurityToken() {
return this.securityToken;
}
public void setSecurityToken(String securityToken) {
this.securityToken = securityToken;
if(securityToken != null){
putQueryParameter("SecurityToken", securityToken);
}
}
public String getObjectType() {
return this.objectType;
}
public void setObjectType(String objectType) {
this.objectType = objectType;
if(objectType != null){
putQueryParameter("ObjectType", objectType);
}
}
public Long getOwnerId() {
return this.ownerId;
}
public void setOwnerId(Long ownerId) {
this.ownerId = ownerId;
if(ownerId != null){
putQueryParameter("OwnerId", ownerId.toString());
}
}
@Override
public Class<RefreshObjectCachesResponse> getResponseClass() {
return RefreshObjectCachesResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/model
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/model/v20180510/RefreshObjectCachesResponse.java
|
/*
* 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.v20180510;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.cdn.transform.v20180510.RefreshObjectCachesResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class RefreshObjectCachesResponse extends AcsResponse {
private String refreshTaskId;
private String requestId;
public String getRefreshTaskId() {
return this.refreshTaskId;
}
public void setRefreshTaskId(String refreshTaskId) {
this.refreshTaskId = refreshTaskId;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
@Override
public RefreshObjectCachesResponse getInstance(UnmarshallerContext context) {
return RefreshObjectCachesResponseUnmarshaller.unmarshall(this, context);
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/model
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/model/v20180510/RollbackStagingConfigRequest.java
|
/*
* 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.v20180510;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.cdn.Endpoint;
/**
* @author auto create
* @version
*/
public class RollbackStagingConfigRequest extends RpcAcsRequest<RollbackStagingConfigResponse> {
private String domainName;
public RollbackStagingConfigRequest() {
super("Cdn", "2018-05-10", "RollbackStagingConfig");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getDomainName() {
return this.domainName;
}
public void setDomainName(String domainName) {
this.domainName = domainName;
if(domainName != null){
putQueryParameter("DomainName", domainName);
}
}
@Override
public Class<RollbackStagingConfigResponse> getResponseClass() {
return RollbackStagingConfigResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/model
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/model/v20180510/RollbackStagingConfigResponse.java
|
/*
* 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.v20180510;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.cdn.transform.v20180510.RollbackStagingConfigResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class RollbackStagingConfigResponse extends AcsResponse {
private String requestId;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
@Override
public RollbackStagingConfigResponse getInstance(UnmarshallerContext context) {
return RollbackStagingConfigResponseUnmarshaller.unmarshall(this, context);
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/model
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/model/v20180510/SetCdnDomainCSRCertificateRequest.java
|
/*
* 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.v20180510;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.cdn.Endpoint;
/**
* @author auto create
* @version
*/
public class SetCdnDomainCSRCertificateRequest extends RpcAcsRequest<SetCdnDomainCSRCertificateResponse> {
private String serverCertificate;
private String domainName;
public SetCdnDomainCSRCertificateRequest() {
super("Cdn", "2018-05-10", "SetCdnDomainCSRCertificate");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getServerCertificate() {
return this.serverCertificate;
}
public void setServerCertificate(String serverCertificate) {
this.serverCertificate = serverCertificate;
if(serverCertificate != null){
putQueryParameter("ServerCertificate", serverCertificate);
}
}
public String getDomainName() {
return this.domainName;
}
public void setDomainName(String domainName) {
this.domainName = domainName;
if(domainName != null){
putQueryParameter("DomainName", domainName);
}
}
@Override
public Class<SetCdnDomainCSRCertificateResponse> getResponseClass() {
return SetCdnDomainCSRCertificateResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/model
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/model/v20180510/SetCdnDomainCSRCertificateResponse.java
|
/*
* 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.v20180510;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.cdn.transform.v20180510.SetCdnDomainCSRCertificateResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class SetCdnDomainCSRCertificateResponse extends AcsResponse {
private String requestId;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
@Override
public SetCdnDomainCSRCertificateResponse getInstance(UnmarshallerContext context) {
return SetCdnDomainCSRCertificateResponseUnmarshaller.unmarshall(this, context);
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/model
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/model/v20180510/SetCdnDomainSMCertificateRequest.java
|
/*
* 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.v20180510;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.cdn.Endpoint;
/**
* @author auto create
* @version
*/
public class SetCdnDomainSMCertificateRequest extends RpcAcsRequest<SetCdnDomainSMCertificateResponse> {
private String sSLProtocol;
private String domainName;
private Long ownerId;
private String securityToken;
private String certIdentifier;
public SetCdnDomainSMCertificateRequest() {
super("Cdn", "2018-05-10", "SetCdnDomainSMCertificate");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getSSLProtocol() {
return this.sSLProtocol;
}
public void setSSLProtocol(String sSLProtocol) {
this.sSLProtocol = sSLProtocol;
if(sSLProtocol != null){
putQueryParameter("SSLProtocol", sSLProtocol);
}
}
public String getDomainName() {
return this.domainName;
}
public void setDomainName(String domainName) {
this.domainName = domainName;
if(domainName != null){
putQueryParameter("DomainName", domainName);
}
}
public Long getOwnerId() {
return this.ownerId;
}
public void setOwnerId(Long ownerId) {
this.ownerId = ownerId;
if(ownerId != null){
putQueryParameter("OwnerId", ownerId.toString());
}
}
public String getSecurityToken() {
return this.securityToken;
}
public void setSecurityToken(String securityToken) {
this.securityToken = securityToken;
if(securityToken != null){
putQueryParameter("SecurityToken", securityToken);
}
}
public String getCertIdentifier() {
return this.certIdentifier;
}
public void setCertIdentifier(String certIdentifier) {
this.certIdentifier = certIdentifier;
if(certIdentifier != null){
putQueryParameter("CertIdentifier", certIdentifier);
}
}
@Override
public Class<SetCdnDomainSMCertificateResponse> getResponseClass() {
return SetCdnDomainSMCertificateResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/model
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/model/v20180510/SetCdnDomainSMCertificateResponse.java
|
/*
* 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.v20180510;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.cdn.transform.v20180510.SetCdnDomainSMCertificateResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class SetCdnDomainSMCertificateResponse extends AcsResponse {
private String requestId;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
@Override
public SetCdnDomainSMCertificateResponse getInstance(UnmarshallerContext context) {
return SetCdnDomainSMCertificateResponseUnmarshaller.unmarshall(this, context);
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/model
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/model/v20180510/SetCdnDomainSSLCertificateRequest.java
|
/*
* 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.v20180510;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.cdn.Endpoint;
/**
* @author auto create
* @version
*/
public class SetCdnDomainSSLCertificateRequest extends RpcAcsRequest<SetCdnDomainSSLCertificateResponse> {
private String sSLProtocol;
private Long certId;
private String securityToken;
private String certType;
private String sSLPri;
private String certRegion;
private String certName;
private String domainName;
private Long ownerId;
private String sSLPub;
public SetCdnDomainSSLCertificateRequest() {
super("Cdn", "2018-05-10", "SetCdnDomainSSLCertificate");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getSSLProtocol() {
return this.sSLProtocol;
}
public void setSSLProtocol(String sSLProtocol) {
this.sSLProtocol = sSLProtocol;
if(sSLProtocol != null){
putQueryParameter("SSLProtocol", sSLProtocol);
}
}
public Long getCertId() {
return this.certId;
}
public void setCertId(Long certId) {
this.certId = certId;
if(certId != null){
putQueryParameter("CertId", certId.toString());
}
}
public String getSecurityToken() {
return this.securityToken;
}
public void setSecurityToken(String securityToken) {
this.securityToken = securityToken;
if(securityToken != null){
putQueryParameter("SecurityToken", securityToken);
}
}
public String getCertType() {
return this.certType;
}
public void setCertType(String certType) {
this.certType = certType;
if(certType != null){
putQueryParameter("CertType", certType);
}
}
public String getSSLPri() {
return this.sSLPri;
}
public void setSSLPri(String sSLPri) {
this.sSLPri = sSLPri;
if(sSLPri != null){
putQueryParameter("SSLPri", sSLPri);
}
}
public String getCertRegion() {
return this.certRegion;
}
public void setCertRegion(String certRegion) {
this.certRegion = certRegion;
if(certRegion != null){
putQueryParameter("CertRegion", certRegion);
}
}
public String getCertName() {
return this.certName;
}
public void setCertName(String certName) {
this.certName = certName;
if(certName != null){
putQueryParameter("CertName", certName);
}
}
public String getDomainName() {
return this.domainName;
}
public void setDomainName(String domainName) {
this.domainName = domainName;
if(domainName != null){
putQueryParameter("DomainName", domainName);
}
}
public Long getOwnerId() {
return this.ownerId;
}
public void setOwnerId(Long ownerId) {
this.ownerId = ownerId;
if(ownerId != null){
putQueryParameter("OwnerId", ownerId.toString());
}
}
public String getSSLPub() {
return this.sSLPub;
}
public void setSSLPub(String sSLPub) {
this.sSLPub = sSLPub;
if(sSLPub != null){
putQueryParameter("SSLPub", sSLPub);
}
}
@Override
public Class<SetCdnDomainSSLCertificateResponse> getResponseClass() {
return SetCdnDomainSSLCertificateResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/model
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/model/v20180510/SetCdnDomainSSLCertificateResponse.java
|
/*
* 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.v20180510;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.cdn.transform.v20180510.SetCdnDomainSSLCertificateResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class SetCdnDomainSSLCertificateResponse extends AcsResponse {
private String requestId;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
@Override
public SetCdnDomainSSLCertificateResponse getInstance(UnmarshallerContext context) {
return SetCdnDomainSSLCertificateResponseUnmarshaller.unmarshall(this, context);
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/model
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/model/v20180510/SetCdnDomainStagingConfigRequest.java
|
/*
* 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.v20180510;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.cdn.Endpoint;
/**
* @author auto create
* @version
*/
public class SetCdnDomainStagingConfigRequest extends RpcAcsRequest<SetCdnDomainStagingConfigResponse> {
private String functions;
private String domainName;
public SetCdnDomainStagingConfigRequest() {
super("Cdn", "2018-05-10", "SetCdnDomainStagingConfig");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getFunctions() {
return this.functions;
}
public void setFunctions(String functions) {
this.functions = functions;
if(functions != null){
putQueryParameter("Functions", functions);
}
}
public String getDomainName() {
return this.domainName;
}
public void setDomainName(String domainName) {
this.domainName = domainName;
if(domainName != null){
putQueryParameter("DomainName", domainName);
}
}
@Override
public Class<SetCdnDomainStagingConfigResponse> getResponseClass() {
return SetCdnDomainStagingConfigResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/model
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/model/v20180510/SetCdnDomainStagingConfigResponse.java
|
/*
* 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.v20180510;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.cdn.transform.v20180510.SetCdnDomainStagingConfigResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class SetCdnDomainStagingConfigResponse extends AcsResponse {
private String requestId;
private List<DomainConfigModel> domainConfigList;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public List<DomainConfigModel> getDomainConfigList() {
return this.domainConfigList;
}
public void setDomainConfigList(List<DomainConfigModel> domainConfigList) {
this.domainConfigList = domainConfigList;
}
public static class DomainConfigModel {
private Long configId;
private String domainName;
private String functionName;
public Long getConfigId() {
return this.configId;
}
public void setConfigId(Long configId) {
this.configId = configId;
}
public String getDomainName() {
return this.domainName;
}
public void setDomainName(String domainName) {
this.domainName = domainName;
}
public String getFunctionName() {
return this.functionName;
}
public void setFunctionName(String functionName) {
this.functionName = functionName;
}
}
@Override
public SetCdnDomainStagingConfigResponse getInstance(UnmarshallerContext context) {
return SetCdnDomainStagingConfigResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/model
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/model/v20180510/SetDomainServerCertificateRequest.java
|
/*
* 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.v20180510;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.cdn.Endpoint;
/**
* @author auto create
* @version
*/
public class SetDomainServerCertificateRequest extends RpcAcsRequest<SetDomainServerCertificateResponse> {
private String serverCertificate;
private String privateKey;
private String serverCertificateStatus;
private String securityToken;
private String certType;
private String forceSet;
private String certName;
private String domainName;
private Long ownerId;
public SetDomainServerCertificateRequest() {
super("Cdn", "2018-05-10", "SetDomainServerCertificate");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getServerCertificate() {
return this.serverCertificate;
}
public void setServerCertificate(String serverCertificate) {
this.serverCertificate = serverCertificate;
if(serverCertificate != null){
putQueryParameter("ServerCertificate", serverCertificate);
}
}
public String getPrivateKey() {
return this.privateKey;
}
public void setPrivateKey(String privateKey) {
this.privateKey = privateKey;
if(privateKey != null){
putQueryParameter("PrivateKey", privateKey);
}
}
public String getServerCertificateStatus() {
return this.serverCertificateStatus;
}
public void setServerCertificateStatus(String serverCertificateStatus) {
this.serverCertificateStatus = serverCertificateStatus;
if(serverCertificateStatus != null){
putQueryParameter("ServerCertificateStatus", serverCertificateStatus);
}
}
public String getSecurityToken() {
return this.securityToken;
}
public void setSecurityToken(String securityToken) {
this.securityToken = securityToken;
if(securityToken != null){
putQueryParameter("SecurityToken", securityToken);
}
}
public String getCertType() {
return this.certType;
}
public void setCertType(String certType) {
this.certType = certType;
if(certType != null){
putQueryParameter("CertType", certType);
}
}
public String getForceSet() {
return this.forceSet;
}
public void setForceSet(String forceSet) {
this.forceSet = forceSet;
if(forceSet != null){
putQueryParameter("ForceSet", forceSet);
}
}
public String getCertName() {
return this.certName;
}
public void setCertName(String certName) {
this.certName = certName;
if(certName != null){
putQueryParameter("CertName", certName);
}
}
public String getDomainName() {
return this.domainName;
}
public void setDomainName(String domainName) {
this.domainName = domainName;
if(domainName != null){
putQueryParameter("DomainName", domainName);
}
}
public Long getOwnerId() {
return this.ownerId;
}
public void setOwnerId(Long ownerId) {
this.ownerId = ownerId;
if(ownerId != null){
putQueryParameter("OwnerId", ownerId.toString());
}
}
@Override
public Class<SetDomainServerCertificateResponse> getResponseClass() {
return SetDomainServerCertificateResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/model
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/model/v20180510/SetDomainServerCertificateResponse.java
|
/*
* 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.v20180510;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.cdn.transform.v20180510.SetDomainServerCertificateResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class SetDomainServerCertificateResponse extends AcsResponse {
private String requestId;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
@Override
public SetDomainServerCertificateResponse getInstance(UnmarshallerContext context) {
return SetDomainServerCertificateResponseUnmarshaller.unmarshall(this, context);
}
}
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.