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/DescribeCdnServiceRequest.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 DescribeCdnServiceRequest extends RpcAcsRequest<DescribeCdnServiceResponse> {
private Long ownerId;
private String securityToken;
public DescribeCdnServiceRequest() {
super("Cdn", "2018-05-10", "DescribeCdnService");
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<DescribeCdnServiceResponse> getResponseClass() {
return DescribeCdnServiceResponse.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/DescribeCdnServiceResponse.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.DescribeCdnServiceResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeCdnServiceResponse extends AcsResponse {
private String changingAffectTime;
private String requestId;
private String changingChargeType;
private String openingTime;
private String internetChargeType;
private String instanceId;
private List<LockReason> operationLocks;
public String getChangingAffectTime() {
return this.changingAffectTime;
}
public void setChangingAffectTime(String changingAffectTime) {
this.changingAffectTime = changingAffectTime;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public String getChangingChargeType() {
return this.changingChargeType;
}
public void setChangingChargeType(String changingChargeType) {
this.changingChargeType = changingChargeType;
}
public String getOpeningTime() {
return this.openingTime;
}
public void setOpeningTime(String openingTime) {
this.openingTime = openingTime;
}
public String getInternetChargeType() {
return this.internetChargeType;
}
public void setInternetChargeType(String internetChargeType) {
this.internetChargeType = internetChargeType;
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
}
public List<LockReason> getOperationLocks() {
return this.operationLocks;
}
public void setOperationLocks(List<LockReason> operationLocks) {
this.operationLocks = operationLocks;
}
public static class LockReason {
private String lockReason;
public String getLockReason() {
return this.lockReason;
}
public void setLockReason(String lockReason) {
this.lockReason = lockReason;
}
}
@Override
public DescribeCdnServiceResponse getInstance(UnmarshallerContext context) {
return DescribeCdnServiceResponseUnmarshaller.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/DescribeCdnSubListRequest.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 DescribeCdnSubListRequest extends RpcAcsRequest<DescribeCdnSubListResponse> {
public DescribeCdnSubListRequest() {
super("Cdn", "2018-05-10", "DescribeCdnSubList");
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<DescribeCdnSubListResponse> getResponseClass() {
return DescribeCdnSubListResponse.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/DescribeCdnSubListResponse.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.DescribeCdnSubListResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeCdnSubListResponse 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 DescribeCdnSubListResponse getInstance(UnmarshallerContext context) {
return DescribeCdnSubListResponseUnmarshaller.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/DescribeCdnUserBillHistoryRequest.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 DescribeCdnUserBillHistoryRequest extends RpcAcsRequest<DescribeCdnUserBillHistoryResponse> {
private String endTime;
private String startTime;
public DescribeCdnUserBillHistoryRequest() {
super("Cdn", "2018-05-10", "DescribeCdnUserBillHistory");
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);
}
}
@Override
public Class<DescribeCdnUserBillHistoryResponse> getResponseClass() {
return DescribeCdnUserBillHistoryResponse.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/DescribeCdnUserBillHistoryResponse.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.DescribeCdnUserBillHistoryResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeCdnUserBillHistoryResponse extends AcsResponse {
private String requestId;
private List<BillHistoryDataItem> billHistoryData;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public List<BillHistoryDataItem> getBillHistoryData() {
return this.billHistoryData;
}
public void setBillHistoryData(List<BillHistoryDataItem> billHistoryData) {
this.billHistoryData = billHistoryData;
}
public static class BillHistoryDataItem {
private String dimension;
private String billType;
private String billTime;
private List<BillingDataItem> billingData;
public String getDimension() {
return this.dimension;
}
public void setDimension(String dimension) {
this.dimension = dimension;
}
public String getBillType() {
return this.billType;
}
public void setBillType(String billType) {
this.billType = billType;
}
public String getBillTime() {
return this.billTime;
}
public void setBillTime(String billTime) {
this.billTime = billTime;
}
public List<BillingDataItem> getBillingData() {
return this.billingData;
}
public void setBillingData(List<BillingDataItem> billingData) {
this.billingData = billingData;
}
public static class BillingDataItem {
private Float flow;
private Float bandwidth;
private Float count;
private String cdnRegion;
private String chargeType;
public Float getFlow() {
return this.flow;
}
public void setFlow(Float flow) {
this.flow = flow;
}
public Float getBandwidth() {
return this.bandwidth;
}
public void setBandwidth(Float bandwidth) {
this.bandwidth = bandwidth;
}
public Float getCount() {
return this.count;
}
public void setCount(Float count) {
this.count = count;
}
public String getCdnRegion() {
return this.cdnRegion;
}
public void setCdnRegion(String cdnRegion) {
this.cdnRegion = cdnRegion;
}
public String getChargeType() {
return this.chargeType;
}
public void setChargeType(String chargeType) {
this.chargeType = chargeType;
}
}
}
@Override
public DescribeCdnUserBillHistoryResponse getInstance(UnmarshallerContext context) {
return DescribeCdnUserBillHistoryResponseUnmarshaller.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/DescribeCdnUserBillPredictionRequest.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 DescribeCdnUserBillPredictionRequest extends RpcAcsRequest<DescribeCdnUserBillPredictionResponse> {
private String area;
private String endTime;
private String startTime;
private String dimension;
public DescribeCdnUserBillPredictionRequest() {
super("Cdn", "2018-05-10", "DescribeCdnUserBillPrediction");
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 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 getDimension() {
return this.dimension;
}
public void setDimension(String dimension) {
this.dimension = dimension;
if(dimension != null){
putQueryParameter("Dimension", dimension);
}
}
@Override
public Class<DescribeCdnUserBillPredictionResponse> getResponseClass() {
return DescribeCdnUserBillPredictionResponse.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/DescribeCdnUserBillPredictionResponse.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.DescribeCdnUserBillPredictionResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeCdnUserBillPredictionResponse extends AcsResponse {
private String endTime;
private String startTime;
private String requestId;
private String billType;
private List<BillPredictionDataItem> billPredictionData;
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 getBillType() {
return this.billType;
}
public void setBillType(String billType) {
this.billType = billType;
}
public List<BillPredictionDataItem> getBillPredictionData() {
return this.billPredictionData;
}
public void setBillPredictionData(List<BillPredictionDataItem> billPredictionData) {
this.billPredictionData = billPredictionData;
}
public static class BillPredictionDataItem {
private Float value;
private String timeStp;
private String area;
public Float getValue() {
return this.value;
}
public void setValue(Float value) {
this.value = value;
}
public String getTimeStp() {
return this.timeStp;
}
public void setTimeStp(String timeStp) {
this.timeStp = timeStp;
}
public String getArea() {
return this.area;
}
public void setArea(String area) {
this.area = area;
}
}
@Override
public DescribeCdnUserBillPredictionResponse getInstance(UnmarshallerContext context) {
return DescribeCdnUserBillPredictionResponseUnmarshaller.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/DescribeCdnUserBillTypeRequest.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 DescribeCdnUserBillTypeRequest extends RpcAcsRequest<DescribeCdnUserBillTypeResponse> {
private String endTime;
private String startTime;
public DescribeCdnUserBillTypeRequest() {
super("Cdn", "2018-05-10", "DescribeCdnUserBillType");
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);
}
}
@Override
public Class<DescribeCdnUserBillTypeResponse> getResponseClass() {
return DescribeCdnUserBillTypeResponse.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/DescribeCdnUserBillTypeResponse.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.DescribeCdnUserBillTypeResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeCdnUserBillTypeResponse extends AcsResponse {
private String requestId;
private List<BillTypeDataItem> billTypeData;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public List<BillTypeDataItem> getBillTypeData() {
return this.billTypeData;
}
public void setBillTypeData(List<BillTypeDataItem> billTypeData) {
this.billTypeData = billTypeData;
}
public static class BillTypeDataItem {
private String endTime;
private String startTime;
private String billingCycle;
private String product;
private String billType;
private String dimension;
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 getBillingCycle() {
return this.billingCycle;
}
public void setBillingCycle(String billingCycle) {
this.billingCycle = billingCycle;
}
public String getProduct() {
return this.product;
}
public void setProduct(String product) {
this.product = product;
}
public String getBillType() {
return this.billType;
}
public void setBillType(String billType) {
this.billType = billType;
}
public String getDimension() {
return this.dimension;
}
public void setDimension(String dimension) {
this.dimension = dimension;
}
}
@Override
public DescribeCdnUserBillTypeResponse getInstance(UnmarshallerContext context) {
return DescribeCdnUserBillTypeResponseUnmarshaller.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/DescribeCdnUserConfigsRequest.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 DescribeCdnUserConfigsRequest extends RpcAcsRequest<DescribeCdnUserConfigsResponse> {
private String functionName;
public DescribeCdnUserConfigsRequest() {
super("Cdn", "2018-05-10", "DescribeCdnUserConfigs");
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 getFunctionName() {
return this.functionName;
}
public void setFunctionName(String functionName) {
this.functionName = functionName;
if(functionName != null){
putQueryParameter("FunctionName", functionName);
}
}
@Override
public Class<DescribeCdnUserConfigsResponse> getResponseClass() {
return DescribeCdnUserConfigsResponse.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/DescribeCdnUserConfigsResponse.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.DescribeCdnUserConfigsResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeCdnUserConfigsResponse extends AcsResponse {
private String requestId;
private List<Config> configs;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public List<Config> getConfigs() {
return this.configs;
}
public void setConfigs(List<Config> configs) {
this.configs = configs;
}
public static class Config {
private String argValue;
private String argName;
private String functionName;
public String getArgValue() {
return this.argValue;
}
public void setArgValue(String argValue) {
this.argValue = argValue;
}
public String getArgName() {
return this.argName;
}
public void setArgName(String argName) {
this.argName = argName;
}
public String getFunctionName() {
return this.functionName;
}
public void setFunctionName(String functionName) {
this.functionName = functionName;
}
}
@Override
public DescribeCdnUserConfigsResponse getInstance(UnmarshallerContext context) {
return DescribeCdnUserConfigsResponseUnmarshaller.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/DescribeCdnUserDomainsByFuncRequest.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 DescribeCdnUserDomainsByFuncRequest extends RpcAcsRequest<DescribeCdnUserDomainsByFuncResponse> {
private String resourceGroupId;
private Integer pageSize;
private Integer funcId;
private Integer pageNumber;
public DescribeCdnUserDomainsByFuncRequest() {
super("Cdn", "2018-05-10", "DescribeCdnUserDomainsByFunc");
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 getResourceGroupId() {
return this.resourceGroupId;
}
public void setResourceGroupId(String resourceGroupId) {
this.resourceGroupId = resourceGroupId;
if(resourceGroupId != null){
putQueryParameter("ResourceGroupId", resourceGroupId);
}
}
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
if(pageSize != null){
putQueryParameter("PageSize", pageSize.toString());
}
}
public Integer getFuncId() {
return this.funcId;
}
public void setFuncId(Integer funcId) {
this.funcId = funcId;
if(funcId != null){
putQueryParameter("FuncId", funcId.toString());
}
}
public Integer getPageNumber() {
return this.pageNumber;
}
public void setPageNumber(Integer pageNumber) {
this.pageNumber = pageNumber;
if(pageNumber != null){
putQueryParameter("PageNumber", pageNumber.toString());
}
}
@Override
public Class<DescribeCdnUserDomainsByFuncResponse> getResponseClass() {
return DescribeCdnUserDomainsByFuncResponse.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/DescribeCdnUserDomainsByFuncResponse.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.DescribeCdnUserDomainsByFuncResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeCdnUserDomainsByFuncResponse 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 gmtCreated;
private String sslProtocol;
private String description;
private String resourceGroupId;
private String domainStatus;
private String cname;
private String gmtModified;
private String cdnType;
private String domainName;
private List<Source> sources;
public String getGmtCreated() {
return this.gmtCreated;
}
public void setGmtCreated(String gmtCreated) {
this.gmtCreated = gmtCreated;
}
public String getSslProtocol() {
return this.sslProtocol;
}
public void setSslProtocol(String sslProtocol) {
this.sslProtocol = sslProtocol;
}
public String getDescription() {
return this.description;
}
public void setDescription(String description) {
this.description = description;
}
public String getResourceGroupId() {
return this.resourceGroupId;
}
public void setResourceGroupId(String resourceGroupId) {
this.resourceGroupId = resourceGroupId;
}
public String getDomainStatus() {
return this.domainStatus;
}
public void setDomainStatus(String domainStatus) {
this.domainStatus = domainStatus;
}
public String getCname() {
return this.cname;
}
public void setCname(String cname) {
this.cname = cname;
}
public String getGmtModified() {
return this.gmtModified;
}
public void setGmtModified(String gmtModified) {
this.gmtModified = gmtModified;
}
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;
}
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 DescribeCdnUserDomainsByFuncResponse getInstance(UnmarshallerContext context) {
return DescribeCdnUserDomainsByFuncResponseUnmarshaller.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/DescribeCdnUserQuotaRequest.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 DescribeCdnUserQuotaRequest extends RpcAcsRequest<DescribeCdnUserQuotaResponse> {
private Long ownerId;
private String securityToken;
public DescribeCdnUserQuotaRequest() {
super("Cdn", "2018-05-10", "DescribeCdnUserQuota");
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<DescribeCdnUserQuotaResponse> getResponseClass() {
return DescribeCdnUserQuotaResponse.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/DescribeCdnUserQuotaResponse.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.DescribeCdnUserQuotaResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeCdnUserQuotaResponse extends AcsResponse {
private Integer blockQuota;
private Integer refreshUrlRemain;
private Integer domainQuota;
private Integer blockRemain;
private Integer preloadRemain;
private String requestId;
private Integer refreshUrlQuota;
private Integer preloadQuota;
private Integer refreshDirQuota;
private Integer refreshDirRemain;
private Integer ignoreParamsQuota;
private Integer ignoreParamsRemain;
public Integer getBlockQuota() {
return this.blockQuota;
}
public void setBlockQuota(Integer blockQuota) {
this.blockQuota = blockQuota;
}
public Integer getRefreshUrlRemain() {
return this.refreshUrlRemain;
}
public void setRefreshUrlRemain(Integer refreshUrlRemain) {
this.refreshUrlRemain = refreshUrlRemain;
}
public Integer getDomainQuota() {
return this.domainQuota;
}
public void setDomainQuota(Integer domainQuota) {
this.domainQuota = domainQuota;
}
public Integer getBlockRemain() {
return this.blockRemain;
}
public void setBlockRemain(Integer blockRemain) {
this.blockRemain = blockRemain;
}
public Integer getPreloadRemain() {
return this.preloadRemain;
}
public void setPreloadRemain(Integer preloadRemain) {
this.preloadRemain = preloadRemain;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public Integer getRefreshUrlQuota() {
return this.refreshUrlQuota;
}
public void setRefreshUrlQuota(Integer refreshUrlQuota) {
this.refreshUrlQuota = refreshUrlQuota;
}
public Integer getPreloadQuota() {
return this.preloadQuota;
}
public void setPreloadQuota(Integer preloadQuota) {
this.preloadQuota = preloadQuota;
}
public Integer getRefreshDirQuota() {
return this.refreshDirQuota;
}
public void setRefreshDirQuota(Integer refreshDirQuota) {
this.refreshDirQuota = refreshDirQuota;
}
public Integer getRefreshDirRemain() {
return this.refreshDirRemain;
}
public void setRefreshDirRemain(Integer refreshDirRemain) {
this.refreshDirRemain = refreshDirRemain;
}
public Integer getIgnoreParamsQuota() {
return this.ignoreParamsQuota;
}
public void setIgnoreParamsQuota(Integer ignoreParamsQuota) {
this.ignoreParamsQuota = ignoreParamsQuota;
}
public Integer getIgnoreParamsRemain() {
return this.ignoreParamsRemain;
}
public void setIgnoreParamsRemain(Integer ignoreParamsRemain) {
this.ignoreParamsRemain = ignoreParamsRemain;
}
@Override
public DescribeCdnUserQuotaResponse getInstance(UnmarshallerContext context) {
return DescribeCdnUserQuotaResponseUnmarshaller.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/DescribeCdnUserResourcePackageRequest.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 DescribeCdnUserResourcePackageRequest extends RpcAcsRequest<DescribeCdnUserResourcePackageResponse> {
private String securityToken;
private Long ownerId;
private String status;
public DescribeCdnUserResourcePackageRequest() {
super("Cdn", "2018-05-10", "DescribeCdnUserResourcePackage");
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 getStatus() {
return this.status;
}
public void setStatus(String status) {
this.status = status;
if(status != null){
putQueryParameter("Status", status);
}
}
@Override
public Class<DescribeCdnUserResourcePackageResponse> getResponseClass() {
return DescribeCdnUserResourcePackageResponse.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/DescribeCdnUserResourcePackageResponse.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.DescribeCdnUserResourcePackageResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeCdnUserResourcePackageResponse extends AcsResponse {
private String requestId;
private List<ResourcePackageInfo> resourcePackageInfos;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public List<ResourcePackageInfo> getResourcePackageInfos() {
return this.resourcePackageInfos;
}
public void setResourcePackageInfos(List<ResourcePackageInfo> resourcePackageInfos) {
this.resourcePackageInfos = resourcePackageInfos;
}
public static class ResourcePackageInfo {
private String endTime;
private String status;
private String displayName;
private String startTime;
private String commodityCode;
private String currCapacity;
private String initCapacity;
private String instanceId;
private String templateName;
public String getEndTime() {
return this.endTime;
}
public void setEndTime(String endTime) {
this.endTime = endTime;
}
public String getStatus() {
return this.status;
}
public void setStatus(String status) {
this.status = status;
}
public String getDisplayName() {
return this.displayName;
}
public void setDisplayName(String displayName) {
this.displayName = displayName;
}
public String getStartTime() {
return this.startTime;
}
public void setStartTime(String startTime) {
this.startTime = startTime;
}
public String getCommodityCode() {
return this.commodityCode;
}
public void setCommodityCode(String commodityCode) {
this.commodityCode = commodityCode;
}
public String getCurrCapacity() {
return this.currCapacity;
}
public void setCurrCapacity(String currCapacity) {
this.currCapacity = currCapacity;
}
public String getInitCapacity() {
return this.initCapacity;
}
public void setInitCapacity(String initCapacity) {
this.initCapacity = initCapacity;
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
}
public String getTemplateName() {
return this.templateName;
}
public void setTemplateName(String templateName) {
this.templateName = templateName;
}
}
@Override
public DescribeCdnUserResourcePackageResponse getInstance(UnmarshallerContext context) {
return DescribeCdnUserResourcePackageResponseUnmarshaller.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/DescribeCdnWafDomainRequest.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 DescribeCdnWafDomainRequest extends RpcAcsRequest<DescribeCdnWafDomainResponse> {
private String resourceGroupId;
private String domainName;
public DescribeCdnWafDomainRequest() {
super("Cdn", "2018-05-10", "DescribeCdnWafDomain");
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 getResourceGroupId() {
return this.resourceGroupId;
}
public void setResourceGroupId(String resourceGroupId) {
this.resourceGroupId = resourceGroupId;
if(resourceGroupId != null){
putQueryParameter("ResourceGroupId", resourceGroupId);
}
}
public String getDomainName() {
return this.domainName;
}
public void setDomainName(String domainName) {
this.domainName = domainName;
if(domainName != null){
putQueryParameter("DomainName", domainName);
}
}
@Override
public Class<DescribeCdnWafDomainResponse> getResponseClass() {
return DescribeCdnWafDomainResponse.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/DescribeCdnWafDomainResponse.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.DescribeCdnWafDomainResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeCdnWafDomainResponse extends AcsResponse {
private Integer totalCount;
private String requestId;
private List<OutPutDomain> outPutDomains;
public Integer getTotalCount() {
return this.totalCount;
}
public void setTotalCount(Integer totalCount) {
this.totalCount = totalCount;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public List<OutPutDomain> getOutPutDomains() {
return this.outPutDomains;
}
public void setOutPutDomains(List<OutPutDomain> outPutDomains) {
this.outPutDomains = outPutDomains;
}
public static class OutPutDomain {
private String aclStatus;
private String status;
private String domain;
private String ccStatus;
private String wafStatus;
public String getAclStatus() {
return this.aclStatus;
}
public void setAclStatus(String aclStatus) {
this.aclStatus = aclStatus;
}
public String getStatus() {
return this.status;
}
public void setStatus(String status) {
this.status = status;
}
public String getDomain() {
return this.domain;
}
public void setDomain(String domain) {
this.domain = domain;
}
public String getCcStatus() {
return this.ccStatus;
}
public void setCcStatus(String ccStatus) {
this.ccStatus = ccStatus;
}
public String getWafStatus() {
return this.wafStatus;
}
public void setWafStatus(String wafStatus) {
this.wafStatus = wafStatus;
}
}
@Override
public DescribeCdnWafDomainResponse getInstance(UnmarshallerContext context) {
return DescribeCdnWafDomainResponseUnmarshaller.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/DescribeCertificateInfoByIDRequest.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 DescribeCertificateInfoByIDRequest extends RpcAcsRequest<DescribeCertificateInfoByIDResponse> {
private String certId;
public DescribeCertificateInfoByIDRequest() {
super("Cdn", "2018-05-10", "DescribeCertificateInfoByID");
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 getCertId() {
return this.certId;
}
public void setCertId(String certId) {
this.certId = certId;
if(certId != null){
putQueryParameter("CertId", certId);
}
}
@Override
public Class<DescribeCertificateInfoByIDResponse> getResponseClass() {
return DescribeCertificateInfoByIDResponse.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/DescribeCertificateInfoByIDResponse.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.DescribeCertificateInfoByIDResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeCertificateInfoByIDResponse extends AcsResponse {
private String requestId;
private List<CertInfo> certInfos;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public List<CertInfo> getCertInfos() {
return this.certInfos;
}
public void setCertInfos(List<CertInfo> certInfos) {
this.certInfos = certInfos;
}
public static class CertInfo {
private String certExpireTime;
private String createTime;
private String certType;
private String certName;
private String certId;
private String domainList;
private String httpsCrt;
public String getCertExpireTime() {
return this.certExpireTime;
}
public void setCertExpireTime(String certExpireTime) {
this.certExpireTime = certExpireTime;
}
public String getCreateTime() {
return this.createTime;
}
public void setCreateTime(String createTime) {
this.createTime = createTime;
}
public String getCertType() {
return this.certType;
}
public void setCertType(String certType) {
this.certType = certType;
}
public String getCertName() {
return this.certName;
}
public void setCertName(String certName) {
this.certName = certName;
}
public String getCertId() {
return this.certId;
}
public void setCertId(String certId) {
this.certId = certId;
}
public String getDomainList() {
return this.domainList;
}
public void setDomainList(String domainList) {
this.domainList = domainList;
}
public String getHttpsCrt() {
return this.httpsCrt;
}
public void setHttpsCrt(String httpsCrt) {
this.httpsCrt = httpsCrt;
}
}
@Override
public DescribeCertificateInfoByIDResponse getInstance(UnmarshallerContext context) {
return DescribeCertificateInfoByIDResponseUnmarshaller.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/DescribeCustomLogConfigRequest.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 DescribeCustomLogConfigRequest extends RpcAcsRequest<DescribeCustomLogConfigResponse> {
private String configId;
public DescribeCustomLogConfigRequest() {
super("Cdn", "2018-05-10", "DescribeCustomLogConfig");
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<DescribeCustomLogConfigResponse> getResponseClass() {
return DescribeCustomLogConfigResponse.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/DescribeCustomLogConfigResponse.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.DescribeCustomLogConfigResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeCustomLogConfigResponse extends AcsResponse {
private String tag;
private String requestId;
private String remark;
private String sample;
public String getTag() {
return this.tag;
}
public void setTag(String tag) {
this.tag = tag;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public String getRemark() {
return this.remark;
}
public void setRemark(String remark) {
this.remark = remark;
}
public String getSample() {
return this.sample;
}
public void setSample(String sample) {
this.sample = sample;
}
@Override
public DescribeCustomLogConfigResponse getInstance(UnmarshallerContext context) {
return DescribeCustomLogConfigResponseUnmarshaller.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/DescribeDomainAverageResponseTimeRequest.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 DescribeDomainAverageResponseTimeRequest extends RpcAcsRequest<DescribeDomainAverageResponseTimeResponse> {
private String domainType;
private String timeMerge;
private String domainName;
private String endTime;
private String interval;
private String locationNameEn;
private String startTime;
private String ispNameEn;
public DescribeDomainAverageResponseTimeRequest() {
super("Cdn", "2018-05-10", "DescribeDomainAverageResponseTime");
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 getDomainType() {
return this.domainType;
}
public void setDomainType(String domainType) {
this.domainType = domainType;
if(domainType != null){
putQueryParameter("DomainType", domainType);
}
}
public String getTimeMerge() {
return this.timeMerge;
}
public void setTimeMerge(String timeMerge) {
this.timeMerge = timeMerge;
if(timeMerge != null){
putQueryParameter("TimeMerge", timeMerge);
}
}
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<DescribeDomainAverageResponseTimeResponse> getResponseClass() {
return DescribeDomainAverageResponseTimeResponse.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/DescribeDomainAverageResponseTimeResponse.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.DescribeDomainAverageResponseTimeResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeDomainAverageResponseTimeResponse extends AcsResponse {
private String endTime;
private String startTime;
private String requestId;
private String domainName;
private String dataInterval;
private List<DataModule> avgRTPerInterval;
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> getAvgRTPerInterval() {
return this.avgRTPerInterval;
}
public void setAvgRTPerInterval(List<DataModule> avgRTPerInterval) {
this.avgRTPerInterval = avgRTPerInterval;
}
public static class DataModule {
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 DescribeDomainAverageResponseTimeResponse getInstance(UnmarshallerContext context) {
return DescribeDomainAverageResponseTimeResponseUnmarshaller.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/DescribeDomainBpsDataByLayerRequest.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 DescribeDomainBpsDataByLayerRequest extends RpcAcsRequest<DescribeDomainBpsDataByLayerResponse> {
private String domainName;
private String endTime;
private String interval;
private String locationNameEn;
private String startTime;
private String ispNameEn;
private String layer;
public DescribeDomainBpsDataByLayerRequest() {
super("Cdn", "2018-05-10", "DescribeDomainBpsDataByLayer");
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);
}
}
public String getLayer() {
return this.layer;
}
public void setLayer(String layer) {
this.layer = layer;
if(layer != null){
putQueryParameter("Layer", layer);
}
}
@Override
public Class<DescribeDomainBpsDataByLayerResponse> getResponseClass() {
return DescribeDomainBpsDataByLayerResponse.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/DescribeDomainBpsDataByLayerResponse.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.DescribeDomainBpsDataByLayerResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeDomainBpsDataByLayerResponse extends AcsResponse {
private String dataInterval;
private String requestId;
private List<DataModule> bpsDataInterval;
public String getDataInterval() {
return this.dataInterval;
}
public void setDataInterval(String dataInterval) {
this.dataInterval = dataInterval;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public List<DataModule> getBpsDataInterval() {
return this.bpsDataInterval;
}
public void setBpsDataInterval(List<DataModule> bpsDataInterval) {
this.bpsDataInterval = bpsDataInterval;
}
public static class DataModule {
private String value;
private String trafficValue;
private String timeStamp;
public String getValue() {
return this.value;
}
public void setValue(String value) {
this.value = value;
}
public String getTrafficValue() {
return this.trafficValue;
}
public void setTrafficValue(String trafficValue) {
this.trafficValue = trafficValue;
}
public String getTimeStamp() {
return this.timeStamp;
}
public void setTimeStamp(String timeStamp) {
this.timeStamp = timeStamp;
}
}
@Override
public DescribeDomainBpsDataByLayerResponse getInstance(UnmarshallerContext context) {
return DescribeDomainBpsDataByLayerResponseUnmarshaller.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/DescribeDomainBpsDataByTimeStampRequest.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 DescribeDomainBpsDataByTimeStampRequest extends RpcAcsRequest<DescribeDomainBpsDataByTimeStampResponse> {
private String ispNames;
private String locationNames;
private String domainName;
private String timePoint;
public DescribeDomainBpsDataByTimeStampRequest() {
super("Cdn", "2018-05-10", "DescribeDomainBpsDataByTimeStamp");
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 getLocationNames() {
return this.locationNames;
}
public void setLocationNames(String locationNames) {
this.locationNames = locationNames;
if(locationNames != null){
putQueryParameter("LocationNames", locationNames);
}
}
public String getDomainName() {
return this.domainName;
}
public void setDomainName(String domainName) {
this.domainName = domainName;
if(domainName != null){
putQueryParameter("DomainName", domainName);
}
}
public String getTimePoint() {
return this.timePoint;
}
public void setTimePoint(String timePoint) {
this.timePoint = timePoint;
if(timePoint != null){
putQueryParameter("TimePoint", timePoint);
}
}
@Override
public Class<DescribeDomainBpsDataByTimeStampResponse> getResponseClass() {
return DescribeDomainBpsDataByTimeStampResponse.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/DescribeDomainBpsDataByTimeStampResponse.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.DescribeDomainBpsDataByTimeStampResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeDomainBpsDataByTimeStampResponse extends AcsResponse {
private String timeStamp;
private String requestId;
private String domainName;
private List<BpsDataModel> bpsDataList;
public String getTimeStamp() {
return this.timeStamp;
}
public void setTimeStamp(String timeStamp) {
this.timeStamp = timeStamp;
}
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<BpsDataModel> getBpsDataList() {
return this.bpsDataList;
}
public void setBpsDataList(List<BpsDataModel> bpsDataList) {
this.bpsDataList = bpsDataList;
}
public static class BpsDataModel {
private String locationName;
private String timeStamp;
private String ispName;
private Long bps;
public String getLocationName() {
return this.locationName;
}
public void setLocationName(String locationName) {
this.locationName = locationName;
}
public String getTimeStamp() {
return this.timeStamp;
}
public void setTimeStamp(String timeStamp) {
this.timeStamp = timeStamp;
}
public String getIspName() {
return this.ispName;
}
public void setIspName(String ispName) {
this.ispName = ispName;
}
public Long getBps() {
return this.bps;
}
public void setBps(Long bps) {
this.bps = bps;
}
}
@Override
public DescribeDomainBpsDataByTimeStampResponse getInstance(UnmarshallerContext context) {
return DescribeDomainBpsDataByTimeStampResponseUnmarshaller.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/DescribeDomainBpsDataRequest.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 DescribeDomainBpsDataRequest extends RpcAcsRequest<DescribeDomainBpsDataResponse> {
private String domainName;
private String endTime;
private String interval;
private String locationNameEn;
private String startTime;
private String ispNameEn;
public DescribeDomainBpsDataRequest() {
super("Cdn", "2018-05-10", "DescribeDomainBpsData");
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<DescribeDomainBpsDataResponse> getResponseClass() {
return DescribeDomainBpsDataResponse.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/DescribeDomainBpsDataResponse.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.DescribeDomainBpsDataResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeDomainBpsDataResponse extends AcsResponse {
private String endTime;
private String startTime;
private String requestId;
private String ispNameEn;
private String locationNameEn;
private String domainName;
private String dataInterval;
private List<DataModule> bpsDataPerInterval;
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 getIspNameEn() {
return this.ispNameEn;
}
public void setIspNameEn(String ispNameEn) {
this.ispNameEn = ispNameEn;
}
public String getLocationNameEn() {
return this.locationNameEn;
}
public void setLocationNameEn(String locationNameEn) {
this.locationNameEn = locationNameEn;
}
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> getBpsDataPerInterval() {
return this.bpsDataPerInterval;
}
public void setBpsDataPerInterval(List<DataModule> bpsDataPerInterval) {
this.bpsDataPerInterval = bpsDataPerInterval;
}
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 DescribeDomainBpsDataResponse getInstance(UnmarshallerContext context) {
return DescribeDomainBpsDataResponseUnmarshaller.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/DescribeDomainCcActivityLogRequest.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 DescribeDomainCcActivityLogRequest extends RpcAcsRequest<DescribeDomainCcActivityLogResponse> {
private String domainName;
private Long pageSize;
private String endTime;
private String ruleName;
private String startTime;
private String triggerObject;
private String value;
private Long pageNumber;
public DescribeDomainCcActivityLogRequest() {
super("Cdn", "2018-05-10", "DescribeDomainCcActivityLog");
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 getPageSize() {
return this.pageSize;
}
public void setPageSize(Long pageSize) {
this.pageSize = pageSize;
if(pageSize != null){
putQueryParameter("PageSize", pageSize.toString());
}
}
public String getEndTime() {
return this.endTime;
}
public void setEndTime(String endTime) {
this.endTime = endTime;
if(endTime != null){
putQueryParameter("EndTime", endTime);
}
}
public String getRuleName() {
return this.ruleName;
}
public void setRuleName(String ruleName) {
this.ruleName = ruleName;
if(ruleName != null){
putQueryParameter("RuleName", ruleName);
}
}
public String getStartTime() {
return this.startTime;
}
public void setStartTime(String startTime) {
this.startTime = startTime;
if(startTime != null){
putQueryParameter("StartTime", startTime);
}
}
public String getTriggerObject() {
return this.triggerObject;
}
public void setTriggerObject(String triggerObject) {
this.triggerObject = triggerObject;
if(triggerObject != null){
putQueryParameter("TriggerObject", triggerObject);
}
}
public String getValue() {
return this.value;
}
public void setValue(String value) {
this.value = value;
if(value != null){
putQueryParameter("Value", value);
}
}
public Long getPageNumber() {
return this.pageNumber;
}
public void setPageNumber(Long pageNumber) {
this.pageNumber = pageNumber;
if(pageNumber != null){
putQueryParameter("PageNumber", pageNumber.toString());
}
}
@Override
public Class<DescribeDomainCcActivityLogResponse> getResponseClass() {
return DescribeDomainCcActivityLogResponse.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/DescribeDomainCcActivityLogResponse.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.DescribeDomainCcActivityLogResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeDomainCcActivityLogResponse extends AcsResponse {
private Long pageIndex;
private String requestId;
private Long pageSize;
private Long total;
private List<LogInfo> activityLog;
public Long getPageIndex() {
return this.pageIndex;
}
public void setPageIndex(Long pageIndex) {
this.pageIndex = pageIndex;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public Long getPageSize() {
return this.pageSize;
}
public void setPageSize(Long pageSize) {
this.pageSize = pageSize;
}
public Long getTotal() {
return this.total;
}
public void setTotal(Long total) {
this.total = total;
}
public List<LogInfo> getActivityLog() {
return this.activityLog;
}
public void setActivityLog(List<LogInfo> activityLog) {
this.activityLog = activityLog;
}
public static class LogInfo {
private String value;
private Long ttl;
private String action;
private String triggerObject;
private String timeStamp;
private String domainName;
private String ruleName;
public String getValue() {
return this.value;
}
public void setValue(String value) {
this.value = value;
}
public Long getTtl() {
return this.ttl;
}
public void setTtl(Long ttl) {
this.ttl = ttl;
}
public String getAction() {
return this.action;
}
public void setAction(String action) {
this.action = action;
}
public String getTriggerObject() {
return this.triggerObject;
}
public void setTriggerObject(String triggerObject) {
this.triggerObject = triggerObject;
}
public String getTimeStamp() {
return this.timeStamp;
}
public void setTimeStamp(String timeStamp) {
this.timeStamp = timeStamp;
}
public String getDomainName() {
return this.domainName;
}
public void setDomainName(String domainName) {
this.domainName = domainName;
}
public String getRuleName() {
return this.ruleName;
}
public void setRuleName(String ruleName) {
this.ruleName = ruleName;
}
}
@Override
public DescribeDomainCcActivityLogResponse getInstance(UnmarshallerContext context) {
return DescribeDomainCcActivityLogResponseUnmarshaller.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/DescribeDomainCertificateInfoRequest.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 DescribeDomainCertificateInfoRequest extends RpcAcsRequest<DescribeDomainCertificateInfoResponse> {
private String domainName;
public DescribeDomainCertificateInfoRequest() {
super("Cdn", "2018-05-10", "DescribeDomainCertificateInfo");
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<DescribeDomainCertificateInfoResponse> getResponseClass() {
return DescribeDomainCertificateInfoResponse.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/DescribeDomainCertificateInfoResponse.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.DescribeDomainCertificateInfoResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeDomainCertificateInfoResponse extends AcsResponse {
private String requestId;
private List<CertInfo> certInfos;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public List<CertInfo> getCertInfos() {
return this.certInfos;
}
public void setCertInfos(List<CertInfo> certInfos) {
this.certInfos = certInfos;
}
public static class CertInfo {
private String certExpireTime;
private String certLife;
private String status;
private String certUpdateTime;
private String certDomainName;
private String serverCertificateStatus;
private String certOrg;
private String domainName;
private String certStartTime;
private String certType;
private String certName;
private String domainCnameStatus;
private String serverCertificate;
private String certId;
private String certRegion;
public String getCertExpireTime() {
return this.certExpireTime;
}
public void setCertExpireTime(String certExpireTime) {
this.certExpireTime = certExpireTime;
}
public String getCertLife() {
return this.certLife;
}
public void setCertLife(String certLife) {
this.certLife = certLife;
}
public String getStatus() {
return this.status;
}
public void setStatus(String status) {
this.status = status;
}
public String getCertUpdateTime() {
return this.certUpdateTime;
}
public void setCertUpdateTime(String certUpdateTime) {
this.certUpdateTime = certUpdateTime;
}
public String getCertDomainName() {
return this.certDomainName;
}
public void setCertDomainName(String certDomainName) {
this.certDomainName = certDomainName;
}
public String getServerCertificateStatus() {
return this.serverCertificateStatus;
}
public void setServerCertificateStatus(String serverCertificateStatus) {
this.serverCertificateStatus = serverCertificateStatus;
}
public String getCertOrg() {
return this.certOrg;
}
public void setCertOrg(String certOrg) {
this.certOrg = certOrg;
}
public String getDomainName() {
return this.domainName;
}
public void setDomainName(String domainName) {
this.domainName = domainName;
}
public String getCertStartTime() {
return this.certStartTime;
}
public void setCertStartTime(String certStartTime) {
this.certStartTime = certStartTime;
}
public String getCertType() {
return this.certType;
}
public void setCertType(String certType) {
this.certType = certType;
}
public String getCertName() {
return this.certName;
}
public void setCertName(String certName) {
this.certName = certName;
}
public String getDomainCnameStatus() {
return this.domainCnameStatus;
}
public void setDomainCnameStatus(String domainCnameStatus) {
this.domainCnameStatus = domainCnameStatus;
}
public String getServerCertificate() {
return this.serverCertificate;
}
public void setServerCertificate(String serverCertificate) {
this.serverCertificate = serverCertificate;
}
public String getCertId() {
return this.certId;
}
public void setCertId(String certId) {
this.certId = certId;
}
public String getCertRegion() {
return this.certRegion;
}
public void setCertRegion(String certRegion) {
this.certRegion = certRegion;
}
}
@Override
public DescribeDomainCertificateInfoResponse getInstance(UnmarshallerContext context) {
return DescribeDomainCertificateInfoResponseUnmarshaller.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/DescribeDomainCnameRequest.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 DescribeDomainCnameRequest extends RpcAcsRequest<DescribeDomainCnameResponse> {
private String domainName;
public DescribeDomainCnameRequest() {
super("Cdn", "2018-05-10", "DescribeDomainCname");
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<DescribeDomainCnameResponse> getResponseClass() {
return DescribeDomainCnameResponse.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/DescribeDomainCnameResponse.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.DescribeDomainCnameResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeDomainCnameResponse extends AcsResponse {
private String requestId;
private List<Data> cnameDatas;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public List<Data> getCnameDatas() {
return this.cnameDatas;
}
public void setCnameDatas(List<Data> cnameDatas) {
this.cnameDatas = cnameDatas;
}
public static class Data {
private Integer status;
private String domain;
private String cname;
public Integer getStatus() {
return this.status;
}
public void setStatus(Integer status) {
this.status = status;
}
public String getDomain() {
return this.domain;
}
public void setDomain(String domain) {
this.domain = domain;
}
public String getCname() {
return this.cname;
}
public void setCname(String cname) {
this.cname = cname;
}
}
@Override
public DescribeDomainCnameResponse getInstance(UnmarshallerContext context) {
return DescribeDomainCnameResponseUnmarshaller.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/DescribeDomainCustomLogConfigRequest.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 DescribeDomainCustomLogConfigRequest extends RpcAcsRequest<DescribeDomainCustomLogConfigResponse> {
private String domainName;
public DescribeDomainCustomLogConfigRequest() {
super("Cdn", "2018-05-10", "DescribeDomainCustomLogConfig");
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);
}
}
@Override
public Class<DescribeDomainCustomLogConfigResponse> getResponseClass() {
return DescribeDomainCustomLogConfigResponse.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/DescribeDomainCustomLogConfigResponse.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.DescribeDomainCustomLogConfigResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeDomainCustomLogConfigResponse extends AcsResponse {
private String configId;
private String tag;
private String requestId;
private String remark;
private String sample;
public String getConfigId() {
return this.configId;
}
public void setConfigId(String configId) {
this.configId = configId;
}
public String getTag() {
return this.tag;
}
public void setTag(String tag) {
this.tag = tag;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public String getRemark() {
return this.remark;
}
public void setRemark(String remark) {
this.remark = remark;
}
public String getSample() {
return this.sample;
}
public void setSample(String sample) {
this.sample = sample;
}
@Override
public DescribeDomainCustomLogConfigResponse getInstance(UnmarshallerContext context) {
return DescribeDomainCustomLogConfigResponseUnmarshaller.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/DescribeDomainDetailDataByLayerRequest.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 DescribeDomainDetailDataByLayerRequest extends RpcAcsRequest<DescribeDomainDetailDataByLayerResponse> {
private String field;
private String domainName;
private String endTime;
private String locationNameEn;
private String startTime;
private String ispNameEn;
private String layer;
public DescribeDomainDetailDataByLayerRequest() {
super("Cdn", "2018-05-10", "DescribeDomainDetailDataByLayer");
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 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 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);
}
}
public String getLayer() {
return this.layer;
}
public void setLayer(String layer) {
this.layer = layer;
if(layer != null){
putQueryParameter("Layer", layer);
}
}
@Override
public Class<DescribeDomainDetailDataByLayerResponse> getResponseClass() {
return DescribeDomainDetailDataByLayerResponse.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/DescribeDomainDetailDataByLayerResponse.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.DescribeDomainDetailDataByLayerResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeDomainDetailDataByLayerResponse extends AcsResponse {
private String requestId;
private List<DataModule> data;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public List<DataModule> getData() {
return this.data;
}
public void setData(List<DataModule> data) {
this.data = data;
}
public static class DataModule {
private Long traf;
private Float qps;
private Float ipv6Qps;
private Float ipv6Bps;
private Long acc;
private Long ipv6Traf;
private Long ipv6Acc;
private String timeStamp;
private String httpCode;
private Float bps;
private String domainName;
public Long getTraf() {
return this.traf;
}
public void setTraf(Long traf) {
this.traf = traf;
}
public Float getQps() {
return this.qps;
}
public void setQps(Float qps) {
this.qps = qps;
}
public Float getIpv6Qps() {
return this.ipv6Qps;
}
public void setIpv6Qps(Float ipv6Qps) {
this.ipv6Qps = ipv6Qps;
}
public Float getIpv6Bps() {
return this.ipv6Bps;
}
public void setIpv6Bps(Float ipv6Bps) {
this.ipv6Bps = ipv6Bps;
}
public Long getAcc() {
return this.acc;
}
public void setAcc(Long acc) {
this.acc = acc;
}
public Long getIpv6Traf() {
return this.ipv6Traf;
}
public void setIpv6Traf(Long ipv6Traf) {
this.ipv6Traf = ipv6Traf;
}
public Long getIpv6Acc() {
return this.ipv6Acc;
}
public void setIpv6Acc(Long ipv6Acc) {
this.ipv6Acc = ipv6Acc;
}
public String getTimeStamp() {
return this.timeStamp;
}
public void setTimeStamp(String timeStamp) {
this.timeStamp = timeStamp;
}
public String getHttpCode() {
return this.httpCode;
}
public void setHttpCode(String httpCode) {
this.httpCode = httpCode;
}
public Float getBps() {
return this.bps;
}
public void setBps(Float bps) {
this.bps = bps;
}
public String getDomainName() {
return this.domainName;
}
public void setDomainName(String domainName) {
this.domainName = domainName;
}
}
@Override
public DescribeDomainDetailDataByLayerResponse getInstance(UnmarshallerContext context) {
return DescribeDomainDetailDataByLayerResponseUnmarshaller.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/DescribeDomainHitRateDataRequest.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 DescribeDomainHitRateDataRequest extends RpcAcsRequest<DescribeDomainHitRateDataResponse> {
private String domainName;
private String endTime;
private String interval;
private String startTime;
public DescribeDomainHitRateDataRequest() {
super("Cdn", "2018-05-10", "DescribeDomainHitRateData");
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 getStartTime() {
return this.startTime;
}
public void setStartTime(String startTime) {
this.startTime = startTime;
if(startTime != null){
putQueryParameter("StartTime", startTime);
}
}
@Override
public Class<DescribeDomainHitRateDataResponse> getResponseClass() {
return DescribeDomainHitRateDataResponse.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/DescribeDomainHitRateDataResponse.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.DescribeDomainHitRateDataResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeDomainHitRateDataResponse extends AcsResponse {
private String endTime;
private String startTime;
private String requestId;
private String domainName;
private String dataInterval;
private List<DataModule> hitRateInterval;
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> getHitRateInterval() {
return this.hitRateInterval;
}
public void setHitRateInterval(List<DataModule> hitRateInterval) {
this.hitRateInterval = hitRateInterval;
}
public static class DataModule {
private String value;
private String timeStamp;
private String httpsValue;
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 getHttpsValue() {
return this.httpsValue;
}
public void setHttpsValue(String httpsValue) {
this.httpsValue = httpsValue;
}
}
@Override
public DescribeDomainHitRateDataResponse getInstance(UnmarshallerContext context) {
return DescribeDomainHitRateDataResponseUnmarshaller.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/DescribeDomainHttpCodeDataByLayerRequest.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 DescribeDomainHttpCodeDataByLayerRequest extends RpcAcsRequest<DescribeDomainHttpCodeDataByLayerResponse> {
private String domainName;
private String endTime;
private String interval;
private String locationNameEn;
private String startTime;
private String ispNameEn;
private String layer;
public DescribeDomainHttpCodeDataByLayerRequest() {
super("Cdn", "2018-05-10", "DescribeDomainHttpCodeDataByLayer");
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);
}
}
public String getLayer() {
return this.layer;
}
public void setLayer(String layer) {
this.layer = layer;
if(layer != null){
putQueryParameter("Layer", layer);
}
}
@Override
public Class<DescribeDomainHttpCodeDataByLayerResponse> getResponseClass() {
return DescribeDomainHttpCodeDataByLayerResponse.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/DescribeDomainHttpCodeDataByLayerResponse.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.DescribeDomainHttpCodeDataByLayerResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeDomainHttpCodeDataByLayerResponse extends AcsResponse {
private String dataInterval;
private String requestId;
private List<DataModule> httpCodeDataInterval;
public String getDataInterval() {
return this.dataInterval;
}
public void setDataInterval(String dataInterval) {
this.dataInterval = dataInterval;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public List<DataModule> getHttpCodeDataInterval() {
return this.httpCodeDataInterval;
}
public void setHttpCodeDataInterval(List<DataModule> httpCodeDataInterval) {
this.httpCodeDataInterval = httpCodeDataInterval;
}
public static class DataModule {
private String value;
private String timeStamp;
private String totalValue;
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 getTotalValue() {
return this.totalValue;
}
public void setTotalValue(String totalValue) {
this.totalValue = totalValue;
}
}
@Override
public DescribeDomainHttpCodeDataByLayerResponse getInstance(UnmarshallerContext context) {
return DescribeDomainHttpCodeDataByLayerResponseUnmarshaller.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/DescribeDomainHttpCodeDataRequest.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 DescribeDomainHttpCodeDataRequest extends RpcAcsRequest<DescribeDomainHttpCodeDataResponse> {
private String domainName;
private String endTime;
private String interval;
private String locationNameEn;
private String startTime;
private String ispNameEn;
public DescribeDomainHttpCodeDataRequest() {
super("Cdn", "2018-05-10", "DescribeDomainHttpCodeData");
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<DescribeDomainHttpCodeDataResponse> getResponseClass() {
return DescribeDomainHttpCodeDataResponse.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/DescribeDomainHttpCodeDataResponse.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.DescribeDomainHttpCodeDataResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeDomainHttpCodeDataResponse extends AcsResponse {
private String endTime;
private String startTime;
private String requestId;
private String domainName;
private String dataInterval;
private List<UsageData> httpCodeData;
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> getHttpCodeData() {
return this.httpCodeData;
}
public void setHttpCodeData(List<UsageData> httpCodeData) {
this.httpCodeData = httpCodeData;
}
public static class UsageData {
private String timeStamp;
private List<CodeProportionData> value;
public String getTimeStamp() {
return this.timeStamp;
}
public void setTimeStamp(String timeStamp) {
this.timeStamp = timeStamp;
}
public List<CodeProportionData> getValue() {
return this.value;
}
public void setValue(List<CodeProportionData> value) {
this.value = value;
}
public static class CodeProportionData {
private String code;
private String proportion;
private String count;
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public String getProportion() {
return this.proportion;
}
public void setProportion(String proportion) {
this.proportion = proportion;
}
public String getCount() {
return this.count;
}
public void setCount(String count) {
this.count = count;
}
}
}
@Override
public DescribeDomainHttpCodeDataResponse getInstance(UnmarshallerContext context) {
return DescribeDomainHttpCodeDataResponseUnmarshaller.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/DescribeDomainISPDataRequest.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 DescribeDomainISPDataRequest extends RpcAcsRequest<DescribeDomainISPDataResponse> {
private String domainName;
private String endTime;
private String startTime;
public DescribeDomainISPDataRequest() {
super("Cdn", "2018-05-10", "DescribeDomainISPData");
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<DescribeDomainISPDataResponse> getResponseClass() {
return DescribeDomainISPDataResponse.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/DescribeDomainISPDataResponse.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.DescribeDomainISPDataResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeDomainISPDataResponse extends AcsResponse {
private String endTime;
private String startTime;
private String requestId;
private String domainName;
private String dataInterval;
private List<ISPProportionData> value;
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<ISPProportionData> getValue() {
return this.value;
}
public void setValue(List<ISPProportionData> value) {
this.value = value;
}
public static class ISPProportionData {
private String totalQuery;
private String totalBytes;
private String avgResponseRate;
private String avgResponseTime;
private String reqErrRate;
private String avgObjectSize;
private String bps;
private String qps;
private String proportion;
private String ispEname;
private String iSP;
private String bytesProportion;
public String getTotalQuery() {
return this.totalQuery;
}
public void setTotalQuery(String totalQuery) {
this.totalQuery = totalQuery;
}
public String getTotalBytes() {
return this.totalBytes;
}
public void setTotalBytes(String totalBytes) {
this.totalBytes = totalBytes;
}
public String getAvgResponseRate() {
return this.avgResponseRate;
}
public void setAvgResponseRate(String avgResponseRate) {
this.avgResponseRate = avgResponseRate;
}
public String getAvgResponseTime() {
return this.avgResponseTime;
}
public void setAvgResponseTime(String avgResponseTime) {
this.avgResponseTime = avgResponseTime;
}
public String getReqErrRate() {
return this.reqErrRate;
}
public void setReqErrRate(String reqErrRate) {
this.reqErrRate = reqErrRate;
}
public String getAvgObjectSize() {
return this.avgObjectSize;
}
public void setAvgObjectSize(String avgObjectSize) {
this.avgObjectSize = avgObjectSize;
}
public String getBps() {
return this.bps;
}
public void setBps(String bps) {
this.bps = bps;
}
public String getQps() {
return this.qps;
}
public void setQps(String qps) {
this.qps = qps;
}
public String getProportion() {
return this.proportion;
}
public void setProportion(String proportion) {
this.proportion = proportion;
}
public String getIspEname() {
return this.ispEname;
}
public void setIspEname(String ispEname) {
this.ispEname = ispEname;
}
public String getISP() {
return this.iSP;
}
public void setISP(String iSP) {
this.iSP = iSP;
}
public String getBytesProportion() {
return this.bytesProportion;
}
public void setBytesProportion(String bytesProportion) {
this.bytesProportion = bytesProportion;
}
}
@Override
public DescribeDomainISPDataResponse getInstance(UnmarshallerContext context) {
return DescribeDomainISPDataResponseUnmarshaller.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/DescribeDomainMax95BpsDataRequest.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 DescribeDomainMax95BpsDataRequest extends RpcAcsRequest<DescribeDomainMax95BpsDataResponse> {
private String domainName;
private String endTime;
private String startTime;
private String cycle;
private String timePoint;
public DescribeDomainMax95BpsDataRequest() {
super("Cdn", "2018-05-10", "DescribeDomainMax95BpsData");
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);
}
}
public String getCycle() {
return this.cycle;
}
public void setCycle(String cycle) {
this.cycle = cycle;
if(cycle != null){
putQueryParameter("Cycle", cycle);
}
}
public String getTimePoint() {
return this.timePoint;
}
public void setTimePoint(String timePoint) {
this.timePoint = timePoint;
if(timePoint != null){
putQueryParameter("TimePoint", timePoint);
}
}
@Override
public Class<DescribeDomainMax95BpsDataResponse> getResponseClass() {
return DescribeDomainMax95BpsDataResponse.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/DescribeDomainMax95BpsDataResponse.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.DescribeDomainMax95BpsDataResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeDomainMax95BpsDataResponse extends AcsResponse {
private String requestId;
private String domainName;
private String endTime;
private String startTime;
private String domesticMax95Bps;
private String overseasMax95Bps;
private String max95Bps;
private List<Max95Detail> detailData;
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 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 getDomesticMax95Bps() {
return this.domesticMax95Bps;
}
public void setDomesticMax95Bps(String domesticMax95Bps) {
this.domesticMax95Bps = domesticMax95Bps;
}
public String getOverseasMax95Bps() {
return this.overseasMax95Bps;
}
public void setOverseasMax95Bps(String overseasMax95Bps) {
this.overseasMax95Bps = overseasMax95Bps;
}
public String getMax95Bps() {
return this.max95Bps;
}
public void setMax95Bps(String max95Bps) {
this.max95Bps = max95Bps;
}
public List<Max95Detail> getDetailData() {
return this.detailData;
}
public void setDetailData(List<Max95Detail> detailData) {
this.detailData = detailData;
}
public static class Max95Detail {
private String timeStamp;
private String area;
private String max95BpsPeakTime;
private Float max95Bps;
public String getTimeStamp() {
return this.timeStamp;
}
public void setTimeStamp(String timeStamp) {
this.timeStamp = timeStamp;
}
public String getArea() {
return this.area;
}
public void setArea(String area) {
this.area = area;
}
public String getMax95BpsPeakTime() {
return this.max95BpsPeakTime;
}
public void setMax95BpsPeakTime(String max95BpsPeakTime) {
this.max95BpsPeakTime = max95BpsPeakTime;
}
public Float getMax95Bps() {
return this.max95Bps;
}
public void setMax95Bps(Float max95Bps) {
this.max95Bps = max95Bps;
}
}
@Override
public DescribeDomainMax95BpsDataResponse getInstance(UnmarshallerContext context) {
return DescribeDomainMax95BpsDataResponseUnmarshaller.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/DescribeDomainMultiUsageDataRequest.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 DescribeDomainMultiUsageDataRequest extends RpcAcsRequest<DescribeDomainMultiUsageDataResponse> {
private String domainName;
private String endTime;
private String startTime;
public DescribeDomainMultiUsageDataRequest() {
super("Cdn", "2018-05-10", "DescribeDomainMultiUsageData");
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<DescribeDomainMultiUsageDataResponse> getResponseClass() {
return DescribeDomainMultiUsageDataResponse.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/DescribeDomainMultiUsageDataResponse.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.DescribeDomainMultiUsageDataResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeDomainMultiUsageDataResponse extends AcsResponse {
private String endTime;
private String startTime;
private String requestId;
private List<RequestDataModule> requestPerInterval;
private List<TrafficDataModule> trafficPerInterval;
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 List<RequestDataModule> getRequestPerInterval() {
return this.requestPerInterval;
}
public void setRequestPerInterval(List<RequestDataModule> requestPerInterval) {
this.requestPerInterval = requestPerInterval;
}
public List<TrafficDataModule> getTrafficPerInterval() {
return this.trafficPerInterval;
}
public void setTrafficPerInterval(List<TrafficDataModule> trafficPerInterval) {
this.trafficPerInterval = trafficPerInterval;
}
public static class RequestDataModule {
private String type;
private String timeStamp;
private String domain;
private Long request;
public String getType() {
return this.type;
}
public void setType(String type) {
this.type = type;
}
public String getTimeStamp() {
return this.timeStamp;
}
public void setTimeStamp(String timeStamp) {
this.timeStamp = timeStamp;
}
public String getDomain() {
return this.domain;
}
public void setDomain(String domain) {
this.domain = domain;
}
public Long getRequest() {
return this.request;
}
public void setRequest(Long request) {
this.request = request;
}
}
public static class TrafficDataModule {
private String type;
private String domain;
private String timeStamp;
private String area;
private Float bps;
public String getType() {
return this.type;
}
public void setType(String type) {
this.type = type;
}
public String getDomain() {
return this.domain;
}
public void setDomain(String domain) {
this.domain = domain;
}
public String getTimeStamp() {
return this.timeStamp;
}
public void setTimeStamp(String timeStamp) {
this.timeStamp = timeStamp;
}
public String getArea() {
return this.area;
}
public void setArea(String area) {
this.area = area;
}
public Float getBps() {
return this.bps;
}
public void setBps(Float bps) {
this.bps = bps;
}
}
@Override
public DescribeDomainMultiUsageDataResponse getInstance(UnmarshallerContext context) {
return DescribeDomainMultiUsageDataResponseUnmarshaller.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/DescribeDomainPathDataRequest.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 DescribeDomainPathDataRequest extends RpcAcsRequest<DescribeDomainPathDataResponse> {
private String path;
private Integer pageSize;
private String domainName;
private String endTime;
private String startTime;
private Integer pageNumber;
public DescribeDomainPathDataRequest() {
super("Cdn", "2018-05-10", "DescribeDomainPathData");
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 getPath() {
return this.path;
}
public void setPath(String path) {
this.path = path;
if(path != null){
putQueryParameter("Path", path);
}
}
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
if(pageSize != null){
putQueryParameter("PageSize", pageSize.toString());
}
}
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);
}
}
public Integer getPageNumber() {
return this.pageNumber;
}
public void setPageNumber(Integer pageNumber) {
this.pageNumber = pageNumber;
if(pageNumber != null){
putQueryParameter("PageNumber", pageNumber.toString());
}
}
@Override
public Class<DescribeDomainPathDataResponse> getResponseClass() {
return DescribeDomainPathDataResponse.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/DescribeDomainPathDataResponse.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.DescribeDomainPathDataResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeDomainPathDataResponse extends AcsResponse {
private String endTime;
private String startTime;
private Integer pageSize;
private Integer pageNumber;
private Integer totalCount;
private String domainName;
private String dataInterval;
private List<UsageData> pathDataPerInterval;
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 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 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> getPathDataPerInterval() {
return this.pathDataPerInterval;
}
public void setPathDataPerInterval(List<UsageData> pathDataPerInterval) {
this.pathDataPerInterval = pathDataPerInterval;
}
public static class UsageData {
private String path;
private String time;
private Integer acc;
private Integer traffic;
public String getPath() {
return this.path;
}
public void setPath(String path) {
this.path = path;
}
public String getTime() {
return this.time;
}
public void setTime(String time) {
this.time = time;
}
public Integer getAcc() {
return this.acc;
}
public void setAcc(Integer acc) {
this.acc = acc;
}
public Integer getTraffic() {
return this.traffic;
}
public void setTraffic(Integer traffic) {
this.traffic = traffic;
}
}
@Override
public DescribeDomainPathDataResponse getInstance(UnmarshallerContext context) {
return DescribeDomainPathDataResponseUnmarshaller.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/DescribeDomainPvDataRequest.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 DescribeDomainPvDataRequest extends RpcAcsRequest<DescribeDomainPvDataResponse> {
private String domainName;
private String endTime;
private String startTime;
public DescribeDomainPvDataRequest() {
super("Cdn", "2018-05-10", "DescribeDomainPvData");
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<DescribeDomainPvDataResponse> getResponseClass() {
return DescribeDomainPvDataResponse.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/DescribeDomainPvDataResponse.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.DescribeDomainPvDataResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeDomainPvDataResponse extends AcsResponse {
private String endTime;
private String startTime;
private String requestId;
private String domainName;
private String dataInterval;
private List<UsageData> pvDataInterval;
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> getPvDataInterval() {
return this.pvDataInterval;
}
public void setPvDataInterval(List<UsageData> pvDataInterval) {
this.pvDataInterval = pvDataInterval;
}
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 DescribeDomainPvDataResponse getInstance(UnmarshallerContext context) {
return DescribeDomainPvDataResponseUnmarshaller.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/DescribeDomainQpsDataByLayerRequest.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 DescribeDomainQpsDataByLayerRequest extends RpcAcsRequest<DescribeDomainQpsDataByLayerResponse> {
private String domainName;
private String endTime;
private String interval;
private String locationNameEn;
private String startTime;
private String ispNameEn;
private String layer;
public DescribeDomainQpsDataByLayerRequest() {
super("Cdn", "2018-05-10", "DescribeDomainQpsDataByLayer");
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);
}
}
public String getLayer() {
return this.layer;
}
public void setLayer(String layer) {
this.layer = layer;
if(layer != null){
putQueryParameter("Layer", layer);
}
}
@Override
public Class<DescribeDomainQpsDataByLayerResponse> getResponseClass() {
return DescribeDomainQpsDataByLayerResponse.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/DescribeDomainQpsDataByLayerResponse.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.DescribeDomainQpsDataByLayerResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeDomainQpsDataByLayerResponse extends AcsResponse {
private String endTime;
private String startTime;
private String requestId;
private String layer;
private String domainName;
private String dataInterval;
private List<DataModule> qpsDataInterval;
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 getLayer() {
return this.layer;
}
public void setLayer(String layer) {
this.layer = layer;
}
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> getQpsDataInterval() {
return this.qpsDataInterval;
}
public void setQpsDataInterval(List<DataModule> qpsDataInterval) {
this.qpsDataInterval = qpsDataInterval;
}
public static class DataModule {
private String value;
private String accValue;
private String accDomesticValue;
private String overseasValue;
private String accOverseasValue;
private String timeStamp;
private String domesticValue;
public String getValue() {
return this.value;
}
public void setValue(String value) {
this.value = value;
}
public String getAccValue() {
return this.accValue;
}
public void setAccValue(String accValue) {
this.accValue = accValue;
}
public String getAccDomesticValue() {
return this.accDomesticValue;
}
public void setAccDomesticValue(String accDomesticValue) {
this.accDomesticValue = accDomesticValue;
}
public String getOverseasValue() {
return this.overseasValue;
}
public void setOverseasValue(String overseasValue) {
this.overseasValue = overseasValue;
}
public String getAccOverseasValue() {
return this.accOverseasValue;
}
public void setAccOverseasValue(String accOverseasValue) {
this.accOverseasValue = accOverseasValue;
}
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 DescribeDomainQpsDataByLayerResponse getInstance(UnmarshallerContext context) {
return DescribeDomainQpsDataByLayerResponseUnmarshaller.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/DescribeDomainQpsDataRequest.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 DescribeDomainQpsDataRequest extends RpcAcsRequest<DescribeDomainQpsDataResponse> {
private String domainName;
private String endTime;
private String interval;
private String locationNameEn;
private String startTime;
private String ispNameEn;
public DescribeDomainQpsDataRequest() {
super("Cdn", "2018-05-10", "DescribeDomainQpsData");
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<DescribeDomainQpsDataResponse> getResponseClass() {
return DescribeDomainQpsDataResponse.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/DescribeDomainQpsDataResponse.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.DescribeDomainQpsDataResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeDomainQpsDataResponse extends AcsResponse {
private String endTime;
private String startTime;
private String requestId;
private String domainName;
private String dataInterval;
private List<DataModule> qpsDataInterval;
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> getQpsDataInterval() {
return this.qpsDataInterval;
}
public void setQpsDataInterval(List<DataModule> qpsDataInterval) {
this.qpsDataInterval = qpsDataInterval;
}
public static class DataModule {
private String accValue;
private String accDomesticValue;
private String accOverseasValue;
private String httpsValue;
private String httpsOverseasValue;
private String domesticValue;
private String httpsAccOverseasValue;
private String httpsDomesticValue;
private String httpsAccValue;
private String value;
private String overseasValue;
private String timeStamp;
private String httpsAccDomesticValue;
public String getAccValue() {
return this.accValue;
}
public void setAccValue(String accValue) {
this.accValue = accValue;
}
public String getAccDomesticValue() {
return this.accDomesticValue;
}
public void setAccDomesticValue(String accDomesticValue) {
this.accDomesticValue = accDomesticValue;
}
public String getAccOverseasValue() {
return this.accOverseasValue;
}
public void setAccOverseasValue(String accOverseasValue) {
this.accOverseasValue = accOverseasValue;
}
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 getDomesticValue() {
return this.domesticValue;
}
public void setDomesticValue(String domesticValue) {
this.domesticValue = domesticValue;
}
public String getHttpsAccOverseasValue() {
return this.httpsAccOverseasValue;
}
public void setHttpsAccOverseasValue(String httpsAccOverseasValue) {
this.httpsAccOverseasValue = httpsAccOverseasValue;
}
public String getHttpsDomesticValue() {
return this.httpsDomesticValue;
}
public void setHttpsDomesticValue(String httpsDomesticValue) {
this.httpsDomesticValue = httpsDomesticValue;
}
public String getHttpsAccValue() {
return this.httpsAccValue;
}
public void setHttpsAccValue(String httpsAccValue) {
this.httpsAccValue = httpsAccValue;
}
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 getTimeStamp() {
return this.timeStamp;
}
public void setTimeStamp(String timeStamp) {
this.timeStamp = timeStamp;
}
public String getHttpsAccDomesticValue() {
return this.httpsAccDomesticValue;
}
public void setHttpsAccDomesticValue(String httpsAccDomesticValue) {
this.httpsAccDomesticValue = httpsAccDomesticValue;
}
}
@Override
public DescribeDomainQpsDataResponse getInstance(UnmarshallerContext context) {
return DescribeDomainQpsDataResponseUnmarshaller.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/DescribeDomainRealTimeBpsDataRequest.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 DescribeDomainRealTimeBpsDataRequest extends RpcAcsRequest<DescribeDomainRealTimeBpsDataResponse> {
private String domainName;
private String endTime;
private String locationNameEn;
private String ispNameEn;
private String startTime;
public DescribeDomainRealTimeBpsDataRequest() {
super("Cdn", "2018-05-10", "DescribeDomainRealTimeBpsData");
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 getEndTime() {
return this.endTime;
}
public void setEndTime(String endTime) {
this.endTime = endTime;
if(endTime != null){
putQueryParameter("EndTime", endTime);
}
}
public String getLocationNameEn() {
return this.locationNameEn;
}
public void setLocationNameEn(String locationNameEn) {
this.locationNameEn = locationNameEn;
if(locationNameEn != null){
putQueryParameter("LocationNameEn", locationNameEn);
}
}
public String getIspNameEn() {
return this.ispNameEn;
}
public void setIspNameEn(String ispNameEn) {
this.ispNameEn = ispNameEn;
if(ispNameEn != null){
putQueryParameter("IspNameEn", ispNameEn);
}
}
public String getStartTime() {
return this.startTime;
}
public void setStartTime(String startTime) {
this.startTime = startTime;
if(startTime != null){
putQueryParameter("StartTime", startTime);
}
}
@Override
public Class<DescribeDomainRealTimeBpsDataResponse> getResponseClass() {
return DescribeDomainRealTimeBpsDataResponse.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/DescribeDomainRealTimeBpsDataResponse.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.DescribeDomainRealTimeBpsDataResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeDomainRealTimeBpsDataResponse extends AcsResponse {
private String requestId;
private List<BpsModel> data;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public List<BpsModel> getData() {
return this.data;
}
public void setData(List<BpsModel> data) {
this.data = data;
}
public static class BpsModel {
private Float bps;
private String timeStamp;
public Float getBps() {
return this.bps;
}
public void setBps(Float bps) {
this.bps = bps;
}
public String getTimeStamp() {
return this.timeStamp;
}
public void setTimeStamp(String timeStamp) {
this.timeStamp = timeStamp;
}
}
@Override
public DescribeDomainRealTimeBpsDataResponse getInstance(UnmarshallerContext context) {
return DescribeDomainRealTimeBpsDataResponseUnmarshaller.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/DescribeDomainRealTimeByteHitRateDataRequest.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 DescribeDomainRealTimeByteHitRateDataRequest extends RpcAcsRequest<DescribeDomainRealTimeByteHitRateDataResponse> {
private String domainName;
private String endTime;
private String startTime;
public DescribeDomainRealTimeByteHitRateDataRequest() {
super("Cdn", "2018-05-10", "DescribeDomainRealTimeByteHitRateData");
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 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<DescribeDomainRealTimeByteHitRateDataResponse> getResponseClass() {
return DescribeDomainRealTimeByteHitRateDataResponse.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/DescribeDomainRealTimeByteHitRateDataResponse.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.DescribeDomainRealTimeByteHitRateDataResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeDomainRealTimeByteHitRateDataResponse extends AcsResponse {
private String requestId;
private List<ByteHitRateDataModel> data;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public List<ByteHitRateDataModel> getData() {
return this.data;
}
public void setData(List<ByteHitRateDataModel> data) {
this.data = data;
}
public static class ByteHitRateDataModel {
private Float byteHitRate;
private String timeStamp;
public Float getByteHitRate() {
return this.byteHitRate;
}
public void setByteHitRate(Float byteHitRate) {
this.byteHitRate = byteHitRate;
}
public String getTimeStamp() {
return this.timeStamp;
}
public void setTimeStamp(String timeStamp) {
this.timeStamp = timeStamp;
}
}
@Override
public DescribeDomainRealTimeByteHitRateDataResponse getInstance(UnmarshallerContext context) {
return DescribeDomainRealTimeByteHitRateDataResponseUnmarshaller.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/DescribeDomainRealTimeDetailDataRequest.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 DescribeDomainRealTimeDetailDataRequest extends RpcAcsRequest<DescribeDomainRealTimeDetailDataResponse> {
private String field;
private String merge;
private String domainName;
private String endTime;
private String mergeLocIsp;
private String locationNameEn;
private String startTime;
private String ispNameEn;
public DescribeDomainRealTimeDetailDataRequest() {
super("Cdn", "2018-05-10", "DescribeDomainRealTimeDetailData");
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 getField() {
return this.field;
}
public void setField(String field) {
this.field = field;
if(field != null){
putQueryParameter("Field", field);
}
}
public String getMerge() {
return this.merge;
}
public void setMerge(String merge) {
this.merge = merge;
if(merge != null){
putQueryParameter("Merge", merge);
}
}
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 getMergeLocIsp() {
return this.mergeLocIsp;
}
public void setMergeLocIsp(String mergeLocIsp) {
this.mergeLocIsp = mergeLocIsp;
if(mergeLocIsp != null){
putQueryParameter("MergeLocIsp", mergeLocIsp);
}
}
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<DescribeDomainRealTimeDetailDataResponse> getResponseClass() {
return DescribeDomainRealTimeDetailDataResponse.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/DescribeDomainRealTimeDetailDataResponse.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.DescribeDomainRealTimeDetailDataResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeDomainRealTimeDetailDataResponse extends AcsResponse {
private String data;
private String requestId;
public String getData() {
return this.data;
}
public void setData(String data) {
this.data = data;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
@Override
public DescribeDomainRealTimeDetailDataResponse getInstance(UnmarshallerContext context) {
return DescribeDomainRealTimeDetailDataResponseUnmarshaller.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/DescribeDomainRealTimeHttpCodeDataRequest.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 DescribeDomainRealTimeHttpCodeDataRequest extends RpcAcsRequest<DescribeDomainRealTimeHttpCodeDataResponse> {
private String domainName;
private String endTime;
private String locationNameEn;
private String startTime;
private String ispNameEn;
public DescribeDomainRealTimeHttpCodeDataRequest() {
super("Cdn", "2018-05-10", "DescribeDomainRealTimeHttpCodeData");
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 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<DescribeDomainRealTimeHttpCodeDataResponse> getResponseClass() {
return DescribeDomainRealTimeHttpCodeDataResponse.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/DescribeDomainRealTimeHttpCodeDataResponse.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.DescribeDomainRealTimeHttpCodeDataResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeDomainRealTimeHttpCodeDataResponse extends AcsResponse {
private String endTime;
private String startTime;
private String requestId;
private String domainName;
private String dataInterval;
private List<UsageData> realTimeHttpCodeData;
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> getRealTimeHttpCodeData() {
return this.realTimeHttpCodeData;
}
public void setRealTimeHttpCodeData(List<UsageData> realTimeHttpCodeData) {
this.realTimeHttpCodeData = realTimeHttpCodeData;
}
public static class UsageData {
private String timeStamp;
private List<RealTimeCodeProportionData> value;
public String getTimeStamp() {
return this.timeStamp;
}
public void setTimeStamp(String timeStamp) {
this.timeStamp = timeStamp;
}
public List<RealTimeCodeProportionData> getValue() {
return this.value;
}
public void setValue(List<RealTimeCodeProportionData> value) {
this.value = value;
}
public static class RealTimeCodeProportionData {
private String code;
private String proportion;
private String count;
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public String getProportion() {
return this.proportion;
}
public void setProportion(String proportion) {
this.proportion = proportion;
}
public String getCount() {
return this.count;
}
public void setCount(String count) {
this.count = count;
}
}
}
@Override
public DescribeDomainRealTimeHttpCodeDataResponse getInstance(UnmarshallerContext context) {
return DescribeDomainRealTimeHttpCodeDataResponseUnmarshaller.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/DescribeDomainRealTimeQpsDataRequest.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 DescribeDomainRealTimeQpsDataRequest extends RpcAcsRequest<DescribeDomainRealTimeQpsDataResponse> {
private String domainName;
private String endTime;
private String locationNameEn;
private String ispNameEn;
private String startTime;
public DescribeDomainRealTimeQpsDataRequest() {
super("Cdn", "2018-05-10", "DescribeDomainRealTimeQpsData");
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 getEndTime() {
return this.endTime;
}
public void setEndTime(String endTime) {
this.endTime = endTime;
if(endTime != null){
putQueryParameter("EndTime", endTime);
}
}
public String getLocationNameEn() {
return this.locationNameEn;
}
public void setLocationNameEn(String locationNameEn) {
this.locationNameEn = locationNameEn;
if(locationNameEn != null){
putQueryParameter("LocationNameEn", locationNameEn);
}
}
public String getIspNameEn() {
return this.ispNameEn;
}
public void setIspNameEn(String ispNameEn) {
this.ispNameEn = ispNameEn;
if(ispNameEn != null){
putQueryParameter("IspNameEn", ispNameEn);
}
}
public String getStartTime() {
return this.startTime;
}
public void setStartTime(String startTime) {
this.startTime = startTime;
if(startTime != null){
putQueryParameter("StartTime", startTime);
}
}
@Override
public Class<DescribeDomainRealTimeQpsDataResponse> getResponseClass() {
return DescribeDomainRealTimeQpsDataResponse.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/DescribeDomainRealTimeQpsDataResponse.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.DescribeDomainRealTimeQpsDataResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeDomainRealTimeQpsDataResponse extends AcsResponse {
private String requestId;
private List<QpsModel> data;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public List<QpsModel> getData() {
return this.data;
}
public void setData(List<QpsModel> data) {
this.data = data;
}
public static class QpsModel {
private Float qps;
private String timeStamp;
public Float getQps() {
return this.qps;
}
public void setQps(Float qps) {
this.qps = qps;
}
public String getTimeStamp() {
return this.timeStamp;
}
public void setTimeStamp(String timeStamp) {
this.timeStamp = timeStamp;
}
}
@Override
public DescribeDomainRealTimeQpsDataResponse getInstance(UnmarshallerContext context) {
return DescribeDomainRealTimeQpsDataResponseUnmarshaller.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/DescribeDomainRealTimeReqHitRateDataRequest.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 DescribeDomainRealTimeReqHitRateDataRequest extends RpcAcsRequest<DescribeDomainRealTimeReqHitRateDataResponse> {
private String domainName;
private String endTime;
private String startTime;
public DescribeDomainRealTimeReqHitRateDataRequest() {
super("Cdn", "2018-05-10", "DescribeDomainRealTimeReqHitRateData");
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 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<DescribeDomainRealTimeReqHitRateDataResponse> getResponseClass() {
return DescribeDomainRealTimeReqHitRateDataResponse.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/DescribeDomainRealTimeReqHitRateDataResponse.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.DescribeDomainRealTimeReqHitRateDataResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeDomainRealTimeReqHitRateDataResponse extends AcsResponse {
private String requestId;
private List<ReqHitRateDataModel> data;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public List<ReqHitRateDataModel> getData() {
return this.data;
}
public void setData(List<ReqHitRateDataModel> data) {
this.data = data;
}
public static class ReqHitRateDataModel {
private Float reqHitRate;
private String timeStamp;
public Float getReqHitRate() {
return this.reqHitRate;
}
public void setReqHitRate(Float reqHitRate) {
this.reqHitRate = reqHitRate;
}
public String getTimeStamp() {
return this.timeStamp;
}
public void setTimeStamp(String timeStamp) {
this.timeStamp = timeStamp;
}
}
@Override
public DescribeDomainRealTimeReqHitRateDataResponse getInstance(UnmarshallerContext context) {
return DescribeDomainRealTimeReqHitRateDataResponseUnmarshaller.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/DescribeDomainRealTimeSrcBpsDataRequest.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 DescribeDomainRealTimeSrcBpsDataRequest extends RpcAcsRequest<DescribeDomainRealTimeSrcBpsDataResponse> {
private String domainName;
private String endTime;
private String startTime;
public DescribeDomainRealTimeSrcBpsDataRequest() {
super("Cdn", "2018-05-10", "DescribeDomainRealTimeSrcBpsData");
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<DescribeDomainRealTimeSrcBpsDataResponse> getResponseClass() {
return DescribeDomainRealTimeSrcBpsDataResponse.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/DescribeDomainRealTimeSrcBpsDataResponse.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.DescribeDomainRealTimeSrcBpsDataResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeDomainRealTimeSrcBpsDataResponse extends AcsResponse {
private String endTime;
private String startTime;
private String requestId;
private String domainName;
private String dataInterval;
private List<DataModule> realTimeSrcBpsDataPerInterval;
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> getRealTimeSrcBpsDataPerInterval() {
return this.realTimeSrcBpsDataPerInterval;
}
public void setRealTimeSrcBpsDataPerInterval(List<DataModule> realTimeSrcBpsDataPerInterval) {
this.realTimeSrcBpsDataPerInterval = realTimeSrcBpsDataPerInterval;
}
public static class DataModule {
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 DescribeDomainRealTimeSrcBpsDataResponse getInstance(UnmarshallerContext context) {
return DescribeDomainRealTimeSrcBpsDataResponseUnmarshaller.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/DescribeDomainRealTimeSrcHttpCodeDataRequest.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 DescribeDomainRealTimeSrcHttpCodeDataRequest extends RpcAcsRequest<DescribeDomainRealTimeSrcHttpCodeDataResponse> {
private String domainName;
private String endTime;
private String locationNameEn;
private String startTime;
private String ispNameEn;
public DescribeDomainRealTimeSrcHttpCodeDataRequest() {
super("Cdn", "2018-05-10", "DescribeDomainRealTimeSrcHttpCodeData");
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 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<DescribeDomainRealTimeSrcHttpCodeDataResponse> getResponseClass() {
return DescribeDomainRealTimeSrcHttpCodeDataResponse.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/DescribeDomainRealTimeSrcHttpCodeDataResponse.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.DescribeDomainRealTimeSrcHttpCodeDataResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeDomainRealTimeSrcHttpCodeDataResponse extends AcsResponse {
private String endTime;
private String startTime;
private String requestId;
private String domainName;
private String dataInterval;
private List<UsageData> realTimeSrcHttpCodeData;
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> getRealTimeSrcHttpCodeData() {
return this.realTimeSrcHttpCodeData;
}
public void setRealTimeSrcHttpCodeData(List<UsageData> realTimeSrcHttpCodeData) {
this.realTimeSrcHttpCodeData = realTimeSrcHttpCodeData;
}
public static class UsageData {
private String timeStamp;
private List<RealTimeSrcCodeProportionData> value;
public String getTimeStamp() {
return this.timeStamp;
}
public void setTimeStamp(String timeStamp) {
this.timeStamp = timeStamp;
}
public List<RealTimeSrcCodeProportionData> getValue() {
return this.value;
}
public void setValue(List<RealTimeSrcCodeProportionData> value) {
this.value = value;
}
public static class RealTimeSrcCodeProportionData {
private String code;
private String proportion;
private String count;
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public String getProportion() {
return this.proportion;
}
public void setProportion(String proportion) {
this.proportion = proportion;
}
public String getCount() {
return this.count;
}
public void setCount(String count) {
this.count = count;
}
}
}
@Override
public DescribeDomainRealTimeSrcHttpCodeDataResponse getInstance(UnmarshallerContext context) {
return DescribeDomainRealTimeSrcHttpCodeDataResponseUnmarshaller.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/DescribeDomainRealTimeSrcTrafficDataRequest.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 DescribeDomainRealTimeSrcTrafficDataRequest extends RpcAcsRequest<DescribeDomainRealTimeSrcTrafficDataResponse> {
private String domainName;
private String endTime;
private String startTime;
public DescribeDomainRealTimeSrcTrafficDataRequest() {
super("Cdn", "2018-05-10", "DescribeDomainRealTimeSrcTrafficData");
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<DescribeDomainRealTimeSrcTrafficDataResponse> getResponseClass() {
return DescribeDomainRealTimeSrcTrafficDataResponse.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/DescribeDomainRealTimeSrcTrafficDataResponse.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.DescribeDomainRealTimeSrcTrafficDataResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeDomainRealTimeSrcTrafficDataResponse extends AcsResponse {
private String endTime;
private String startTime;
private String requestId;
private String domainName;
private String dataInterval;
private List<DataModule> realTimeSrcTrafficDataPerInterval;
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> getRealTimeSrcTrafficDataPerInterval() {
return this.realTimeSrcTrafficDataPerInterval;
}
public void setRealTimeSrcTrafficDataPerInterval(List<DataModule> realTimeSrcTrafficDataPerInterval) {
this.realTimeSrcTrafficDataPerInterval = realTimeSrcTrafficDataPerInterval;
}
public static class DataModule {
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 DescribeDomainRealTimeSrcTrafficDataResponse getInstance(UnmarshallerContext context) {
return DescribeDomainRealTimeSrcTrafficDataResponseUnmarshaller.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/DescribeDomainRealTimeTrafficDataRequest.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 DescribeDomainRealTimeTrafficDataRequest extends RpcAcsRequest<DescribeDomainRealTimeTrafficDataResponse> {
private String domainName;
private String endTime;
private String locationNameEn;
private String startTime;
private String ispNameEn;
public DescribeDomainRealTimeTrafficDataRequest() {
super("Cdn", "2018-05-10", "DescribeDomainRealTimeTrafficData");
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 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<DescribeDomainRealTimeTrafficDataResponse> getResponseClass() {
return DescribeDomainRealTimeTrafficDataResponse.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/DescribeDomainRealTimeTrafficDataResponse.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.DescribeDomainRealTimeTrafficDataResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeDomainRealTimeTrafficDataResponse extends AcsResponse {
private String endTime;
private String startTime;
private String requestId;
private String domainName;
private String dataInterval;
private List<DataModule> realTimeTrafficDataPerInterval;
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> getRealTimeTrafficDataPerInterval() {
return this.realTimeTrafficDataPerInterval;
}
public void setRealTimeTrafficDataPerInterval(List<DataModule> realTimeTrafficDataPerInterval) {
this.realTimeTrafficDataPerInterval = realTimeTrafficDataPerInterval;
}
public static class DataModule {
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 DescribeDomainRealTimeTrafficDataResponse getInstance(UnmarshallerContext context) {
return DescribeDomainRealTimeTrafficDataResponseUnmarshaller.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/DescribeDomainRealtimeLogDeliveryRequest.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 DescribeDomainRealtimeLogDeliveryRequest extends RpcAcsRequest<DescribeDomainRealtimeLogDeliveryResponse> {
private String domain;
public DescribeDomainRealtimeLogDeliveryRequest() {
super("Cdn", "2018-05-10", "DescribeDomainRealtimeLogDelivery");
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<DescribeDomainRealtimeLogDeliveryResponse> getResponseClass() {
return DescribeDomainRealtimeLogDeliveryResponse.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/DescribeDomainRealtimeLogDeliveryResponse.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.DescribeDomainRealtimeLogDeliveryResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeDomainRealtimeLogDeliveryResponse extends AcsResponse {
private String status;
private String logstore;
private String project;
private String requestId;
private String region;
public String getStatus() {
return this.status;
}
public void setStatus(String status) {
this.status = status;
}
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 getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public String getRegion() {
return this.region;
}
public void setRegion(String region) {
this.region = region;
}
@Override
public DescribeDomainRealtimeLogDeliveryResponse getInstance(UnmarshallerContext context) {
return DescribeDomainRealtimeLogDeliveryResponseUnmarshaller.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/DescribeDomainRegionDataRequest.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 DescribeDomainRegionDataRequest extends RpcAcsRequest<DescribeDomainRegionDataResponse> {
private String domainName;
private String endTime;
private String startTime;
public DescribeDomainRegionDataRequest() {
super("Cdn", "2018-05-10", "DescribeDomainRegionData");
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<DescribeDomainRegionDataResponse> getResponseClass() {
return DescribeDomainRegionDataResponse.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/DescribeDomainRegionDataResponse.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.DescribeDomainRegionDataResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeDomainRegionDataResponse extends AcsResponse {
private String endTime;
private String startTime;
private String requestId;
private String domainName;
private String dataInterval;
private List<RegionProportionData> value;
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<RegionProportionData> getValue() {
return this.value;
}
public void setValue(List<RegionProportionData> value) {
this.value = value;
}
public static class RegionProportionData {
private String totalQuery;
private String totalBytes;
private String avgResponseRate;
private String avgResponseTime;
private String reqErrRate;
private String avgObjectSize;
private String bps;
private String qps;
private String regionEname;
private String region;
private String proportion;
private String bytesProportion;
public String getTotalQuery() {
return this.totalQuery;
}
public void setTotalQuery(String totalQuery) {
this.totalQuery = totalQuery;
}
public String getTotalBytes() {
return this.totalBytes;
}
public void setTotalBytes(String totalBytes) {
this.totalBytes = totalBytes;
}
public String getAvgResponseRate() {
return this.avgResponseRate;
}
public void setAvgResponseRate(String avgResponseRate) {
this.avgResponseRate = avgResponseRate;
}
public String getAvgResponseTime() {
return this.avgResponseTime;
}
public void setAvgResponseTime(String avgResponseTime) {
this.avgResponseTime = avgResponseTime;
}
public String getReqErrRate() {
return this.reqErrRate;
}
public void setReqErrRate(String reqErrRate) {
this.reqErrRate = reqErrRate;
}
public String getAvgObjectSize() {
return this.avgObjectSize;
}
public void setAvgObjectSize(String avgObjectSize) {
this.avgObjectSize = avgObjectSize;
}
public String getBps() {
return this.bps;
}
public void setBps(String bps) {
this.bps = bps;
}
public String getQps() {
return this.qps;
}
public void setQps(String qps) {
this.qps = qps;
}
public String 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 getProportion() {
return this.proportion;
}
public void setProportion(String proportion) {
this.proportion = proportion;
}
public String getBytesProportion() {
return this.bytesProportion;
}
public void setBytesProportion(String bytesProportion) {
this.bytesProportion = bytesProportion;
}
}
@Override
public DescribeDomainRegionDataResponse getInstance(UnmarshallerContext context) {
return DescribeDomainRegionDataResponseUnmarshaller.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/DescribeDomainReqHitRateDataRequest.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 DescribeDomainReqHitRateDataRequest extends RpcAcsRequest<DescribeDomainReqHitRateDataResponse> {
private String domainName;
private String endTime;
private String interval;
private String startTime;
public DescribeDomainReqHitRateDataRequest() {
super("Cdn", "2018-05-10", "DescribeDomainReqHitRateData");
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 getStartTime() {
return this.startTime;
}
public void setStartTime(String startTime) {
this.startTime = startTime;
if(startTime != null){
putQueryParameter("StartTime", startTime);
}
}
@Override
public Class<DescribeDomainReqHitRateDataResponse> getResponseClass() {
return DescribeDomainReqHitRateDataResponse.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/DescribeDomainReqHitRateDataResponse.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.DescribeDomainReqHitRateDataResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeDomainReqHitRateDataResponse extends AcsResponse {
private String endTime;
private String startTime;
private String requestId;
private String domainName;
private String dataInterval;
private List<DataModule> reqHitRateInterval;
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> getReqHitRateInterval() {
return this.reqHitRateInterval;
}
public void setReqHitRateInterval(List<DataModule> reqHitRateInterval) {
this.reqHitRateInterval = reqHitRateInterval;
}
public static class DataModule {
private String value;
private String timeStamp;
private String httpsValue;
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 getHttpsValue() {
return this.httpsValue;
}
public void setHttpsValue(String httpsValue) {
this.httpsValue = httpsValue;
}
}
@Override
public DescribeDomainReqHitRateDataResponse getInstance(UnmarshallerContext context) {
return DescribeDomainReqHitRateDataResponseUnmarshaller.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/DescribeDomainSrcBpsDataRequest.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 DescribeDomainSrcBpsDataRequest extends RpcAcsRequest<DescribeDomainSrcBpsDataResponse> {
private String domainName;
private String endTime;
private String interval;
private String startTime;
public DescribeDomainSrcBpsDataRequest() {
super("Cdn", "2018-05-10", "DescribeDomainSrcBpsData");
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 getStartTime() {
return this.startTime;
}
public void setStartTime(String startTime) {
this.startTime = startTime;
if(startTime != null){
putQueryParameter("StartTime", startTime);
}
}
@Override
public Class<DescribeDomainSrcBpsDataResponse> getResponseClass() {
return DescribeDomainSrcBpsDataResponse.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/DescribeDomainSrcBpsDataResponse.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.DescribeDomainSrcBpsDataResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeDomainSrcBpsDataResponse extends AcsResponse {
private String endTime;
private String startTime;
private String requestId;
private String domainName;
private String dataInterval;
private List<DataModule> srcBpsDataPerInterval;
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> getSrcBpsDataPerInterval() {
return this.srcBpsDataPerInterval;
}
public void setSrcBpsDataPerInterval(List<DataModule> srcBpsDataPerInterval) {
this.srcBpsDataPerInterval = srcBpsDataPerInterval;
}
public static class DataModule {
private String value;
private String timeStamp;
private String httpsValue;
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 getHttpsValue() {
return this.httpsValue;
}
public void setHttpsValue(String httpsValue) {
this.httpsValue = httpsValue;
}
}
@Override
public DescribeDomainSrcBpsDataResponse getInstance(UnmarshallerContext context) {
return DescribeDomainSrcBpsDataResponseUnmarshaller.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/DescribeDomainSrcHttpCodeDataRequest.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 DescribeDomainSrcHttpCodeDataRequest extends RpcAcsRequest<DescribeDomainSrcHttpCodeDataResponse> {
private String domainName;
private String endTime;
private String interval;
private String startTime;
public DescribeDomainSrcHttpCodeDataRequest() {
super("Cdn", "2018-05-10", "DescribeDomainSrcHttpCodeData");
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 getStartTime() {
return this.startTime;
}
public void setStartTime(String startTime) {
this.startTime = startTime;
if(startTime != null){
putQueryParameter("StartTime", startTime);
}
}
@Override
public Class<DescribeDomainSrcHttpCodeDataResponse> getResponseClass() {
return DescribeDomainSrcHttpCodeDataResponse.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/DescribeDomainSrcHttpCodeDataResponse.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.DescribeDomainSrcHttpCodeDataResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeDomainSrcHttpCodeDataResponse extends AcsResponse {
private String endTime;
private String startTime;
private String requestId;
private String domainName;
private String dataInterval;
private List<UsageData> httpCodeData;
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> getHttpCodeData() {
return this.httpCodeData;
}
public void setHttpCodeData(List<UsageData> httpCodeData) {
this.httpCodeData = httpCodeData;
}
public static class UsageData {
private String timeStamp;
private List<CodeProportionData> value;
public String getTimeStamp() {
return this.timeStamp;
}
public void setTimeStamp(String timeStamp) {
this.timeStamp = timeStamp;
}
public List<CodeProportionData> getValue() {
return this.value;
}
public void setValue(List<CodeProportionData> value) {
this.value = value;
}
public static class CodeProportionData {
private String code;
private String proportion;
private String count;
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public String getProportion() {
return this.proportion;
}
public void setProportion(String proportion) {
this.proportion = proportion;
}
public String getCount() {
return this.count;
}
public void setCount(String count) {
this.count = count;
}
}
}
@Override
public DescribeDomainSrcHttpCodeDataResponse getInstance(UnmarshallerContext context) {
return DescribeDomainSrcHttpCodeDataResponseUnmarshaller.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/DescribeDomainSrcQpsDataRequest.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 DescribeDomainSrcQpsDataRequest extends RpcAcsRequest<DescribeDomainSrcQpsDataResponse> {
private String domainName;
private String endTime;
private String interval;
private String startTime;
public DescribeDomainSrcQpsDataRequest() {
super("Cdn", "2018-05-10", "DescribeDomainSrcQpsData");
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 getStartTime() {
return this.startTime;
}
public void setStartTime(String startTime) {
this.startTime = startTime;
if(startTime != null){
putQueryParameter("StartTime", startTime);
}
}
@Override
public Class<DescribeDomainSrcQpsDataResponse> getResponseClass() {
return DescribeDomainSrcQpsDataResponse.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/DescribeDomainSrcQpsDataResponse.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.DescribeDomainSrcQpsDataResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeDomainSrcQpsDataResponse extends AcsResponse {
private String endTime;
private String startTime;
private String requestId;
private String domainName;
private String dataInterval;
private List<DataModule> srcQpsDataPerInterval;
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> getSrcQpsDataPerInterval() {
return this.srcQpsDataPerInterval;
}
public void setSrcQpsDataPerInterval(List<DataModule> srcQpsDataPerInterval) {
this.srcQpsDataPerInterval = srcQpsDataPerInterval;
}
public static class DataModule {
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 DescribeDomainSrcQpsDataResponse getInstance(UnmarshallerContext context) {
return DescribeDomainSrcQpsDataResponseUnmarshaller.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/DescribeDomainSrcTopUrlVisitRequest.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 DescribeDomainSrcTopUrlVisitRequest extends RpcAcsRequest<DescribeDomainSrcTopUrlVisitResponse> {
private String domainName;
private String endTime;
private String sortBy;
private String startTime;
public DescribeDomainSrcTopUrlVisitRequest() {
super("Cdn", "2018-05-10", "DescribeDomainSrcTopUrlVisit");
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<DescribeDomainSrcTopUrlVisitResponse> getResponseClass() {
return DescribeDomainSrcTopUrlVisitResponse.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/DescribeDomainSrcTopUrlVisitResponse.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.DescribeDomainSrcTopUrlVisitResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeDomainSrcTopUrlVisitResponse 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 DescribeDomainSrcTopUrlVisitResponse getInstance(UnmarshallerContext context) {
return DescribeDomainSrcTopUrlVisitResponseUnmarshaller.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/DescribeDomainSrcTrafficDataRequest.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 DescribeDomainSrcTrafficDataRequest extends RpcAcsRequest<DescribeDomainSrcTrafficDataResponse> {
private String domainName;
private String endTime;
private String interval;
private String startTime;
public DescribeDomainSrcTrafficDataRequest() {
super("Cdn", "2018-05-10", "DescribeDomainSrcTrafficData");
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 getStartTime() {
return this.startTime;
}
public void setStartTime(String startTime) {
this.startTime = startTime;
if(startTime != null){
putQueryParameter("StartTime", startTime);
}
}
@Override
public Class<DescribeDomainSrcTrafficDataResponse> getResponseClass() {
return DescribeDomainSrcTrafficDataResponse.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/DescribeDomainSrcTrafficDataResponse.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.DescribeDomainSrcTrafficDataResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeDomainSrcTrafficDataResponse extends AcsResponse {
private String endTime;
private String startTime;
private String requestId;
private String domainName;
private String dataInterval;
private List<DataModule> srcTrafficDataPerInterval;
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> getSrcTrafficDataPerInterval() {
return this.srcTrafficDataPerInterval;
}
public void setSrcTrafficDataPerInterval(List<DataModule> srcTrafficDataPerInterval) {
this.srcTrafficDataPerInterval = srcTrafficDataPerInterval;
}
public static class DataModule {
private String value;
private String timeStamp;
private String httpsValue;
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 getHttpsValue() {
return this.httpsValue;
}
public void setHttpsValue(String httpsValue) {
this.httpsValue = httpsValue;
}
}
@Override
public DescribeDomainSrcTrafficDataResponse getInstance(UnmarshallerContext context) {
return DescribeDomainSrcTrafficDataResponseUnmarshaller.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/DescribeDomainTopClientIpVisitRequest.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 DescribeDomainTopClientIpVisitRequest extends RpcAcsRequest<DescribeDomainTopClientIpVisitResponse> {
private String domainName;
private String limit;
private String endTime;
private String locationNameEn;
private String sortBy;
private String startTime;
public DescribeDomainTopClientIpVisitRequest() {
super("Cdn", "2018-05-10", "DescribeDomainTopClientIpVisit");
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 getLimit() {
return this.limit;
}
public void setLimit(String limit) {
this.limit = limit;
if(limit != null){
putQueryParameter("Limit", limit);
}
}
public String getEndTime() {
return this.endTime;
}
public void setEndTime(String endTime) {
this.endTime = endTime;
if(endTime != null){
putQueryParameter("EndTime", endTime);
}
}
public String getLocationNameEn() {
return this.locationNameEn;
}
public void setLocationNameEn(String locationNameEn) {
this.locationNameEn = locationNameEn;
if(locationNameEn != null){
putQueryParameter("LocationNameEn", locationNameEn);
}
}
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<DescribeDomainTopClientIpVisitResponse> getResponseClass() {
return DescribeDomainTopClientIpVisitResponse.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/DescribeDomainTopClientIpVisitResponse.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.DescribeDomainTopClientIpVisitResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeDomainTopClientIpVisitResponse extends AcsResponse {
private String requestId;
private List<ClientIp> clientIpList;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public List<ClientIp> getClientIpList() {
return this.clientIpList;
}
public void setClientIpList(List<ClientIp> clientIpList) {
this.clientIpList = clientIpList;
}
public static class ClientIp {
private Integer rank;
private String clientIp;
private Long acc;
private Long traffic;
public Integer getRank() {
return this.rank;
}
public void setRank(Integer rank) {
this.rank = rank;
}
public String getClientIp() {
return this.clientIp;
}
public void setClientIp(String clientIp) {
this.clientIp = clientIp;
}
public Long getAcc() {
return this.acc;
}
public void setAcc(Long acc) {
this.acc = acc;
}
public Long getTraffic() {
return this.traffic;
}
public void setTraffic(Long traffic) {
this.traffic = traffic;
}
}
@Override
public DescribeDomainTopClientIpVisitResponse getInstance(UnmarshallerContext context) {
return DescribeDomainTopClientIpVisitResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.