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/SetReqHeaderConfigRequest.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 SetReqHeaderConfigRequest extends RpcAcsRequest<SetReqHeaderConfigResponse> {
private String securityToken;
private String value;
private String key;
private String domainName;
private Long ownerId;
private Long configId;
public SetReqHeaderConfigRequest() {
super("Cdn", "2018-05-10", "SetReqHeaderConfig");
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 String getValue() {
return this.value;
}
public void setValue(String value) {
this.value = value;
if(value != null){
putQueryParameter("Value", value);
}
}
public String getKey() {
return this.key;
}
public void setKey(String key) {
this.key = key;
if(key != null){
putQueryParameter("Key", key);
}
}
public String getDomainName() {
return this.domainName;
}
public void setDomainName(String domainName) {
this.domainName = domainName;
if(domainName != null){
putQueryParameter("DomainName", domainName);
}
}
public Long getOwnerId() {
return this.ownerId;
}
public void setOwnerId(Long ownerId) {
this.ownerId = ownerId;
if(ownerId != null){
putQueryParameter("OwnerId", ownerId.toString());
}
}
public Long getConfigId() {
return this.configId;
}
public void setConfigId(Long configId) {
this.configId = configId;
if(configId != null){
putQueryParameter("ConfigId", configId.toString());
}
}
@Override
public Class<SetReqHeaderConfigResponse> getResponseClass() {
return SetReqHeaderConfigResponse.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/SetReqHeaderConfigResponse.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.SetReqHeaderConfigResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class SetReqHeaderConfigResponse extends AcsResponse {
private String requestId;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
@Override
public SetReqHeaderConfigResponse getInstance(UnmarshallerContext context) {
return SetReqHeaderConfigResponseUnmarshaller.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/SetWaitingRoomConfigRequest.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 SetWaitingRoomConfigRequest extends RpcAcsRequest<SetWaitingRoomConfigResponse> {
private Integer maxTimeWait;
private String waitUrl;
private String domainName;
private Integer allowPct;
private Integer gapTime;
private String waitUri;
public SetWaitingRoomConfigRequest() {
super("Cdn", "2018-05-10", "SetWaitingRoomConfig");
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 Integer getMaxTimeWait() {
return this.maxTimeWait;
}
public void setMaxTimeWait(Integer maxTimeWait) {
this.maxTimeWait = maxTimeWait;
if(maxTimeWait != null){
putQueryParameter("MaxTimeWait", maxTimeWait.toString());
}
}
public String getWaitUrl() {
return this.waitUrl;
}
public void setWaitUrl(String waitUrl) {
this.waitUrl = waitUrl;
if(waitUrl != null){
putQueryParameter("WaitUrl", waitUrl);
}
}
public String getDomainName() {
return this.domainName;
}
public void setDomainName(String domainName) {
this.domainName = domainName;
if(domainName != null){
putQueryParameter("DomainName", domainName);
}
}
public Integer getAllowPct() {
return this.allowPct;
}
public void setAllowPct(Integer allowPct) {
this.allowPct = allowPct;
if(allowPct != null){
putQueryParameter("AllowPct", allowPct.toString());
}
}
public Integer getGapTime() {
return this.gapTime;
}
public void setGapTime(Integer gapTime) {
this.gapTime = gapTime;
if(gapTime != null){
putQueryParameter("GapTime", gapTime.toString());
}
}
public String getWaitUri() {
return this.waitUri;
}
public void setWaitUri(String waitUri) {
this.waitUri = waitUri;
if(waitUri != null){
putQueryParameter("WaitUri", waitUri);
}
}
@Override
public Class<SetWaitingRoomConfigResponse> getResponseClass() {
return SetWaitingRoomConfigResponse.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/SetWaitingRoomConfigResponse.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.SetWaitingRoomConfigResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class SetWaitingRoomConfigResponse extends AcsResponse {
private String requestId;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
@Override
public SetWaitingRoomConfigResponse getInstance(UnmarshallerContext context) {
return SetWaitingRoomConfigResponseUnmarshaller.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/StartCdnDomainRequest.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 StartCdnDomainRequest extends RpcAcsRequest<StartCdnDomainResponse> {
private String securityToken;
private String domainName;
private Long ownerId;
public StartCdnDomainRequest() {
super("Cdn", "2018-05-10", "StartCdnDomain");
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 String getDomainName() {
return this.domainName;
}
public void setDomainName(String domainName) {
this.domainName = domainName;
if(domainName != null){
putQueryParameter("DomainName", domainName);
}
}
public Long getOwnerId() {
return this.ownerId;
}
public void setOwnerId(Long ownerId) {
this.ownerId = ownerId;
if(ownerId != null){
putQueryParameter("OwnerId", ownerId.toString());
}
}
@Override
public Class<StartCdnDomainResponse> getResponseClass() {
return StartCdnDomainResponse.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/StartCdnDomainResponse.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.StartCdnDomainResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class StartCdnDomainResponse extends AcsResponse {
private String requestId;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
@Override
public StartCdnDomainResponse getInstance(UnmarshallerContext context) {
return StartCdnDomainResponseUnmarshaller.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/StopCdnDomainRequest.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 StopCdnDomainRequest extends RpcAcsRequest<StopCdnDomainResponse> {
private String securityToken;
private String domainName;
private Long ownerId;
public StopCdnDomainRequest() {
super("Cdn", "2018-05-10", "StopCdnDomain");
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 String getDomainName() {
return this.domainName;
}
public void setDomainName(String domainName) {
this.domainName = domainName;
if(domainName != null){
putQueryParameter("DomainName", domainName);
}
}
public Long getOwnerId() {
return this.ownerId;
}
public void setOwnerId(Long ownerId) {
this.ownerId = ownerId;
if(ownerId != null){
putQueryParameter("OwnerId", ownerId.toString());
}
}
@Override
public Class<StopCdnDomainResponse> getResponseClass() {
return StopCdnDomainResponse.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/StopCdnDomainResponse.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.StopCdnDomainResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class StopCdnDomainResponse extends AcsResponse {
private String requestId;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
@Override
public StopCdnDomainResponse getInstance(UnmarshallerContext context) {
return StopCdnDomainResponseUnmarshaller.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/TagResourcesRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.cdn.model.v20180510;
import com.aliyuncs.RpcAcsRequest;
import java.util.List;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.cdn.Endpoint;
/**
* @author auto create
* @version
*/
public class TagResourcesRequest extends RpcAcsRequest<TagResourcesResponse> {
private List<String> resourceIds;
private List<Tag> tags;
private String resourceType;
public TagResourcesRequest() {
super("Cdn", "2018-05-10", "TagResources");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public List<String> getResourceIds() {
return this.resourceIds;
}
public void setResourceIds(List<String> resourceIds) {
this.resourceIds = resourceIds;
if (resourceIds != null) {
for (int i = 0; i < resourceIds.size(); i++) {
putQueryParameter("ResourceId." + (i + 1) , resourceIds.get(i));
}
}
}
public List<Tag> getTags() {
return this.tags;
}
public void setTags(List<Tag> tags) {
this.tags = tags;
if (tags != null) {
for (int depth1 = 0; depth1 < tags.size(); depth1++) {
putQueryParameter("Tag." + (depth1 + 1) + ".Key" , tags.get(depth1).getKey());
putQueryParameter("Tag." + (depth1 + 1) + ".Value" , tags.get(depth1).getValue());
}
}
}
public String getResourceType() {
return this.resourceType;
}
public void setResourceType(String resourceType) {
this.resourceType = resourceType;
if(resourceType != null){
putQueryParameter("ResourceType", resourceType);
}
}
public static class Tag {
private String key;
private String value;
public String getKey() {
return this.key;
}
public void setKey(String key) {
this.key = key;
}
public String getValue() {
return this.value;
}
public void setValue(String value) {
this.value = value;
}
}
@Override
public Class<TagResourcesResponse> getResponseClass() {
return TagResourcesResponse.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/TagResourcesResponse.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.TagResourcesResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class TagResourcesResponse extends AcsResponse {
private String requestId;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
@Override
public TagResourcesResponse getInstance(UnmarshallerContext context) {
return TagResourcesResponseUnmarshaller.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/UntagResourcesRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.cdn.model.v20180510;
import com.aliyuncs.RpcAcsRequest;
import java.util.List;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.cdn.Endpoint;
/**
* @author auto create
* @version
*/
public class UntagResourcesRequest extends RpcAcsRequest<UntagResourcesResponse> {
private Boolean all;
private List<String> resourceIds;
private List<String> tagKeys;
private String resourceType;
public UntagResourcesRequest() {
super("Cdn", "2018-05-10", "UntagResources");
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 Boolean getAll() {
return this.all;
}
public void setAll(Boolean all) {
this.all = all;
if(all != null){
putQueryParameter("All", all.toString());
}
}
public List<String> getResourceIds() {
return this.resourceIds;
}
public void setResourceIds(List<String> resourceIds) {
this.resourceIds = resourceIds;
if (resourceIds != null) {
for (int i = 0; i < resourceIds.size(); i++) {
putQueryParameter("ResourceId." + (i + 1) , resourceIds.get(i));
}
}
}
public List<String> getTagKeys() {
return this.tagKeys;
}
public void setTagKeys(List<String> tagKeys) {
this.tagKeys = tagKeys;
if (tagKeys != null) {
for (int i = 0; i < tagKeys.size(); i++) {
putQueryParameter("TagKey." + (i + 1) , tagKeys.get(i));
}
}
}
public String getResourceType() {
return this.resourceType;
}
public void setResourceType(String resourceType) {
this.resourceType = resourceType;
if(resourceType != null){
putQueryParameter("ResourceType", resourceType);
}
}
@Override
public Class<UntagResourcesResponse> getResponseClass() {
return UntagResourcesResponse.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/UntagResourcesResponse.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.UntagResourcesResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class UntagResourcesResponse extends AcsResponse {
private String requestId;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
@Override
public UntagResourcesResponse getInstance(UnmarshallerContext context) {
return UntagResourcesResponseUnmarshaller.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/UpdateCdnDeliverTaskRequest.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 UpdateCdnDeliverTaskRequest extends RpcAcsRequest<UpdateCdnDeliverTaskResponse> {
private String reports;
private String schedule;
private String name;
private String domainName;
private String deliver;
private Long deliverId;
public UpdateCdnDeliverTaskRequest() {
super("Cdn", "2018-05-10", "UpdateCdnDeliverTask");
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 getReports() {
return this.reports;
}
public void setReports(String reports) {
this.reports = reports;
if(reports != null){
putBodyParameter("Reports", reports);
}
}
public String getSchedule() {
return this.schedule;
}
public void setSchedule(String schedule) {
this.schedule = schedule;
if(schedule != null){
putBodyParameter("Schedule", schedule);
}
}
public String getName() {
return this.name;
}
public void setName(String name) {
this.name = name;
if(name != null){
putBodyParameter("Name", name);
}
}
public String getDomainName() {
return this.domainName;
}
public void setDomainName(String domainName) {
this.domainName = domainName;
if(domainName != null){
putBodyParameter("DomainName", domainName);
}
}
public String getDeliver() {
return this.deliver;
}
public void setDeliver(String deliver) {
this.deliver = deliver;
if(deliver != null){
putBodyParameter("Deliver", deliver);
}
}
public Long getDeliverId() {
return this.deliverId;
}
public void setDeliverId(Long deliverId) {
this.deliverId = deliverId;
if(deliverId != null){
putBodyParameter("DeliverId", deliverId.toString());
}
}
@Override
public Class<UpdateCdnDeliverTaskResponse> getResponseClass() {
return UpdateCdnDeliverTaskResponse.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/UpdateCdnDeliverTaskResponse.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.UpdateCdnDeliverTaskResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class UpdateCdnDeliverTaskResponse extends AcsResponse {
private String requestId;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
@Override
public UpdateCdnDeliverTaskResponse getInstance(UnmarshallerContext context) {
return UpdateCdnDeliverTaskResponseUnmarshaller.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/UpdateCdnSubTaskRequest.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 UpdateCdnSubTaskRequest extends RpcAcsRequest<UpdateCdnSubTaskResponse> {
private String reportIds;
private String domainName;
private String endTime;
private String startTime;
public UpdateCdnSubTaskRequest() {
super("Cdn", "2018-05-10", "UpdateCdnSubTask");
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 getReportIds() {
return this.reportIds;
}
public void setReportIds(String reportIds) {
this.reportIds = reportIds;
if(reportIds != null){
putBodyParameter("ReportIds", reportIds);
}
}
public String getDomainName() {
return this.domainName;
}
public void setDomainName(String domainName) {
this.domainName = domainName;
if(domainName != null){
putBodyParameter("DomainName", domainName);
}
}
public String getEndTime() {
return this.endTime;
}
public void setEndTime(String endTime) {
this.endTime = endTime;
if(endTime != null){
putBodyParameter("EndTime", endTime);
}
}
public String getStartTime() {
return this.startTime;
}
public void setStartTime(String startTime) {
this.startTime = startTime;
if(startTime != null){
putBodyParameter("StartTime", startTime);
}
}
@Override
public Class<UpdateCdnSubTaskResponse> getResponseClass() {
return UpdateCdnSubTaskResponse.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/UpdateCdnSubTaskResponse.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.UpdateCdnSubTaskResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class UpdateCdnSubTaskResponse extends AcsResponse {
private String requestId;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
@Override
public UpdateCdnSubTaskResponse getInstance(UnmarshallerContext context) {
return UpdateCdnSubTaskResponseUnmarshaller.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/UpdateFCTriggerRequest.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 UpdateFCTriggerRequest extends RpcAcsRequest<UpdateFCTriggerResponse> {
private String triggerARN;
private String notes;
private String sourceARN;
private String roleARN;
private String functionARN;
public UpdateFCTriggerRequest() {
super("Cdn", "2018-05-10", "UpdateFCTrigger");
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 getTriggerARN() {
return this.triggerARN;
}
public void setTriggerARN(String triggerARN) {
this.triggerARN = triggerARN;
if(triggerARN != null){
putQueryParameter("TriggerARN", triggerARN);
}
}
public String getNotes() {
return this.notes;
}
public void setNotes(String notes) {
this.notes = notes;
if(notes != null){
putBodyParameter("Notes", notes);
}
}
public String getSourceARN() {
return this.sourceARN;
}
public void setSourceARN(String sourceARN) {
this.sourceARN = sourceARN;
if(sourceARN != null){
putBodyParameter("SourceARN", sourceARN);
}
}
public String getRoleARN() {
return this.roleARN;
}
public void setRoleARN(String roleARN) {
this.roleARN = roleARN;
if(roleARN != null){
putBodyParameter("RoleARN", roleARN);
}
}
public String getFunctionARN() {
return this.functionARN;
}
public void setFunctionARN(String functionARN) {
this.functionARN = functionARN;
if(functionARN != null){
putBodyParameter("FunctionARN", functionARN);
}
}
@Override
public Class<UpdateFCTriggerResponse> getResponseClass() {
return UpdateFCTriggerResponse.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/UpdateFCTriggerResponse.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.UpdateFCTriggerResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class UpdateFCTriggerResponse extends AcsResponse {
private String requestId;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
@Override
public UpdateFCTriggerResponse getInstance(UnmarshallerContext context) {
return UpdateFCTriggerResponseUnmarshaller.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/VerifyDomainOwnerRequest.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 VerifyDomainOwnerRequest extends RpcAcsRequest<VerifyDomainOwnerResponse> {
private String globalResourcePlan;
private String domainName;
private String verifyType;
public VerifyDomainOwnerRequest() {
super("Cdn", "2018-05-10", "VerifyDomainOwner");
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 getGlobalResourcePlan() {
return this.globalResourcePlan;
}
public void setGlobalResourcePlan(String globalResourcePlan) {
this.globalResourcePlan = globalResourcePlan;
if(globalResourcePlan != null){
putQueryParameter("GlobalResourcePlan", globalResourcePlan);
}
}
public String getDomainName() {
return this.domainName;
}
public void setDomainName(String domainName) {
this.domainName = domainName;
if(domainName != null){
putQueryParameter("DomainName", domainName);
}
}
public String getVerifyType() {
return this.verifyType;
}
public void setVerifyType(String verifyType) {
this.verifyType = verifyType;
if(verifyType != null){
putQueryParameter("VerifyType", verifyType);
}
}
@Override
public Class<VerifyDomainOwnerResponse> getResponseClass() {
return VerifyDomainOwnerResponse.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/VerifyDomainOwnerResponse.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.VerifyDomainOwnerResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class VerifyDomainOwnerResponse 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 VerifyDomainOwnerResponse getInstance(UnmarshallerContext context) {
return VerifyDomainOwnerResponseUnmarshaller.unmarshall(this, context);
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/transform/v20180510/AddCdnDomainResponseUnmarshaller.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.transform.v20180510;
import com.aliyuncs.cdn.model.v20180510.AddCdnDomainResponse;
import com.aliyuncs.transform.UnmarshallerContext;
public class AddCdnDomainResponseUnmarshaller {
public static AddCdnDomainResponse unmarshall(AddCdnDomainResponse addCdnDomainResponse, UnmarshallerContext _ctx) {
addCdnDomainResponse.setRequestId(_ctx.stringValue("AddCdnDomainResponse.RequestId"));
return addCdnDomainResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/transform/v20180510/AddFCTriggerResponseUnmarshaller.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.transform.v20180510;
import com.aliyuncs.cdn.model.v20180510.AddFCTriggerResponse;
import com.aliyuncs.transform.UnmarshallerContext;
public class AddFCTriggerResponseUnmarshaller {
public static AddFCTriggerResponse unmarshall(AddFCTriggerResponse addFCTriggerResponse, UnmarshallerContext _ctx) {
addFCTriggerResponse.setRequestId(_ctx.stringValue("AddFCTriggerResponse.RequestId"));
return addFCTriggerResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/transform/v20180510/BatchAddCdnDomainResponseUnmarshaller.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.transform.v20180510;
import com.aliyuncs.cdn.model.v20180510.BatchAddCdnDomainResponse;
import com.aliyuncs.transform.UnmarshallerContext;
public class BatchAddCdnDomainResponseUnmarshaller {
public static BatchAddCdnDomainResponse unmarshall(BatchAddCdnDomainResponse batchAddCdnDomainResponse, UnmarshallerContext _ctx) {
batchAddCdnDomainResponse.setRequestId(_ctx.stringValue("BatchAddCdnDomainResponse.RequestId"));
return batchAddCdnDomainResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/transform/v20180510/BatchDeleteCdnDomainConfigResponseUnmarshaller.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.transform.v20180510;
import com.aliyuncs.cdn.model.v20180510.BatchDeleteCdnDomainConfigResponse;
import com.aliyuncs.transform.UnmarshallerContext;
public class BatchDeleteCdnDomainConfigResponseUnmarshaller {
public static BatchDeleteCdnDomainConfigResponse unmarshall(BatchDeleteCdnDomainConfigResponse batchDeleteCdnDomainConfigResponse, UnmarshallerContext _ctx) {
batchDeleteCdnDomainConfigResponse.setRequestId(_ctx.stringValue("BatchDeleteCdnDomainConfigResponse.RequestId"));
return batchDeleteCdnDomainConfigResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/transform/v20180510/BatchSetCdnDomainConfigResponseUnmarshaller.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.transform.v20180510;
import java.util.ArrayList;
import java.util.List;
import com.aliyuncs.cdn.model.v20180510.BatchSetCdnDomainConfigResponse;
import com.aliyuncs.cdn.model.v20180510.BatchSetCdnDomainConfigResponse.DomainConfigModel;
import com.aliyuncs.transform.UnmarshallerContext;
public class BatchSetCdnDomainConfigResponseUnmarshaller {
public static BatchSetCdnDomainConfigResponse unmarshall(BatchSetCdnDomainConfigResponse batchSetCdnDomainConfigResponse, UnmarshallerContext _ctx) {
batchSetCdnDomainConfigResponse.setRequestId(_ctx.stringValue("BatchSetCdnDomainConfigResponse.RequestId"));
List<DomainConfigModel> domainConfigList = new ArrayList<DomainConfigModel>();
for (int i = 0; i < _ctx.lengthValue("BatchSetCdnDomainConfigResponse.DomainConfigList.Length"); i++) {
DomainConfigModel domainConfigModel = new DomainConfigModel();
domainConfigModel.setConfigId(_ctx.longValue("BatchSetCdnDomainConfigResponse.DomainConfigList["+ i +"].ConfigId"));
domainConfigModel.setDomainName(_ctx.stringValue("BatchSetCdnDomainConfigResponse.DomainConfigList["+ i +"].DomainName"));
domainConfigModel.setFunctionName(_ctx.stringValue("BatchSetCdnDomainConfigResponse.DomainConfigList["+ i +"].FunctionName"));
domainConfigList.add(domainConfigModel);
}
batchSetCdnDomainConfigResponse.setDomainConfigList(domainConfigList);
return batchSetCdnDomainConfigResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/transform/v20180510/BatchSetCdnDomainServerCertificateResponseUnmarshaller.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.transform.v20180510;
import com.aliyuncs.cdn.model.v20180510.BatchSetCdnDomainServerCertificateResponse;
import com.aliyuncs.transform.UnmarshallerContext;
public class BatchSetCdnDomainServerCertificateResponseUnmarshaller {
public static BatchSetCdnDomainServerCertificateResponse unmarshall(BatchSetCdnDomainServerCertificateResponse batchSetCdnDomainServerCertificateResponse, UnmarshallerContext _ctx) {
batchSetCdnDomainServerCertificateResponse.setRequestId(_ctx.stringValue("BatchSetCdnDomainServerCertificateResponse.RequestId"));
return batchSetCdnDomainServerCertificateResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/transform/v20180510/BatchStartCdnDomainResponseUnmarshaller.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.transform.v20180510;
import com.aliyuncs.cdn.model.v20180510.BatchStartCdnDomainResponse;
import com.aliyuncs.transform.UnmarshallerContext;
public class BatchStartCdnDomainResponseUnmarshaller {
public static BatchStartCdnDomainResponse unmarshall(BatchStartCdnDomainResponse batchStartCdnDomainResponse, UnmarshallerContext _ctx) {
batchStartCdnDomainResponse.setRequestId(_ctx.stringValue("BatchStartCdnDomainResponse.RequestId"));
return batchStartCdnDomainResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/transform/v20180510/BatchStopCdnDomainResponseUnmarshaller.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.transform.v20180510;
import com.aliyuncs.cdn.model.v20180510.BatchStopCdnDomainResponse;
import com.aliyuncs.transform.UnmarshallerContext;
public class BatchStopCdnDomainResponseUnmarshaller {
public static BatchStopCdnDomainResponse unmarshall(BatchStopCdnDomainResponse batchStopCdnDomainResponse, UnmarshallerContext _ctx) {
batchStopCdnDomainResponse.setRequestId(_ctx.stringValue("BatchStopCdnDomainResponse.RequestId"));
return batchStopCdnDomainResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/transform/v20180510/BatchUpdateCdnDomainResponseUnmarshaller.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.transform.v20180510;
import com.aliyuncs.cdn.model.v20180510.BatchUpdateCdnDomainResponse;
import com.aliyuncs.transform.UnmarshallerContext;
public class BatchUpdateCdnDomainResponseUnmarshaller {
public static BatchUpdateCdnDomainResponse unmarshall(BatchUpdateCdnDomainResponse batchUpdateCdnDomainResponse, UnmarshallerContext _ctx) {
batchUpdateCdnDomainResponse.setRequestId(_ctx.stringValue("BatchUpdateCdnDomainResponse.RequestId"));
return batchUpdateCdnDomainResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/transform/v20180510/CreateCdnCertificateSigningRequestResponseUnmarshaller.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.transform.v20180510;
import com.aliyuncs.cdn.model.v20180510.CreateCdnCertificateSigningRequestResponse;
import com.aliyuncs.transform.UnmarshallerContext;
public class CreateCdnCertificateSigningRequestResponseUnmarshaller {
public static CreateCdnCertificateSigningRequestResponse unmarshall(CreateCdnCertificateSigningRequestResponse createCdnCertificateSigningRequestResponse, UnmarshallerContext _ctx) {
createCdnCertificateSigningRequestResponse.setRequestId(_ctx.stringValue("CreateCdnCertificateSigningRequestResponse.RequestId"));
createCdnCertificateSigningRequestResponse.setPubMd5(_ctx.stringValue("CreateCdnCertificateSigningRequestResponse.PubMd5"));
createCdnCertificateSigningRequestResponse.setCsr(_ctx.stringValue("CreateCdnCertificateSigningRequestResponse.Csr"));
createCdnCertificateSigningRequestResponse.setCommonName(_ctx.stringValue("CreateCdnCertificateSigningRequestResponse.CommonName"));
return createCdnCertificateSigningRequestResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/transform/v20180510/CreateCdnDeliverTaskResponseUnmarshaller.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.transform.v20180510;
import com.aliyuncs.cdn.model.v20180510.CreateCdnDeliverTaskResponse;
import com.aliyuncs.transform.UnmarshallerContext;
public class CreateCdnDeliverTaskResponseUnmarshaller {
public static CreateCdnDeliverTaskResponse unmarshall(CreateCdnDeliverTaskResponse createCdnDeliverTaskResponse, UnmarshallerContext _ctx) {
createCdnDeliverTaskResponse.setRequestId(_ctx.stringValue("CreateCdnDeliverTaskResponse.RequestId"));
createCdnDeliverTaskResponse.setDeliverId(_ctx.stringValue("CreateCdnDeliverTaskResponse.DeliverId"));
return createCdnDeliverTaskResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/transform/v20180510/CreateCdnSubTaskResponseUnmarshaller.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.transform.v20180510;
import com.aliyuncs.cdn.model.v20180510.CreateCdnSubTaskResponse;
import com.aliyuncs.transform.UnmarshallerContext;
public class CreateCdnSubTaskResponseUnmarshaller {
public static CreateCdnSubTaskResponse unmarshall(CreateCdnSubTaskResponse createCdnSubTaskResponse, UnmarshallerContext _ctx) {
createCdnSubTaskResponse.setRequestId(_ctx.stringValue("CreateCdnSubTaskResponse.RequestId"));
return createCdnSubTaskResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/transform/v20180510/CreateRealTimeLogDeliveryResponseUnmarshaller.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.transform.v20180510;
import com.aliyuncs.cdn.model.v20180510.CreateRealTimeLogDeliveryResponse;
import com.aliyuncs.transform.UnmarshallerContext;
public class CreateRealTimeLogDeliveryResponseUnmarshaller {
public static CreateRealTimeLogDeliveryResponse unmarshall(CreateRealTimeLogDeliveryResponse createRealTimeLogDeliveryResponse, UnmarshallerContext _ctx) {
createRealTimeLogDeliveryResponse.setRequestId(_ctx.stringValue("CreateRealTimeLogDeliveryResponse.RequestId"));
return createRealTimeLogDeliveryResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/transform/v20180510/CreateUsageDetailDataExportTaskResponseUnmarshaller.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.transform.v20180510;
import com.aliyuncs.cdn.model.v20180510.CreateUsageDetailDataExportTaskResponse;
import com.aliyuncs.transform.UnmarshallerContext;
public class CreateUsageDetailDataExportTaskResponseUnmarshaller {
public static CreateUsageDetailDataExportTaskResponse unmarshall(CreateUsageDetailDataExportTaskResponse createUsageDetailDataExportTaskResponse, UnmarshallerContext _ctx) {
createUsageDetailDataExportTaskResponse.setRequestId(_ctx.stringValue("CreateUsageDetailDataExportTaskResponse.RequestId"));
createUsageDetailDataExportTaskResponse.setEndTime(_ctx.stringValue("CreateUsageDetailDataExportTaskResponse.EndTime"));
createUsageDetailDataExportTaskResponse.setStartTime(_ctx.stringValue("CreateUsageDetailDataExportTaskResponse.StartTime"));
createUsageDetailDataExportTaskResponse.setTaskId(_ctx.stringValue("CreateUsageDetailDataExportTaskResponse.TaskId"));
return createUsageDetailDataExportTaskResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/transform/v20180510/CreateUserUsageDataExportTaskResponseUnmarshaller.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.transform.v20180510;
import com.aliyuncs.cdn.model.v20180510.CreateUserUsageDataExportTaskResponse;
import com.aliyuncs.transform.UnmarshallerContext;
public class CreateUserUsageDataExportTaskResponseUnmarshaller {
public static CreateUserUsageDataExportTaskResponse unmarshall(CreateUserUsageDataExportTaskResponse createUserUsageDataExportTaskResponse, UnmarshallerContext _ctx) {
createUserUsageDataExportTaskResponse.setRequestId(_ctx.stringValue("CreateUserUsageDataExportTaskResponse.RequestId"));
createUserUsageDataExportTaskResponse.setEndTime(_ctx.stringValue("CreateUserUsageDataExportTaskResponse.EndTime"));
createUserUsageDataExportTaskResponse.setStartTime(_ctx.stringValue("CreateUserUsageDataExportTaskResponse.StartTime"));
createUserUsageDataExportTaskResponse.setTaskId(_ctx.stringValue("CreateUserUsageDataExportTaskResponse.TaskId"));
return createUserUsageDataExportTaskResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/transform/v20180510/DeleteCdnDeliverTaskResponseUnmarshaller.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.transform.v20180510;
import com.aliyuncs.cdn.model.v20180510.DeleteCdnDeliverTaskResponse;
import com.aliyuncs.transform.UnmarshallerContext;
public class DeleteCdnDeliverTaskResponseUnmarshaller {
public static DeleteCdnDeliverTaskResponse unmarshall(DeleteCdnDeliverTaskResponse deleteCdnDeliverTaskResponse, UnmarshallerContext _ctx) {
deleteCdnDeliverTaskResponse.setRequestId(_ctx.stringValue("DeleteCdnDeliverTaskResponse.RequestId"));
return deleteCdnDeliverTaskResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/transform/v20180510/DeleteCdnDomainResponseUnmarshaller.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.transform.v20180510;
import com.aliyuncs.cdn.model.v20180510.DeleteCdnDomainResponse;
import com.aliyuncs.transform.UnmarshallerContext;
public class DeleteCdnDomainResponseUnmarshaller {
public static DeleteCdnDomainResponse unmarshall(DeleteCdnDomainResponse deleteCdnDomainResponse, UnmarshallerContext _ctx) {
deleteCdnDomainResponse.setRequestId(_ctx.stringValue("DeleteCdnDomainResponse.RequestId"));
return deleteCdnDomainResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/transform/v20180510/DeleteCdnSubTaskResponseUnmarshaller.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.transform.v20180510;
import com.aliyuncs.cdn.model.v20180510.DeleteCdnSubTaskResponse;
import com.aliyuncs.transform.UnmarshallerContext;
public class DeleteCdnSubTaskResponseUnmarshaller {
public static DeleteCdnSubTaskResponse unmarshall(DeleteCdnSubTaskResponse deleteCdnSubTaskResponse, UnmarshallerContext _ctx) {
deleteCdnSubTaskResponse.setRequestId(_ctx.stringValue("DeleteCdnSubTaskResponse.RequestId"));
return deleteCdnSubTaskResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/transform/v20180510/DeleteFCTriggerResponseUnmarshaller.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.transform.v20180510;
import com.aliyuncs.cdn.model.v20180510.DeleteFCTriggerResponse;
import com.aliyuncs.transform.UnmarshallerContext;
public class DeleteFCTriggerResponseUnmarshaller {
public static DeleteFCTriggerResponse unmarshall(DeleteFCTriggerResponse deleteFCTriggerResponse, UnmarshallerContext _ctx) {
deleteFCTriggerResponse.setRequestId(_ctx.stringValue("DeleteFCTriggerResponse.RequestId"));
return deleteFCTriggerResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/transform/v20180510/DeleteRealTimeLogLogstoreResponseUnmarshaller.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.transform.v20180510;
import com.aliyuncs.cdn.model.v20180510.DeleteRealTimeLogLogstoreResponse;
import com.aliyuncs.transform.UnmarshallerContext;
public class DeleteRealTimeLogLogstoreResponseUnmarshaller {
public static DeleteRealTimeLogLogstoreResponse unmarshall(DeleteRealTimeLogLogstoreResponse deleteRealTimeLogLogstoreResponse, UnmarshallerContext _ctx) {
deleteRealTimeLogLogstoreResponse.setRequestId(_ctx.stringValue("DeleteRealTimeLogLogstoreResponse.RequestId"));
return deleteRealTimeLogLogstoreResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/transform/v20180510/DeleteRealtimeLogDeliveryResponseUnmarshaller.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.transform.v20180510;
import com.aliyuncs.cdn.model.v20180510.DeleteRealtimeLogDeliveryResponse;
import com.aliyuncs.transform.UnmarshallerContext;
public class DeleteRealtimeLogDeliveryResponseUnmarshaller {
public static DeleteRealtimeLogDeliveryResponse unmarshall(DeleteRealtimeLogDeliveryResponse deleteRealtimeLogDeliveryResponse, UnmarshallerContext _ctx) {
deleteRealtimeLogDeliveryResponse.setRequestId(_ctx.stringValue("DeleteRealtimeLogDeliveryResponse.RequestId"));
return deleteRealtimeLogDeliveryResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/transform/v20180510/DeleteSpecificConfigResponseUnmarshaller.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.transform.v20180510;
import com.aliyuncs.cdn.model.v20180510.DeleteSpecificConfigResponse;
import com.aliyuncs.transform.UnmarshallerContext;
public class DeleteSpecificConfigResponseUnmarshaller {
public static DeleteSpecificConfigResponse unmarshall(DeleteSpecificConfigResponse deleteSpecificConfigResponse, UnmarshallerContext _ctx) {
deleteSpecificConfigResponse.setRequestId(_ctx.stringValue("DeleteSpecificConfigResponse.RequestId"));
return deleteSpecificConfigResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/transform/v20180510/DeleteSpecificStagingConfigResponseUnmarshaller.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.transform.v20180510;
import com.aliyuncs.cdn.model.v20180510.DeleteSpecificStagingConfigResponse;
import com.aliyuncs.transform.UnmarshallerContext;
public class DeleteSpecificStagingConfigResponseUnmarshaller {
public static DeleteSpecificStagingConfigResponse unmarshall(DeleteSpecificStagingConfigResponse deleteSpecificStagingConfigResponse, UnmarshallerContext _ctx) {
deleteSpecificStagingConfigResponse.setRequestId(_ctx.stringValue("DeleteSpecificStagingConfigResponse.RequestId"));
return deleteSpecificStagingConfigResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/transform/v20180510/DeleteUsageDetailDataExportTaskResponseUnmarshaller.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.transform.v20180510;
import com.aliyuncs.cdn.model.v20180510.DeleteUsageDetailDataExportTaskResponse;
import com.aliyuncs.transform.UnmarshallerContext;
public class DeleteUsageDetailDataExportTaskResponseUnmarshaller {
public static DeleteUsageDetailDataExportTaskResponse unmarshall(DeleteUsageDetailDataExportTaskResponse deleteUsageDetailDataExportTaskResponse, UnmarshallerContext _ctx) {
deleteUsageDetailDataExportTaskResponse.setRequestId(_ctx.stringValue("DeleteUsageDetailDataExportTaskResponse.RequestId"));
return deleteUsageDetailDataExportTaskResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/transform/v20180510/DeleteUserUsageDataExportTaskResponseUnmarshaller.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.transform.v20180510;
import com.aliyuncs.cdn.model.v20180510.DeleteUserUsageDataExportTaskResponse;
import com.aliyuncs.transform.UnmarshallerContext;
public class DeleteUserUsageDataExportTaskResponseUnmarshaller {
public static DeleteUserUsageDataExportTaskResponse unmarshall(DeleteUserUsageDataExportTaskResponse deleteUserUsageDataExportTaskResponse, UnmarshallerContext _ctx) {
deleteUserUsageDataExportTaskResponse.setRequestId(_ctx.stringValue("DeleteUserUsageDataExportTaskResponse.RequestId"));
return deleteUserUsageDataExportTaskResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/transform/v20180510/DescribeBlockedRegionsResponseUnmarshaller.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.transform.v20180510;
import java.util.ArrayList;
import java.util.List;
import com.aliyuncs.cdn.model.v20180510.DescribeBlockedRegionsResponse;
import com.aliyuncs.cdn.model.v20180510.DescribeBlockedRegionsResponse.InfoItem;
import com.aliyuncs.transform.UnmarshallerContext;
public class DescribeBlockedRegionsResponseUnmarshaller {
public static DescribeBlockedRegionsResponse unmarshall(DescribeBlockedRegionsResponse describeBlockedRegionsResponse, UnmarshallerContext _ctx) {
describeBlockedRegionsResponse.setRequestId(_ctx.stringValue("DescribeBlockedRegionsResponse.RequestId"));
List<InfoItem> infoList = new ArrayList<InfoItem>();
for (int i = 0; i < _ctx.lengthValue("DescribeBlockedRegionsResponse.InfoList.Length"); i++) {
InfoItem infoItem = new InfoItem();
infoItem.setCountriesAndRegions(_ctx.stringValue("DescribeBlockedRegionsResponse.InfoList["+ i +"].CountriesAndRegions"));
infoItem.setContinent(_ctx.stringValue("DescribeBlockedRegionsResponse.InfoList["+ i +"].Continent"));
infoItem.setCountriesAndRegionsName(_ctx.stringValue("DescribeBlockedRegionsResponse.InfoList["+ i +"].CountriesAndRegionsName"));
infoList.add(infoItem);
}
describeBlockedRegionsResponse.setInfoList(infoList);
return describeBlockedRegionsResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/transform/v20180510/DescribeCdnCertificateDetailResponseUnmarshaller.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.transform.v20180510;
import com.aliyuncs.cdn.model.v20180510.DescribeCdnCertificateDetailResponse;
import com.aliyuncs.transform.UnmarshallerContext;
public class DescribeCdnCertificateDetailResponseUnmarshaller {
public static DescribeCdnCertificateDetailResponse unmarshall(DescribeCdnCertificateDetailResponse describeCdnCertificateDetailResponse, UnmarshallerContext _ctx) {
describeCdnCertificateDetailResponse.setRequestId(_ctx.stringValue("DescribeCdnCertificateDetailResponse.RequestId"));
describeCdnCertificateDetailResponse.setCertName(_ctx.stringValue("DescribeCdnCertificateDetailResponse.CertName"));
describeCdnCertificateDetailResponse.setKey(_ctx.stringValue("DescribeCdnCertificateDetailResponse.Key"));
describeCdnCertificateDetailResponse.setCert(_ctx.stringValue("DescribeCdnCertificateDetailResponse.Cert"));
describeCdnCertificateDetailResponse.setCertId(_ctx.longValue("DescribeCdnCertificateDetailResponse.CertId"));
return describeCdnCertificateDetailResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/transform/v20180510/DescribeCdnCertificateListResponseUnmarshaller.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.transform.v20180510;
import java.util.ArrayList;
import java.util.List;
import com.aliyuncs.cdn.model.v20180510.DescribeCdnCertificateListResponse;
import com.aliyuncs.cdn.model.v20180510.DescribeCdnCertificateListResponse.CertificateListModel;
import com.aliyuncs.cdn.model.v20180510.DescribeCdnCertificateListResponse.CertificateListModel.Cert;
import com.aliyuncs.transform.UnmarshallerContext;
public class DescribeCdnCertificateListResponseUnmarshaller {
public static DescribeCdnCertificateListResponse unmarshall(DescribeCdnCertificateListResponse describeCdnCertificateListResponse, UnmarshallerContext _ctx) {
describeCdnCertificateListResponse.setRequestId(_ctx.stringValue("DescribeCdnCertificateListResponse.RequestId"));
CertificateListModel certificateListModel = new CertificateListModel();
certificateListModel.setCount(_ctx.integerValue("DescribeCdnCertificateListResponse.CertificateListModel.Count"));
List<Cert> certList = new ArrayList<Cert>();
for (int i = 0; i < _ctx.lengthValue("DescribeCdnCertificateListResponse.CertificateListModel.CertList.Length"); i++) {
Cert cert = new Cert();
cert.setLastTime(_ctx.longValue("DescribeCdnCertificateListResponse.CertificateListModel.CertList["+ i +"].LastTime"));
cert.setFingerprint(_ctx.stringValue("DescribeCdnCertificateListResponse.CertificateListModel.CertList["+ i +"].Fingerprint"));
cert.setCertName(_ctx.stringValue("DescribeCdnCertificateListResponse.CertificateListModel.CertList["+ i +"].CertName"));
cert.setIssuer(_ctx.stringValue("DescribeCdnCertificateListResponse.CertificateListModel.CertList["+ i +"].Issuer"));
cert.setCertId(_ctx.longValue("DescribeCdnCertificateListResponse.CertificateListModel.CertList["+ i +"].CertId"));
cert.setCommon(_ctx.stringValue("DescribeCdnCertificateListResponse.CertificateListModel.CertList["+ i +"].Common"));
certList.add(cert);
}
certificateListModel.setCertList(certList);
describeCdnCertificateListResponse.setCertificateListModel(certificateListModel);
return describeCdnCertificateListResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/transform/v20180510/DescribeCdnDeletedDomainsResponseUnmarshaller.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.transform.v20180510;
import java.util.ArrayList;
import java.util.List;
import com.aliyuncs.cdn.model.v20180510.DescribeCdnDeletedDomainsResponse;
import com.aliyuncs.cdn.model.v20180510.DescribeCdnDeletedDomainsResponse.PageData;
import com.aliyuncs.transform.UnmarshallerContext;
public class DescribeCdnDeletedDomainsResponseUnmarshaller {
public static DescribeCdnDeletedDomainsResponse unmarshall(DescribeCdnDeletedDomainsResponse describeCdnDeletedDomainsResponse, UnmarshallerContext _ctx) {
describeCdnDeletedDomainsResponse.setRequestId(_ctx.stringValue("DescribeCdnDeletedDomainsResponse.RequestId"));
describeCdnDeletedDomainsResponse.setPageNumber(_ctx.longValue("DescribeCdnDeletedDomainsResponse.PageNumber"));
describeCdnDeletedDomainsResponse.setPageSize(_ctx.longValue("DescribeCdnDeletedDomainsResponse.PageSize"));
describeCdnDeletedDomainsResponse.setTotalCount(_ctx.longValue("DescribeCdnDeletedDomainsResponse.TotalCount"));
List<PageData> domains = new ArrayList<PageData>();
for (int i = 0; i < _ctx.lengthValue("DescribeCdnDeletedDomainsResponse.Domains.Length"); i++) {
PageData pageData = new PageData();
pageData.setGmtModified(_ctx.stringValue("DescribeCdnDeletedDomainsResponse.Domains["+ i +"].GmtModified"));
pageData.setDomainName(_ctx.stringValue("DescribeCdnDeletedDomainsResponse.Domains["+ i +"].DomainName"));
domains.add(pageData);
}
describeCdnDeletedDomainsResponse.setDomains(domains);
return describeCdnDeletedDomainsResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/transform/v20180510/DescribeCdnDeliverListResponseUnmarshaller.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.transform.v20180510;
import com.aliyuncs.cdn.model.v20180510.DescribeCdnDeliverListResponse;
import com.aliyuncs.transform.UnmarshallerContext;
public class DescribeCdnDeliverListResponseUnmarshaller {
public static DescribeCdnDeliverListResponse unmarshall(DescribeCdnDeliverListResponse describeCdnDeliverListResponse, UnmarshallerContext _ctx) {
describeCdnDeliverListResponse.setRequestId(_ctx.stringValue("DescribeCdnDeliverListResponse.RequestId"));
describeCdnDeliverListResponse.setContent(_ctx.stringValue("DescribeCdnDeliverListResponse.Content"));
return describeCdnDeliverListResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/transform/v20180510/DescribeCdnDomainByCertificateResponseUnmarshaller.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.transform.v20180510;
import java.util.ArrayList;
import java.util.List;
import com.aliyuncs.cdn.model.v20180510.DescribeCdnDomainByCertificateResponse;
import com.aliyuncs.cdn.model.v20180510.DescribeCdnDomainByCertificateResponse.CertInfo;
import com.aliyuncs.transform.UnmarshallerContext;
public class DescribeCdnDomainByCertificateResponseUnmarshaller {
public static DescribeCdnDomainByCertificateResponse unmarshall(DescribeCdnDomainByCertificateResponse describeCdnDomainByCertificateResponse, UnmarshallerContext _ctx) {
describeCdnDomainByCertificateResponse.setRequestId(_ctx.stringValue("DescribeCdnDomainByCertificateResponse.RequestId"));
List<CertInfo> certInfos = new ArrayList<CertInfo>();
for (int i = 0; i < _ctx.lengthValue("DescribeCdnDomainByCertificateResponse.CertInfos.Length"); i++) {
CertInfo certInfo = new CertInfo();
certInfo.setCertStartTime(_ctx.stringValue("DescribeCdnDomainByCertificateResponse.CertInfos["+ i +"].CertStartTime"));
certInfo.setCertExpireTime(_ctx.stringValue("DescribeCdnDomainByCertificateResponse.CertInfos["+ i +"].CertExpireTime"));
certInfo.setCertCaIsLegacy(_ctx.stringValue("DescribeCdnDomainByCertificateResponse.CertInfos["+ i +"].CertCaIsLegacy"));
certInfo.setCertSubjectCommonName(_ctx.stringValue("DescribeCdnDomainByCertificateResponse.CertInfos["+ i +"].CertSubjectCommonName"));
certInfo.setCertType(_ctx.stringValue("DescribeCdnDomainByCertificateResponse.CertInfos["+ i +"].CertType"));
certInfo.setDomainNames(_ctx.stringValue("DescribeCdnDomainByCertificateResponse.CertInfos["+ i +"].DomainNames"));
certInfo.setCertExpired(_ctx.stringValue("DescribeCdnDomainByCertificateResponse.CertInfos["+ i +"].CertExpired"));
certInfo.setIssuer(_ctx.stringValue("DescribeCdnDomainByCertificateResponse.CertInfos["+ i +"].Issuer"));
certInfo.setDomainList(_ctx.stringValue("DescribeCdnDomainByCertificateResponse.CertInfos["+ i +"].DomainList"));
certInfos.add(certInfo);
}
describeCdnDomainByCertificateResponse.setCertInfos(certInfos);
return describeCdnDomainByCertificateResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/transform/v20180510/DescribeCdnDomainConfigsResponseUnmarshaller.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.transform.v20180510;
import java.util.ArrayList;
import java.util.List;
import com.aliyuncs.cdn.model.v20180510.DescribeCdnDomainConfigsResponse;
import com.aliyuncs.cdn.model.v20180510.DescribeCdnDomainConfigsResponse.DomainConfig;
import com.aliyuncs.cdn.model.v20180510.DescribeCdnDomainConfigsResponse.DomainConfig.FunctionArg;
import com.aliyuncs.transform.UnmarshallerContext;
public class DescribeCdnDomainConfigsResponseUnmarshaller {
public static DescribeCdnDomainConfigsResponse unmarshall(DescribeCdnDomainConfigsResponse describeCdnDomainConfigsResponse, UnmarshallerContext _ctx) {
describeCdnDomainConfigsResponse.setRequestId(_ctx.stringValue("DescribeCdnDomainConfigsResponse.RequestId"));
List<DomainConfig> domainConfigs = new ArrayList<DomainConfig>();
for (int i = 0; i < _ctx.lengthValue("DescribeCdnDomainConfigsResponse.DomainConfigs.Length"); i++) {
DomainConfig domainConfig = new DomainConfig();
domainConfig.setStatus(_ctx.stringValue("DescribeCdnDomainConfigsResponse.DomainConfigs["+ i +"].Status"));
domainConfig.setParentId(_ctx.stringValue("DescribeCdnDomainConfigsResponse.DomainConfigs["+ i +"].ParentId"));
domainConfig.setConfigId(_ctx.stringValue("DescribeCdnDomainConfigsResponse.DomainConfigs["+ i +"].ConfigId"));
domainConfig.setFunctionName(_ctx.stringValue("DescribeCdnDomainConfigsResponse.DomainConfigs["+ i +"].FunctionName"));
List<FunctionArg> functionArgs = new ArrayList<FunctionArg>();
for (int j = 0; j < _ctx.lengthValue("DescribeCdnDomainConfigsResponse.DomainConfigs["+ i +"].FunctionArgs.Length"); j++) {
FunctionArg functionArg = new FunctionArg();
functionArg.setArgName(_ctx.stringValue("DescribeCdnDomainConfigsResponse.DomainConfigs["+ i +"].FunctionArgs["+ j +"].ArgName"));
functionArg.setArgValue(_ctx.stringValue("DescribeCdnDomainConfigsResponse.DomainConfigs["+ i +"].FunctionArgs["+ j +"].ArgValue"));
functionArgs.add(functionArg);
}
domainConfig.setFunctionArgs(functionArgs);
domainConfigs.add(domainConfig);
}
describeCdnDomainConfigsResponse.setDomainConfigs(domainConfigs);
return describeCdnDomainConfigsResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/transform/v20180510/DescribeCdnDomainDetailResponseUnmarshaller.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.transform.v20180510;
import java.util.ArrayList;
import java.util.List;
import com.aliyuncs.cdn.model.v20180510.DescribeCdnDomainDetailResponse;
import com.aliyuncs.cdn.model.v20180510.DescribeCdnDomainDetailResponse.GetDomainDetailModel;
import com.aliyuncs.cdn.model.v20180510.DescribeCdnDomainDetailResponse.GetDomainDetailModel.SourceModel;
import com.aliyuncs.transform.UnmarshallerContext;
public class DescribeCdnDomainDetailResponseUnmarshaller {
public static DescribeCdnDomainDetailResponse unmarshall(DescribeCdnDomainDetailResponse describeCdnDomainDetailResponse, UnmarshallerContext _ctx) {
describeCdnDomainDetailResponse.setRequestId(_ctx.stringValue("DescribeCdnDomainDetailResponse.RequestId"));
GetDomainDetailModel getDomainDetailModel = new GetDomainDetailModel();
getDomainDetailModel.setGmtCreated(_ctx.stringValue("DescribeCdnDomainDetailResponse.GetDomainDetailModel.GmtCreated"));
getDomainDetailModel.setDescription(_ctx.stringValue("DescribeCdnDomainDetailResponse.GetDomainDetailModel.Description"));
getDomainDetailModel.setHttpsCname(_ctx.stringValue("DescribeCdnDomainDetailResponse.GetDomainDetailModel.HttpsCname"));
getDomainDetailModel.setResourceGroupId(_ctx.stringValue("DescribeCdnDomainDetailResponse.GetDomainDetailModel.ResourceGroupId"));
getDomainDetailModel.setServerCertificateStatus(_ctx.stringValue("DescribeCdnDomainDetailResponse.GetDomainDetailModel.ServerCertificateStatus"));
getDomainDetailModel.setScope(_ctx.stringValue("DescribeCdnDomainDetailResponse.GetDomainDetailModel.Scope"));
getDomainDetailModel.setDomainStatus(_ctx.stringValue("DescribeCdnDomainDetailResponse.GetDomainDetailModel.DomainStatus"));
getDomainDetailModel.setCname(_ctx.stringValue("DescribeCdnDomainDetailResponse.GetDomainDetailModel.Cname"));
getDomainDetailModel.setGmtModified(_ctx.stringValue("DescribeCdnDomainDetailResponse.GetDomainDetailModel.GmtModified"));
getDomainDetailModel.setCdnType(_ctx.stringValue("DescribeCdnDomainDetailResponse.GetDomainDetailModel.CdnType"));
getDomainDetailModel.setDomainName(_ctx.stringValue("DescribeCdnDomainDetailResponse.GetDomainDetailModel.DomainName"));
List<SourceModel> sourceModels = new ArrayList<SourceModel>();
for (int i = 0; i < _ctx.lengthValue("DescribeCdnDomainDetailResponse.GetDomainDetailModel.SourceModels.Length"); i++) {
SourceModel sourceModel = new SourceModel();
sourceModel.setType(_ctx.stringValue("DescribeCdnDomainDetailResponse.GetDomainDetailModel.SourceModels["+ i +"].Type"));
sourceModel.setWeight(_ctx.stringValue("DescribeCdnDomainDetailResponse.GetDomainDetailModel.SourceModels["+ i +"].Weight"));
sourceModel.setEnabled(_ctx.stringValue("DescribeCdnDomainDetailResponse.GetDomainDetailModel.SourceModels["+ i +"].Enabled"));
sourceModel.setPriority(_ctx.stringValue("DescribeCdnDomainDetailResponse.GetDomainDetailModel.SourceModels["+ i +"].Priority"));
sourceModel.setPort(_ctx.integerValue("DescribeCdnDomainDetailResponse.GetDomainDetailModel.SourceModels["+ i +"].Port"));
sourceModel.setContent(_ctx.stringValue("DescribeCdnDomainDetailResponse.GetDomainDetailModel.SourceModels["+ i +"].Content"));
sourceModels.add(sourceModel);
}
getDomainDetailModel.setSourceModels(sourceModels);
describeCdnDomainDetailResponse.setGetDomainDetailModel(getDomainDetailModel);
return describeCdnDomainDetailResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/transform/v20180510/DescribeCdnDomainLogsResponseUnmarshaller.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.transform.v20180510;
import java.util.ArrayList;
import java.util.List;
import com.aliyuncs.cdn.model.v20180510.DescribeCdnDomainLogsResponse;
import com.aliyuncs.cdn.model.v20180510.DescribeCdnDomainLogsResponse.DomainLogDetail;
import com.aliyuncs.cdn.model.v20180510.DescribeCdnDomainLogsResponse.DomainLogDetail.LogInfoDetail;
import com.aliyuncs.cdn.model.v20180510.DescribeCdnDomainLogsResponse.DomainLogDetail.PageInfos;
import com.aliyuncs.transform.UnmarshallerContext;
public class DescribeCdnDomainLogsResponseUnmarshaller {
public static DescribeCdnDomainLogsResponse unmarshall(DescribeCdnDomainLogsResponse describeCdnDomainLogsResponse, UnmarshallerContext _ctx) {
describeCdnDomainLogsResponse.setRequestId(_ctx.stringValue("DescribeCdnDomainLogsResponse.RequestId"));
List<DomainLogDetail> domainLogDetails = new ArrayList<DomainLogDetail>();
for (int i = 0; i < _ctx.lengthValue("DescribeCdnDomainLogsResponse.DomainLogDetails.Length"); i++) {
DomainLogDetail domainLogDetail = new DomainLogDetail();
domainLogDetail.setLogCount(_ctx.longValue("DescribeCdnDomainLogsResponse.DomainLogDetails["+ i +"].LogCount"));
domainLogDetail.setDomainName(_ctx.stringValue("DescribeCdnDomainLogsResponse.DomainLogDetails["+ i +"].DomainName"));
PageInfos pageInfos = new PageInfos();
pageInfos.setPageIndex(_ctx.longValue("DescribeCdnDomainLogsResponse.DomainLogDetails["+ i +"].PageInfos.PageIndex"));
pageInfos.setPageSize(_ctx.longValue("DescribeCdnDomainLogsResponse.DomainLogDetails["+ i +"].PageInfos.PageSize"));
pageInfos.setTotal(_ctx.longValue("DescribeCdnDomainLogsResponse.DomainLogDetails["+ i +"].PageInfos.Total"));
domainLogDetail.setPageInfos(pageInfos);
List<LogInfoDetail> logInfos = new ArrayList<LogInfoDetail>();
for (int j = 0; j < _ctx.lengthValue("DescribeCdnDomainLogsResponse.DomainLogDetails["+ i +"].LogInfos.Length"); j++) {
LogInfoDetail logInfoDetail = new LogInfoDetail();
logInfoDetail.setEndTime(_ctx.stringValue("DescribeCdnDomainLogsResponse.DomainLogDetails["+ i +"].LogInfos["+ j +"].EndTime"));
logInfoDetail.setLogSize(_ctx.longValue("DescribeCdnDomainLogsResponse.DomainLogDetails["+ i +"].LogInfos["+ j +"].LogSize"));
logInfoDetail.setStartTime(_ctx.stringValue("DescribeCdnDomainLogsResponse.DomainLogDetails["+ i +"].LogInfos["+ j +"].StartTime"));
logInfoDetail.setLogName(_ctx.stringValue("DescribeCdnDomainLogsResponse.DomainLogDetails["+ i +"].LogInfos["+ j +"].LogName"));
logInfoDetail.setLogPath(_ctx.stringValue("DescribeCdnDomainLogsResponse.DomainLogDetails["+ i +"].LogInfos["+ j +"].LogPath"));
logInfos.add(logInfoDetail);
}
domainLogDetail.setLogInfos(logInfos);
domainLogDetails.add(domainLogDetail);
}
describeCdnDomainLogsResponse.setDomainLogDetails(domainLogDetails);
return describeCdnDomainLogsResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/transform/v20180510/DescribeCdnDomainStagingConfigResponseUnmarshaller.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.transform.v20180510;
import java.util.ArrayList;
import java.util.List;
import com.aliyuncs.cdn.model.v20180510.DescribeCdnDomainStagingConfigResponse;
import com.aliyuncs.cdn.model.v20180510.DescribeCdnDomainStagingConfigResponse.DomainConfig;
import com.aliyuncs.cdn.model.v20180510.DescribeCdnDomainStagingConfigResponse.DomainConfig.FunctionArg;
import com.aliyuncs.transform.UnmarshallerContext;
public class DescribeCdnDomainStagingConfigResponseUnmarshaller {
public static DescribeCdnDomainStagingConfigResponse unmarshall(DescribeCdnDomainStagingConfigResponse describeCdnDomainStagingConfigResponse, UnmarshallerContext _ctx) {
describeCdnDomainStagingConfigResponse.setRequestId(_ctx.stringValue("DescribeCdnDomainStagingConfigResponse.RequestId"));
describeCdnDomainStagingConfigResponse.setDomainName(_ctx.stringValue("DescribeCdnDomainStagingConfigResponse.DomainName"));
List<DomainConfig> domainConfigs = new ArrayList<DomainConfig>();
for (int i = 0; i < _ctx.lengthValue("DescribeCdnDomainStagingConfigResponse.DomainConfigs.Length"); i++) {
DomainConfig domainConfig = new DomainConfig();
domainConfig.setStatus(_ctx.stringValue("DescribeCdnDomainStagingConfigResponse.DomainConfigs["+ i +"].Status"));
domainConfig.setParentId(_ctx.stringValue("DescribeCdnDomainStagingConfigResponse.DomainConfigs["+ i +"].ParentId"));
domainConfig.setConfigId(_ctx.stringValue("DescribeCdnDomainStagingConfigResponse.DomainConfigs["+ i +"].ConfigId"));
domainConfig.setFunctionName(_ctx.stringValue("DescribeCdnDomainStagingConfigResponse.DomainConfigs["+ i +"].FunctionName"));
List<FunctionArg> functionArgs = new ArrayList<FunctionArg>();
for (int j = 0; j < _ctx.lengthValue("DescribeCdnDomainStagingConfigResponse.DomainConfigs["+ i +"].FunctionArgs.Length"); j++) {
FunctionArg functionArg = new FunctionArg();
functionArg.setArgName(_ctx.stringValue("DescribeCdnDomainStagingConfigResponse.DomainConfigs["+ i +"].FunctionArgs["+ j +"].ArgName"));
functionArg.setArgValue(_ctx.stringValue("DescribeCdnDomainStagingConfigResponse.DomainConfigs["+ i +"].FunctionArgs["+ j +"].ArgValue"));
functionArgs.add(functionArg);
}
domainConfig.setFunctionArgs(functionArgs);
domainConfigs.add(domainConfig);
}
describeCdnDomainStagingConfigResponse.setDomainConfigs(domainConfigs);
return describeCdnDomainStagingConfigResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/transform/v20180510/DescribeCdnHttpsDomainListResponseUnmarshaller.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.transform.v20180510;
import java.util.ArrayList;
import java.util.List;
import com.aliyuncs.cdn.model.v20180510.DescribeCdnHttpsDomainListResponse;
import com.aliyuncs.cdn.model.v20180510.DescribeCdnHttpsDomainListResponse.CertInfo;
import com.aliyuncs.transform.UnmarshallerContext;
public class DescribeCdnHttpsDomainListResponseUnmarshaller {
public static DescribeCdnHttpsDomainListResponse unmarshall(DescribeCdnHttpsDomainListResponse describeCdnHttpsDomainListResponse, UnmarshallerContext _ctx) {
describeCdnHttpsDomainListResponse.setRequestId(_ctx.stringValue("DescribeCdnHttpsDomainListResponse.RequestId"));
describeCdnHttpsDomainListResponse.setTotalCount(_ctx.integerValue("DescribeCdnHttpsDomainListResponse.TotalCount"));
List<CertInfo> certInfos = new ArrayList<CertInfo>();
for (int i = 0; i < _ctx.lengthValue("DescribeCdnHttpsDomainListResponse.CertInfos.Length"); i++) {
CertInfo certInfo = new CertInfo();
certInfo.setCertStartTime(_ctx.stringValue("DescribeCdnHttpsDomainListResponse.CertInfos["+ i +"].CertStartTime"));
certInfo.setCertExpireTime(_ctx.stringValue("DescribeCdnHttpsDomainListResponse.CertInfos["+ i +"].CertExpireTime"));
certInfo.setCertUpdateTime(_ctx.stringValue("DescribeCdnHttpsDomainListResponse.CertInfos["+ i +"].CertUpdateTime"));
certInfo.setCertType(_ctx.stringValue("DescribeCdnHttpsDomainListResponse.CertInfos["+ i +"].CertType"));
certInfo.setCertName(_ctx.stringValue("DescribeCdnHttpsDomainListResponse.CertInfos["+ i +"].CertName"));
certInfo.setCertStatus(_ctx.stringValue("DescribeCdnHttpsDomainListResponse.CertInfos["+ i +"].CertStatus"));
certInfo.setDomainName(_ctx.stringValue("DescribeCdnHttpsDomainListResponse.CertInfos["+ i +"].DomainName"));
certInfo.setCertCommonName(_ctx.stringValue("DescribeCdnHttpsDomainListResponse.CertInfos["+ i +"].CertCommonName"));
certInfos.add(certInfo);
}
describeCdnHttpsDomainListResponse.setCertInfos(certInfos);
return describeCdnHttpsDomainListResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/transform/v20180510/DescribeCdnOrderCommodityCodeResponseUnmarshaller.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.transform.v20180510;
import com.aliyuncs.cdn.model.v20180510.DescribeCdnOrderCommodityCodeResponse;
import com.aliyuncs.transform.UnmarshallerContext;
public class DescribeCdnOrderCommodityCodeResponseUnmarshaller {
public static DescribeCdnOrderCommodityCodeResponse unmarshall(DescribeCdnOrderCommodityCodeResponse describeCdnOrderCommodityCodeResponse, UnmarshallerContext _ctx) {
describeCdnOrderCommodityCodeResponse.setRequestId(_ctx.stringValue("DescribeCdnOrderCommodityCodeResponse.RequestId"));
describeCdnOrderCommodityCodeResponse.setOrderCommodityCode(_ctx.stringValue("DescribeCdnOrderCommodityCodeResponse.OrderCommodityCode"));
return describeCdnOrderCommodityCodeResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/transform/v20180510/DescribeCdnRegionAndIspResponseUnmarshaller.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.transform.v20180510;
import java.util.ArrayList;
import java.util.List;
import com.aliyuncs.cdn.model.v20180510.DescribeCdnRegionAndIspResponse;
import com.aliyuncs.cdn.model.v20180510.DescribeCdnRegionAndIspResponse.Isp;
import com.aliyuncs.cdn.model.v20180510.DescribeCdnRegionAndIspResponse.Region;
import com.aliyuncs.transform.UnmarshallerContext;
public class DescribeCdnRegionAndIspResponseUnmarshaller {
public static DescribeCdnRegionAndIspResponse unmarshall(DescribeCdnRegionAndIspResponse describeCdnRegionAndIspResponse, UnmarshallerContext _ctx) {
describeCdnRegionAndIspResponse.setRequestId(_ctx.stringValue("DescribeCdnRegionAndIspResponse.RequestId"));
List<Region> regions = new ArrayList<Region>();
for (int i = 0; i < _ctx.lengthValue("DescribeCdnRegionAndIspResponse.Regions.Length"); i++) {
Region region = new Region();
region.setNameEn(_ctx.stringValue("DescribeCdnRegionAndIspResponse.Regions["+ i +"].NameEn"));
region.setNameZh(_ctx.stringValue("DescribeCdnRegionAndIspResponse.Regions["+ i +"].NameZh"));
regions.add(region);
}
describeCdnRegionAndIspResponse.setRegions(regions);
List<Isp> isps = new ArrayList<Isp>();
for (int i = 0; i < _ctx.lengthValue("DescribeCdnRegionAndIspResponse.Isps.Length"); i++) {
Isp isp = new Isp();
isp.setNameEn(_ctx.stringValue("DescribeCdnRegionAndIspResponse.Isps["+ i +"].NameEn"));
isp.setNameZh(_ctx.stringValue("DescribeCdnRegionAndIspResponse.Isps["+ i +"].NameZh"));
isps.add(isp);
}
describeCdnRegionAndIspResponse.setIsps(isps);
return describeCdnRegionAndIspResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/transform/v20180510/DescribeCdnReportListResponseUnmarshaller.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.transform.v20180510;
import com.aliyuncs.cdn.model.v20180510.DescribeCdnReportListResponse;
import com.aliyuncs.transform.UnmarshallerContext;
public class DescribeCdnReportListResponseUnmarshaller {
public static DescribeCdnReportListResponse unmarshall(DescribeCdnReportListResponse describeCdnReportListResponse, UnmarshallerContext _ctx) {
describeCdnReportListResponse.setRequestId(_ctx.stringValue("DescribeCdnReportListResponse.RequestId"));
describeCdnReportListResponse.setContent(_ctx.stringValue("DescribeCdnReportListResponse.Content"));
return describeCdnReportListResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/transform/v20180510/DescribeCdnReportResponseUnmarshaller.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.transform.v20180510;
import com.aliyuncs.cdn.model.v20180510.DescribeCdnReportResponse;
import java.util.Map;
import com.aliyuncs.transform.UnmarshallerContext;
public class DescribeCdnReportResponseUnmarshaller {
public static DescribeCdnReportResponse unmarshall(DescribeCdnReportResponse describeCdnReportResponse, UnmarshallerContext _ctx) {
describeCdnReportResponse.setRequestId(_ctx.stringValue("DescribeCdnReportResponse.RequestId"));
describeCdnReportResponse.setContent(_ctx.mapValue("DescribeCdnReportResponse.Content"));
return describeCdnReportResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/transform/v20180510/DescribeCdnSMCertificateDetailResponseUnmarshaller.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.transform.v20180510;
import com.aliyuncs.cdn.model.v20180510.DescribeCdnSMCertificateDetailResponse;
import com.aliyuncs.transform.UnmarshallerContext;
public class DescribeCdnSMCertificateDetailResponseUnmarshaller {
public static DescribeCdnSMCertificateDetailResponse unmarshall(DescribeCdnSMCertificateDetailResponse describeCdnSMCertificateDetailResponse, UnmarshallerContext _ctx) {
describeCdnSMCertificateDetailResponse.setRequestId(_ctx.stringValue("DescribeCdnSMCertificateDetailResponse.RequestId"));
describeCdnSMCertificateDetailResponse.setCertExpireTime(_ctx.stringValue("DescribeCdnSMCertificateDetailResponse.CertExpireTime"));
describeCdnSMCertificateDetailResponse.setCertIdentifier(_ctx.stringValue("DescribeCdnSMCertificateDetailResponse.CertIdentifier"));
describeCdnSMCertificateDetailResponse.setCommonName(_ctx.stringValue("DescribeCdnSMCertificateDetailResponse.CommonName"));
describeCdnSMCertificateDetailResponse.setCertName(_ctx.stringValue("DescribeCdnSMCertificateDetailResponse.CertName"));
describeCdnSMCertificateDetailResponse.setSans(_ctx.stringValue("DescribeCdnSMCertificateDetailResponse.Sans"));
describeCdnSMCertificateDetailResponse.setSignCertificate(_ctx.stringValue("DescribeCdnSMCertificateDetailResponse.SignCertificate"));
describeCdnSMCertificateDetailResponse.setCertOrg(_ctx.stringValue("DescribeCdnSMCertificateDetailResponse.CertOrg"));
describeCdnSMCertificateDetailResponse.setEncryptCertificate(_ctx.stringValue("DescribeCdnSMCertificateDetailResponse.EncryptCertificate"));
return describeCdnSMCertificateDetailResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/transform/v20180510/DescribeCdnSMCertificateListResponseUnmarshaller.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.transform.v20180510;
import java.util.ArrayList;
import java.util.List;
import com.aliyuncs.cdn.model.v20180510.DescribeCdnSMCertificateListResponse;
import com.aliyuncs.cdn.model.v20180510.DescribeCdnSMCertificateListResponse.CertificateListModel;
import com.aliyuncs.cdn.model.v20180510.DescribeCdnSMCertificateListResponse.CertificateListModel.Cert;
import com.aliyuncs.transform.UnmarshallerContext;
public class DescribeCdnSMCertificateListResponseUnmarshaller {
public static DescribeCdnSMCertificateListResponse unmarshall(DescribeCdnSMCertificateListResponse describeCdnSMCertificateListResponse, UnmarshallerContext _ctx) {
describeCdnSMCertificateListResponse.setRequestId(_ctx.stringValue("DescribeCdnSMCertificateListResponse.RequestId"));
CertificateListModel certificateListModel = new CertificateListModel();
certificateListModel.setCount(_ctx.integerValue("DescribeCdnSMCertificateListResponse.CertificateListModel.Count"));
List<Cert> certList = new ArrayList<Cert>();
for (int i = 0; i < _ctx.lengthValue("DescribeCdnSMCertificateListResponse.CertificateListModel.CertList.Length"); i++) {
Cert cert = new Cert();
cert.setCertName(_ctx.stringValue("DescribeCdnSMCertificateListResponse.CertificateListModel.CertList["+ i +"].CertName"));
cert.setIssuer(_ctx.stringValue("DescribeCdnSMCertificateListResponse.CertificateListModel.CertList["+ i +"].Issuer"));
cert.setCertIdentifier(_ctx.stringValue("DescribeCdnSMCertificateListResponse.CertificateListModel.CertList["+ i +"].CertIdentifier"));
cert.setCommon(_ctx.stringValue("DescribeCdnSMCertificateListResponse.CertificateListModel.CertList["+ i +"].Common"));
certList.add(cert);
}
certificateListModel.setCertList(certList);
describeCdnSMCertificateListResponse.setCertificateListModel(certificateListModel);
return describeCdnSMCertificateListResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/transform/v20180510/DescribeCdnServiceResponseUnmarshaller.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.transform.v20180510;
import java.util.ArrayList;
import java.util.List;
import com.aliyuncs.cdn.model.v20180510.DescribeCdnServiceResponse;
import com.aliyuncs.cdn.model.v20180510.DescribeCdnServiceResponse.LockReason;
import com.aliyuncs.transform.UnmarshallerContext;
public class DescribeCdnServiceResponseUnmarshaller {
public static DescribeCdnServiceResponse unmarshall(DescribeCdnServiceResponse describeCdnServiceResponse, UnmarshallerContext _ctx) {
describeCdnServiceResponse.setRequestId(_ctx.stringValue("DescribeCdnServiceResponse.RequestId"));
describeCdnServiceResponse.setChangingAffectTime(_ctx.stringValue("DescribeCdnServiceResponse.ChangingAffectTime"));
describeCdnServiceResponse.setChangingChargeType(_ctx.stringValue("DescribeCdnServiceResponse.ChangingChargeType"));
describeCdnServiceResponse.setOpeningTime(_ctx.stringValue("DescribeCdnServiceResponse.OpeningTime"));
describeCdnServiceResponse.setInternetChargeType(_ctx.stringValue("DescribeCdnServiceResponse.InternetChargeType"));
describeCdnServiceResponse.setInstanceId(_ctx.stringValue("DescribeCdnServiceResponse.InstanceId"));
List<LockReason> operationLocks = new ArrayList<LockReason>();
for (int i = 0; i < _ctx.lengthValue("DescribeCdnServiceResponse.OperationLocks.Length"); i++) {
LockReason lockReason = new LockReason();
lockReason.setLockReason(_ctx.stringValue("DescribeCdnServiceResponse.OperationLocks["+ i +"].LockReason"));
operationLocks.add(lockReason);
}
describeCdnServiceResponse.setOperationLocks(operationLocks);
return describeCdnServiceResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/transform/v20180510/DescribeCdnSubListResponseUnmarshaller.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.transform.v20180510;
import com.aliyuncs.cdn.model.v20180510.DescribeCdnSubListResponse;
import com.aliyuncs.transform.UnmarshallerContext;
public class DescribeCdnSubListResponseUnmarshaller {
public static DescribeCdnSubListResponse unmarshall(DescribeCdnSubListResponse describeCdnSubListResponse, UnmarshallerContext _ctx) {
describeCdnSubListResponse.setRequestId(_ctx.stringValue("DescribeCdnSubListResponse.RequestId"));
describeCdnSubListResponse.setContent(_ctx.stringValue("DescribeCdnSubListResponse.Content"));
return describeCdnSubListResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/transform/v20180510/DescribeCdnUserBillHistoryResponseUnmarshaller.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.transform.v20180510;
import java.util.ArrayList;
import java.util.List;
import com.aliyuncs.cdn.model.v20180510.DescribeCdnUserBillHistoryResponse;
import com.aliyuncs.cdn.model.v20180510.DescribeCdnUserBillHistoryResponse.BillHistoryDataItem;
import com.aliyuncs.cdn.model.v20180510.DescribeCdnUserBillHistoryResponse.BillHistoryDataItem.BillingDataItem;
import com.aliyuncs.transform.UnmarshallerContext;
public class DescribeCdnUserBillHistoryResponseUnmarshaller {
public static DescribeCdnUserBillHistoryResponse unmarshall(DescribeCdnUserBillHistoryResponse describeCdnUserBillHistoryResponse, UnmarshallerContext _ctx) {
describeCdnUserBillHistoryResponse.setRequestId(_ctx.stringValue("DescribeCdnUserBillHistoryResponse.RequestId"));
List<BillHistoryDataItem> billHistoryData = new ArrayList<BillHistoryDataItem>();
for (int i = 0; i < _ctx.lengthValue("DescribeCdnUserBillHistoryResponse.BillHistoryData.Length"); i++) {
BillHistoryDataItem billHistoryDataItem = new BillHistoryDataItem();
billHistoryDataItem.setDimension(_ctx.stringValue("DescribeCdnUserBillHistoryResponse.BillHistoryData["+ i +"].Dimension"));
billHistoryDataItem.setBillType(_ctx.stringValue("DescribeCdnUserBillHistoryResponse.BillHistoryData["+ i +"].BillType"));
billHistoryDataItem.setBillTime(_ctx.stringValue("DescribeCdnUserBillHistoryResponse.BillHistoryData["+ i +"].BillTime"));
List<BillingDataItem> billingData = new ArrayList<BillingDataItem>();
for (int j = 0; j < _ctx.lengthValue("DescribeCdnUserBillHistoryResponse.BillHistoryData["+ i +"].BillingData.Length"); j++) {
BillingDataItem billingDataItem = new BillingDataItem();
billingDataItem.setFlow(_ctx.floatValue("DescribeCdnUserBillHistoryResponse.BillHistoryData["+ i +"].BillingData["+ j +"].Flow"));
billingDataItem.setBandwidth(_ctx.floatValue("DescribeCdnUserBillHistoryResponse.BillHistoryData["+ i +"].BillingData["+ j +"].Bandwidth"));
billingDataItem.setCount(_ctx.floatValue("DescribeCdnUserBillHistoryResponse.BillHistoryData["+ i +"].BillingData["+ j +"].Count"));
billingDataItem.setCdnRegion(_ctx.stringValue("DescribeCdnUserBillHistoryResponse.BillHistoryData["+ i +"].BillingData["+ j +"].CdnRegion"));
billingDataItem.setChargeType(_ctx.stringValue("DescribeCdnUserBillHistoryResponse.BillHistoryData["+ i +"].BillingData["+ j +"].ChargeType"));
billingData.add(billingDataItem);
}
billHistoryDataItem.setBillingData(billingData);
billHistoryData.add(billHistoryDataItem);
}
describeCdnUserBillHistoryResponse.setBillHistoryData(billHistoryData);
return describeCdnUserBillHistoryResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/transform/v20180510/DescribeCdnUserBillPredictionResponseUnmarshaller.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.transform.v20180510;
import java.util.ArrayList;
import java.util.List;
import com.aliyuncs.cdn.model.v20180510.DescribeCdnUserBillPredictionResponse;
import com.aliyuncs.cdn.model.v20180510.DescribeCdnUserBillPredictionResponse.BillPredictionDataItem;
import com.aliyuncs.transform.UnmarshallerContext;
public class DescribeCdnUserBillPredictionResponseUnmarshaller {
public static DescribeCdnUserBillPredictionResponse unmarshall(DescribeCdnUserBillPredictionResponse describeCdnUserBillPredictionResponse, UnmarshallerContext _ctx) {
describeCdnUserBillPredictionResponse.setRequestId(_ctx.stringValue("DescribeCdnUserBillPredictionResponse.RequestId"));
describeCdnUserBillPredictionResponse.setEndTime(_ctx.stringValue("DescribeCdnUserBillPredictionResponse.EndTime"));
describeCdnUserBillPredictionResponse.setStartTime(_ctx.stringValue("DescribeCdnUserBillPredictionResponse.StartTime"));
describeCdnUserBillPredictionResponse.setBillType(_ctx.stringValue("DescribeCdnUserBillPredictionResponse.BillType"));
List<BillPredictionDataItem> billPredictionData = new ArrayList<BillPredictionDataItem>();
for (int i = 0; i < _ctx.lengthValue("DescribeCdnUserBillPredictionResponse.BillPredictionData.Length"); i++) {
BillPredictionDataItem billPredictionDataItem = new BillPredictionDataItem();
billPredictionDataItem.setValue(_ctx.floatValue("DescribeCdnUserBillPredictionResponse.BillPredictionData["+ i +"].Value"));
billPredictionDataItem.setTimeStp(_ctx.stringValue("DescribeCdnUserBillPredictionResponse.BillPredictionData["+ i +"].TimeStp"));
billPredictionDataItem.setArea(_ctx.stringValue("DescribeCdnUserBillPredictionResponse.BillPredictionData["+ i +"].Area"));
billPredictionData.add(billPredictionDataItem);
}
describeCdnUserBillPredictionResponse.setBillPredictionData(billPredictionData);
return describeCdnUserBillPredictionResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/transform/v20180510/DescribeCdnUserBillTypeResponseUnmarshaller.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.transform.v20180510;
import java.util.ArrayList;
import java.util.List;
import com.aliyuncs.cdn.model.v20180510.DescribeCdnUserBillTypeResponse;
import com.aliyuncs.cdn.model.v20180510.DescribeCdnUserBillTypeResponse.BillTypeDataItem;
import com.aliyuncs.transform.UnmarshallerContext;
public class DescribeCdnUserBillTypeResponseUnmarshaller {
public static DescribeCdnUserBillTypeResponse unmarshall(DescribeCdnUserBillTypeResponse describeCdnUserBillTypeResponse, UnmarshallerContext _ctx) {
describeCdnUserBillTypeResponse.setRequestId(_ctx.stringValue("DescribeCdnUserBillTypeResponse.RequestId"));
List<BillTypeDataItem> billTypeData = new ArrayList<BillTypeDataItem>();
for (int i = 0; i < _ctx.lengthValue("DescribeCdnUserBillTypeResponse.BillTypeData.Length"); i++) {
BillTypeDataItem billTypeDataItem = new BillTypeDataItem();
billTypeDataItem.setEndTime(_ctx.stringValue("DescribeCdnUserBillTypeResponse.BillTypeData["+ i +"].EndTime"));
billTypeDataItem.setStartTime(_ctx.stringValue("DescribeCdnUserBillTypeResponse.BillTypeData["+ i +"].StartTime"));
billTypeDataItem.setBillingCycle(_ctx.stringValue("DescribeCdnUserBillTypeResponse.BillTypeData["+ i +"].BillingCycle"));
billTypeDataItem.setProduct(_ctx.stringValue("DescribeCdnUserBillTypeResponse.BillTypeData["+ i +"].Product"));
billTypeDataItem.setBillType(_ctx.stringValue("DescribeCdnUserBillTypeResponse.BillTypeData["+ i +"].BillType"));
billTypeDataItem.setDimension(_ctx.stringValue("DescribeCdnUserBillTypeResponse.BillTypeData["+ i +"].Dimension"));
billTypeData.add(billTypeDataItem);
}
describeCdnUserBillTypeResponse.setBillTypeData(billTypeData);
return describeCdnUserBillTypeResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/transform/v20180510/DescribeCdnUserConfigsResponseUnmarshaller.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.transform.v20180510;
import java.util.ArrayList;
import java.util.List;
import com.aliyuncs.cdn.model.v20180510.DescribeCdnUserConfigsResponse;
import com.aliyuncs.cdn.model.v20180510.DescribeCdnUserConfigsResponse.Config;
import com.aliyuncs.transform.UnmarshallerContext;
public class DescribeCdnUserConfigsResponseUnmarshaller {
public static DescribeCdnUserConfigsResponse unmarshall(DescribeCdnUserConfigsResponse describeCdnUserConfigsResponse, UnmarshallerContext _ctx) {
describeCdnUserConfigsResponse.setRequestId(_ctx.stringValue("DescribeCdnUserConfigsResponse.RequestId"));
List<Config> configs = new ArrayList<Config>();
for (int i = 0; i < _ctx.lengthValue("DescribeCdnUserConfigsResponse.Configs.Length"); i++) {
Config config = new Config();
config.setArgValue(_ctx.stringValue("DescribeCdnUserConfigsResponse.Configs["+ i +"].ArgValue"));
config.setArgName(_ctx.stringValue("DescribeCdnUserConfigsResponse.Configs["+ i +"].ArgName"));
config.setFunctionName(_ctx.stringValue("DescribeCdnUserConfigsResponse.Configs["+ i +"].FunctionName"));
configs.add(config);
}
describeCdnUserConfigsResponse.setConfigs(configs);
return describeCdnUserConfigsResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/transform/v20180510/DescribeCdnUserDomainsByFuncResponseUnmarshaller.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.transform.v20180510;
import java.util.ArrayList;
import java.util.List;
import com.aliyuncs.cdn.model.v20180510.DescribeCdnUserDomainsByFuncResponse;
import com.aliyuncs.cdn.model.v20180510.DescribeCdnUserDomainsByFuncResponse.PageData;
import com.aliyuncs.cdn.model.v20180510.DescribeCdnUserDomainsByFuncResponse.PageData.Source;
import com.aliyuncs.transform.UnmarshallerContext;
public class DescribeCdnUserDomainsByFuncResponseUnmarshaller {
public static DescribeCdnUserDomainsByFuncResponse unmarshall(DescribeCdnUserDomainsByFuncResponse describeCdnUserDomainsByFuncResponse, UnmarshallerContext _ctx) {
describeCdnUserDomainsByFuncResponse.setRequestId(_ctx.stringValue("DescribeCdnUserDomainsByFuncResponse.RequestId"));
describeCdnUserDomainsByFuncResponse.setPageNumber(_ctx.longValue("DescribeCdnUserDomainsByFuncResponse.PageNumber"));
describeCdnUserDomainsByFuncResponse.setPageSize(_ctx.longValue("DescribeCdnUserDomainsByFuncResponse.PageSize"));
describeCdnUserDomainsByFuncResponse.setTotalCount(_ctx.longValue("DescribeCdnUserDomainsByFuncResponse.TotalCount"));
List<PageData> domains = new ArrayList<PageData>();
for (int i = 0; i < _ctx.lengthValue("DescribeCdnUserDomainsByFuncResponse.Domains.Length"); i++) {
PageData pageData = new PageData();
pageData.setGmtCreated(_ctx.stringValue("DescribeCdnUserDomainsByFuncResponse.Domains["+ i +"].GmtCreated"));
pageData.setSslProtocol(_ctx.stringValue("DescribeCdnUserDomainsByFuncResponse.Domains["+ i +"].SslProtocol"));
pageData.setDescription(_ctx.stringValue("DescribeCdnUserDomainsByFuncResponse.Domains["+ i +"].Description"));
pageData.setResourceGroupId(_ctx.stringValue("DescribeCdnUserDomainsByFuncResponse.Domains["+ i +"].ResourceGroupId"));
pageData.setDomainStatus(_ctx.stringValue("DescribeCdnUserDomainsByFuncResponse.Domains["+ i +"].DomainStatus"));
pageData.setCname(_ctx.stringValue("DescribeCdnUserDomainsByFuncResponse.Domains["+ i +"].Cname"));
pageData.setGmtModified(_ctx.stringValue("DescribeCdnUserDomainsByFuncResponse.Domains["+ i +"].GmtModified"));
pageData.setCdnType(_ctx.stringValue("DescribeCdnUserDomainsByFuncResponse.Domains["+ i +"].CdnType"));
pageData.setDomainName(_ctx.stringValue("DescribeCdnUserDomainsByFuncResponse.Domains["+ i +"].DomainName"));
List<Source> sources = new ArrayList<Source>();
for (int j = 0; j < _ctx.lengthValue("DescribeCdnUserDomainsByFuncResponse.Domains["+ i +"].Sources.Length"); j++) {
Source source = new Source();
source.setType(_ctx.stringValue("DescribeCdnUserDomainsByFuncResponse.Domains["+ i +"].Sources["+ j +"].Type"));
source.setWeight(_ctx.stringValue("DescribeCdnUserDomainsByFuncResponse.Domains["+ i +"].Sources["+ j +"].Weight"));
source.setPriority(_ctx.stringValue("DescribeCdnUserDomainsByFuncResponse.Domains["+ i +"].Sources["+ j +"].Priority"));
source.setPort(_ctx.integerValue("DescribeCdnUserDomainsByFuncResponse.Domains["+ i +"].Sources["+ j +"].Port"));
source.setContent(_ctx.stringValue("DescribeCdnUserDomainsByFuncResponse.Domains["+ i +"].Sources["+ j +"].Content"));
sources.add(source);
}
pageData.setSources(sources);
domains.add(pageData);
}
describeCdnUserDomainsByFuncResponse.setDomains(domains);
return describeCdnUserDomainsByFuncResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/transform/v20180510/DescribeCdnUserQuotaResponseUnmarshaller.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.transform.v20180510;
import com.aliyuncs.cdn.model.v20180510.DescribeCdnUserQuotaResponse;
import com.aliyuncs.transform.UnmarshallerContext;
public class DescribeCdnUserQuotaResponseUnmarshaller {
public static DescribeCdnUserQuotaResponse unmarshall(DescribeCdnUserQuotaResponse describeCdnUserQuotaResponse, UnmarshallerContext _ctx) {
describeCdnUserQuotaResponse.setRequestId(_ctx.stringValue("DescribeCdnUserQuotaResponse.RequestId"));
describeCdnUserQuotaResponse.setBlockQuota(_ctx.integerValue("DescribeCdnUserQuotaResponse.BlockQuota"));
describeCdnUserQuotaResponse.setRefreshUrlRemain(_ctx.integerValue("DescribeCdnUserQuotaResponse.RefreshUrlRemain"));
describeCdnUserQuotaResponse.setDomainQuota(_ctx.integerValue("DescribeCdnUserQuotaResponse.DomainQuota"));
describeCdnUserQuotaResponse.setBlockRemain(_ctx.integerValue("DescribeCdnUserQuotaResponse.BlockRemain"));
describeCdnUserQuotaResponse.setPreloadRemain(_ctx.integerValue("DescribeCdnUserQuotaResponse.PreloadRemain"));
describeCdnUserQuotaResponse.setRefreshUrlQuota(_ctx.integerValue("DescribeCdnUserQuotaResponse.RefreshUrlQuota"));
describeCdnUserQuotaResponse.setPreloadQuota(_ctx.integerValue("DescribeCdnUserQuotaResponse.PreloadQuota"));
describeCdnUserQuotaResponse.setRefreshDirQuota(_ctx.integerValue("DescribeCdnUserQuotaResponse.RefreshDirQuota"));
describeCdnUserQuotaResponse.setRefreshDirRemain(_ctx.integerValue("DescribeCdnUserQuotaResponse.RefreshDirRemain"));
describeCdnUserQuotaResponse.setIgnoreParamsQuota(_ctx.integerValue("DescribeCdnUserQuotaResponse.IgnoreParamsQuota"));
describeCdnUserQuotaResponse.setIgnoreParamsRemain(_ctx.integerValue("DescribeCdnUserQuotaResponse.IgnoreParamsRemain"));
return describeCdnUserQuotaResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/transform/v20180510/DescribeCdnUserResourcePackageResponseUnmarshaller.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.transform.v20180510;
import java.util.ArrayList;
import java.util.List;
import com.aliyuncs.cdn.model.v20180510.DescribeCdnUserResourcePackageResponse;
import com.aliyuncs.cdn.model.v20180510.DescribeCdnUserResourcePackageResponse.ResourcePackageInfo;
import com.aliyuncs.transform.UnmarshallerContext;
public class DescribeCdnUserResourcePackageResponseUnmarshaller {
public static DescribeCdnUserResourcePackageResponse unmarshall(DescribeCdnUserResourcePackageResponse describeCdnUserResourcePackageResponse, UnmarshallerContext _ctx) {
describeCdnUserResourcePackageResponse.setRequestId(_ctx.stringValue("DescribeCdnUserResourcePackageResponse.RequestId"));
List<ResourcePackageInfo> resourcePackageInfos = new ArrayList<ResourcePackageInfo>();
for (int i = 0; i < _ctx.lengthValue("DescribeCdnUserResourcePackageResponse.ResourcePackageInfos.Length"); i++) {
ResourcePackageInfo resourcePackageInfo = new ResourcePackageInfo();
resourcePackageInfo.setEndTime(_ctx.stringValue("DescribeCdnUserResourcePackageResponse.ResourcePackageInfos["+ i +"].EndTime"));
resourcePackageInfo.setStatus(_ctx.stringValue("DescribeCdnUserResourcePackageResponse.ResourcePackageInfos["+ i +"].Status"));
resourcePackageInfo.setDisplayName(_ctx.stringValue("DescribeCdnUserResourcePackageResponse.ResourcePackageInfos["+ i +"].DisplayName"));
resourcePackageInfo.setStartTime(_ctx.stringValue("DescribeCdnUserResourcePackageResponse.ResourcePackageInfos["+ i +"].StartTime"));
resourcePackageInfo.setCommodityCode(_ctx.stringValue("DescribeCdnUserResourcePackageResponse.ResourcePackageInfos["+ i +"].CommodityCode"));
resourcePackageInfo.setCurrCapacity(_ctx.stringValue("DescribeCdnUserResourcePackageResponse.ResourcePackageInfos["+ i +"].CurrCapacity"));
resourcePackageInfo.setInitCapacity(_ctx.stringValue("DescribeCdnUserResourcePackageResponse.ResourcePackageInfos["+ i +"].InitCapacity"));
resourcePackageInfo.setInstanceId(_ctx.stringValue("DescribeCdnUserResourcePackageResponse.ResourcePackageInfos["+ i +"].InstanceId"));
resourcePackageInfo.setTemplateName(_ctx.stringValue("DescribeCdnUserResourcePackageResponse.ResourcePackageInfos["+ i +"].TemplateName"));
resourcePackageInfos.add(resourcePackageInfo);
}
describeCdnUserResourcePackageResponse.setResourcePackageInfos(resourcePackageInfos);
return describeCdnUserResourcePackageResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/transform/v20180510/DescribeCdnWafDomainResponseUnmarshaller.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.transform.v20180510;
import java.util.ArrayList;
import java.util.List;
import com.aliyuncs.cdn.model.v20180510.DescribeCdnWafDomainResponse;
import com.aliyuncs.cdn.model.v20180510.DescribeCdnWafDomainResponse.OutPutDomain;
import com.aliyuncs.transform.UnmarshallerContext;
public class DescribeCdnWafDomainResponseUnmarshaller {
public static DescribeCdnWafDomainResponse unmarshall(DescribeCdnWafDomainResponse describeCdnWafDomainResponse, UnmarshallerContext _ctx) {
describeCdnWafDomainResponse.setRequestId(_ctx.stringValue("DescribeCdnWafDomainResponse.RequestId"));
describeCdnWafDomainResponse.setTotalCount(_ctx.integerValue("DescribeCdnWafDomainResponse.TotalCount"));
List<OutPutDomain> outPutDomains = new ArrayList<OutPutDomain>();
for (int i = 0; i < _ctx.lengthValue("DescribeCdnWafDomainResponse.OutPutDomains.Length"); i++) {
OutPutDomain outPutDomain = new OutPutDomain();
outPutDomain.setAclStatus(_ctx.stringValue("DescribeCdnWafDomainResponse.OutPutDomains["+ i +"].AclStatus"));
outPutDomain.setStatus(_ctx.stringValue("DescribeCdnWafDomainResponse.OutPutDomains["+ i +"].Status"));
outPutDomain.setDomain(_ctx.stringValue("DescribeCdnWafDomainResponse.OutPutDomains["+ i +"].Domain"));
outPutDomain.setCcStatus(_ctx.stringValue("DescribeCdnWafDomainResponse.OutPutDomains["+ i +"].CcStatus"));
outPutDomain.setWafStatus(_ctx.stringValue("DescribeCdnWafDomainResponse.OutPutDomains["+ i +"].WafStatus"));
outPutDomains.add(outPutDomain);
}
describeCdnWafDomainResponse.setOutPutDomains(outPutDomains);
return describeCdnWafDomainResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/transform/v20180510/DescribeCertificateInfoByIDResponseUnmarshaller.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.transform.v20180510;
import java.util.ArrayList;
import java.util.List;
import com.aliyuncs.cdn.model.v20180510.DescribeCertificateInfoByIDResponse;
import com.aliyuncs.cdn.model.v20180510.DescribeCertificateInfoByIDResponse.CertInfo;
import com.aliyuncs.transform.UnmarshallerContext;
public class DescribeCertificateInfoByIDResponseUnmarshaller {
public static DescribeCertificateInfoByIDResponse unmarshall(DescribeCertificateInfoByIDResponse describeCertificateInfoByIDResponse, UnmarshallerContext _ctx) {
describeCertificateInfoByIDResponse.setRequestId(_ctx.stringValue("DescribeCertificateInfoByIDResponse.RequestId"));
List<CertInfo> certInfos = new ArrayList<CertInfo>();
for (int i = 0; i < _ctx.lengthValue("DescribeCertificateInfoByIDResponse.CertInfos.Length"); i++) {
CertInfo certInfo = new CertInfo();
certInfo.setCertExpireTime(_ctx.stringValue("DescribeCertificateInfoByIDResponse.CertInfos["+ i +"].CertExpireTime"));
certInfo.setCreateTime(_ctx.stringValue("DescribeCertificateInfoByIDResponse.CertInfos["+ i +"].CreateTime"));
certInfo.setCertType(_ctx.stringValue("DescribeCertificateInfoByIDResponse.CertInfos["+ i +"].CertType"));
certInfo.setCertName(_ctx.stringValue("DescribeCertificateInfoByIDResponse.CertInfos["+ i +"].CertName"));
certInfo.setCertId(_ctx.stringValue("DescribeCertificateInfoByIDResponse.CertInfos["+ i +"].CertId"));
certInfo.setDomainList(_ctx.stringValue("DescribeCertificateInfoByIDResponse.CertInfos["+ i +"].DomainList"));
certInfo.setHttpsCrt(_ctx.stringValue("DescribeCertificateInfoByIDResponse.CertInfos["+ i +"].HttpsCrt"));
certInfos.add(certInfo);
}
describeCertificateInfoByIDResponse.setCertInfos(certInfos);
return describeCertificateInfoByIDResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/transform/v20180510/DescribeCustomLogConfigResponseUnmarshaller.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.transform.v20180510;
import com.aliyuncs.cdn.model.v20180510.DescribeCustomLogConfigResponse;
import com.aliyuncs.transform.UnmarshallerContext;
public class DescribeCustomLogConfigResponseUnmarshaller {
public static DescribeCustomLogConfigResponse unmarshall(DescribeCustomLogConfigResponse describeCustomLogConfigResponse, UnmarshallerContext _ctx) {
describeCustomLogConfigResponse.setRequestId(_ctx.stringValue("DescribeCustomLogConfigResponse.RequestId"));
describeCustomLogConfigResponse.setTag(_ctx.stringValue("DescribeCustomLogConfigResponse.Tag"));
describeCustomLogConfigResponse.setRemark(_ctx.stringValue("DescribeCustomLogConfigResponse.Remark"));
describeCustomLogConfigResponse.setSample(_ctx.stringValue("DescribeCustomLogConfigResponse.Sample"));
return describeCustomLogConfigResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/transform/v20180510/DescribeDomainAverageResponseTimeResponseUnmarshaller.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.transform.v20180510;
import java.util.ArrayList;
import java.util.List;
import com.aliyuncs.cdn.model.v20180510.DescribeDomainAverageResponseTimeResponse;
import com.aliyuncs.cdn.model.v20180510.DescribeDomainAverageResponseTimeResponse.DataModule;
import com.aliyuncs.transform.UnmarshallerContext;
public class DescribeDomainAverageResponseTimeResponseUnmarshaller {
public static DescribeDomainAverageResponseTimeResponse unmarshall(DescribeDomainAverageResponseTimeResponse describeDomainAverageResponseTimeResponse, UnmarshallerContext _ctx) {
describeDomainAverageResponseTimeResponse.setRequestId(_ctx.stringValue("DescribeDomainAverageResponseTimeResponse.RequestId"));
describeDomainAverageResponseTimeResponse.setEndTime(_ctx.stringValue("DescribeDomainAverageResponseTimeResponse.EndTime"));
describeDomainAverageResponseTimeResponse.setStartTime(_ctx.stringValue("DescribeDomainAverageResponseTimeResponse.StartTime"));
describeDomainAverageResponseTimeResponse.setDomainName(_ctx.stringValue("DescribeDomainAverageResponseTimeResponse.DomainName"));
describeDomainAverageResponseTimeResponse.setDataInterval(_ctx.stringValue("DescribeDomainAverageResponseTimeResponse.DataInterval"));
List<DataModule> avgRTPerInterval = new ArrayList<DataModule>();
for (int i = 0; i < _ctx.lengthValue("DescribeDomainAverageResponseTimeResponse.AvgRTPerInterval.Length"); i++) {
DataModule dataModule = new DataModule();
dataModule.setValue(_ctx.stringValue("DescribeDomainAverageResponseTimeResponse.AvgRTPerInterval["+ i +"].Value"));
dataModule.setTimeStamp(_ctx.stringValue("DescribeDomainAverageResponseTimeResponse.AvgRTPerInterval["+ i +"].TimeStamp"));
avgRTPerInterval.add(dataModule);
}
describeDomainAverageResponseTimeResponse.setAvgRTPerInterval(avgRTPerInterval);
return describeDomainAverageResponseTimeResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/transform/v20180510/DescribeDomainBpsDataByLayerResponseUnmarshaller.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.transform.v20180510;
import java.util.ArrayList;
import java.util.List;
import com.aliyuncs.cdn.model.v20180510.DescribeDomainBpsDataByLayerResponse;
import com.aliyuncs.cdn.model.v20180510.DescribeDomainBpsDataByLayerResponse.DataModule;
import com.aliyuncs.transform.UnmarshallerContext;
public class DescribeDomainBpsDataByLayerResponseUnmarshaller {
public static DescribeDomainBpsDataByLayerResponse unmarshall(DescribeDomainBpsDataByLayerResponse describeDomainBpsDataByLayerResponse, UnmarshallerContext _ctx) {
describeDomainBpsDataByLayerResponse.setRequestId(_ctx.stringValue("DescribeDomainBpsDataByLayerResponse.RequestId"));
describeDomainBpsDataByLayerResponse.setDataInterval(_ctx.stringValue("DescribeDomainBpsDataByLayerResponse.DataInterval"));
List<DataModule> bpsDataInterval = new ArrayList<DataModule>();
for (int i = 0; i < _ctx.lengthValue("DescribeDomainBpsDataByLayerResponse.BpsDataInterval.Length"); i++) {
DataModule dataModule = new DataModule();
dataModule.setValue(_ctx.stringValue("DescribeDomainBpsDataByLayerResponse.BpsDataInterval["+ i +"].Value"));
dataModule.setTrafficValue(_ctx.stringValue("DescribeDomainBpsDataByLayerResponse.BpsDataInterval["+ i +"].TrafficValue"));
dataModule.setTimeStamp(_ctx.stringValue("DescribeDomainBpsDataByLayerResponse.BpsDataInterval["+ i +"].TimeStamp"));
bpsDataInterval.add(dataModule);
}
describeDomainBpsDataByLayerResponse.setBpsDataInterval(bpsDataInterval);
return describeDomainBpsDataByLayerResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/transform/v20180510/DescribeDomainBpsDataByTimeStampResponseUnmarshaller.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.transform.v20180510;
import java.util.ArrayList;
import java.util.List;
import com.aliyuncs.cdn.model.v20180510.DescribeDomainBpsDataByTimeStampResponse;
import com.aliyuncs.cdn.model.v20180510.DescribeDomainBpsDataByTimeStampResponse.BpsDataModel;
import com.aliyuncs.transform.UnmarshallerContext;
public class DescribeDomainBpsDataByTimeStampResponseUnmarshaller {
public static DescribeDomainBpsDataByTimeStampResponse unmarshall(DescribeDomainBpsDataByTimeStampResponse describeDomainBpsDataByTimeStampResponse, UnmarshallerContext _ctx) {
describeDomainBpsDataByTimeStampResponse.setRequestId(_ctx.stringValue("DescribeDomainBpsDataByTimeStampResponse.RequestId"));
describeDomainBpsDataByTimeStampResponse.setTimeStamp(_ctx.stringValue("DescribeDomainBpsDataByTimeStampResponse.TimeStamp"));
describeDomainBpsDataByTimeStampResponse.setDomainName(_ctx.stringValue("DescribeDomainBpsDataByTimeStampResponse.DomainName"));
List<BpsDataModel> bpsDataList = new ArrayList<BpsDataModel>();
for (int i = 0; i < _ctx.lengthValue("DescribeDomainBpsDataByTimeStampResponse.BpsDataList.Length"); i++) {
BpsDataModel bpsDataModel = new BpsDataModel();
bpsDataModel.setLocationName(_ctx.stringValue("DescribeDomainBpsDataByTimeStampResponse.BpsDataList["+ i +"].LocationName"));
bpsDataModel.setTimeStamp(_ctx.stringValue("DescribeDomainBpsDataByTimeStampResponse.BpsDataList["+ i +"].TimeStamp"));
bpsDataModel.setIspName(_ctx.stringValue("DescribeDomainBpsDataByTimeStampResponse.BpsDataList["+ i +"].IspName"));
bpsDataModel.setBps(_ctx.longValue("DescribeDomainBpsDataByTimeStampResponse.BpsDataList["+ i +"].Bps"));
bpsDataList.add(bpsDataModel);
}
describeDomainBpsDataByTimeStampResponse.setBpsDataList(bpsDataList);
return describeDomainBpsDataByTimeStampResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/transform/v20180510/DescribeDomainBpsDataResponseUnmarshaller.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.transform.v20180510;
import java.util.ArrayList;
import java.util.List;
import com.aliyuncs.cdn.model.v20180510.DescribeDomainBpsDataResponse;
import com.aliyuncs.cdn.model.v20180510.DescribeDomainBpsDataResponse.DataModule;
import com.aliyuncs.transform.UnmarshallerContext;
public class DescribeDomainBpsDataResponseUnmarshaller {
public static DescribeDomainBpsDataResponse unmarshall(DescribeDomainBpsDataResponse describeDomainBpsDataResponse, UnmarshallerContext _ctx) {
describeDomainBpsDataResponse.setRequestId(_ctx.stringValue("DescribeDomainBpsDataResponse.RequestId"));
describeDomainBpsDataResponse.setEndTime(_ctx.stringValue("DescribeDomainBpsDataResponse.EndTime"));
describeDomainBpsDataResponse.setStartTime(_ctx.stringValue("DescribeDomainBpsDataResponse.StartTime"));
describeDomainBpsDataResponse.setIspNameEn(_ctx.stringValue("DescribeDomainBpsDataResponse.IspNameEn"));
describeDomainBpsDataResponse.setLocationNameEn(_ctx.stringValue("DescribeDomainBpsDataResponse.LocationNameEn"));
describeDomainBpsDataResponse.setDomainName(_ctx.stringValue("DescribeDomainBpsDataResponse.DomainName"));
describeDomainBpsDataResponse.setDataInterval(_ctx.stringValue("DescribeDomainBpsDataResponse.DataInterval"));
List<DataModule> bpsDataPerInterval = new ArrayList<DataModule>();
for (int i = 0; i < _ctx.lengthValue("DescribeDomainBpsDataResponse.BpsDataPerInterval.Length"); i++) {
DataModule dataModule = new DataModule();
dataModule.setHttpsDomesticValue(_ctx.stringValue("DescribeDomainBpsDataResponse.BpsDataPerInterval["+ i +"].HttpsDomesticValue"));
dataModule.setValue(_ctx.stringValue("DescribeDomainBpsDataResponse.BpsDataPerInterval["+ i +"].Value"));
dataModule.setOverseasValue(_ctx.stringValue("DescribeDomainBpsDataResponse.BpsDataPerInterval["+ i +"].OverseasValue"));
dataModule.setHttpsValue(_ctx.stringValue("DescribeDomainBpsDataResponse.BpsDataPerInterval["+ i +"].HttpsValue"));
dataModule.setHttpsOverseasValue(_ctx.stringValue("DescribeDomainBpsDataResponse.BpsDataPerInterval["+ i +"].HttpsOverseasValue"));
dataModule.setTimeStamp(_ctx.stringValue("DescribeDomainBpsDataResponse.BpsDataPerInterval["+ i +"].TimeStamp"));
dataModule.setDomesticValue(_ctx.stringValue("DescribeDomainBpsDataResponse.BpsDataPerInterval["+ i +"].DomesticValue"));
bpsDataPerInterval.add(dataModule);
}
describeDomainBpsDataResponse.setBpsDataPerInterval(bpsDataPerInterval);
return describeDomainBpsDataResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/transform/v20180510/DescribeDomainCcActivityLogResponseUnmarshaller.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.transform.v20180510;
import java.util.ArrayList;
import java.util.List;
import com.aliyuncs.cdn.model.v20180510.DescribeDomainCcActivityLogResponse;
import com.aliyuncs.cdn.model.v20180510.DescribeDomainCcActivityLogResponse.LogInfo;
import com.aliyuncs.transform.UnmarshallerContext;
public class DescribeDomainCcActivityLogResponseUnmarshaller {
public static DescribeDomainCcActivityLogResponse unmarshall(DescribeDomainCcActivityLogResponse describeDomainCcActivityLogResponse, UnmarshallerContext _ctx) {
describeDomainCcActivityLogResponse.setRequestId(_ctx.stringValue("DescribeDomainCcActivityLogResponse.RequestId"));
describeDomainCcActivityLogResponse.setPageIndex(_ctx.longValue("DescribeDomainCcActivityLogResponse.PageIndex"));
describeDomainCcActivityLogResponse.setPageSize(_ctx.longValue("DescribeDomainCcActivityLogResponse.PageSize"));
describeDomainCcActivityLogResponse.setTotal(_ctx.longValue("DescribeDomainCcActivityLogResponse.Total"));
List<LogInfo> activityLog = new ArrayList<LogInfo>();
for (int i = 0; i < _ctx.lengthValue("DescribeDomainCcActivityLogResponse.ActivityLog.Length"); i++) {
LogInfo logInfo = new LogInfo();
logInfo.setValue(_ctx.stringValue("DescribeDomainCcActivityLogResponse.ActivityLog["+ i +"].Value"));
logInfo.setTtl(_ctx.longValue("DescribeDomainCcActivityLogResponse.ActivityLog["+ i +"].Ttl"));
logInfo.setAction(_ctx.stringValue("DescribeDomainCcActivityLogResponse.ActivityLog["+ i +"].Action"));
logInfo.setTriggerObject(_ctx.stringValue("DescribeDomainCcActivityLogResponse.ActivityLog["+ i +"].TriggerObject"));
logInfo.setTimeStamp(_ctx.stringValue("DescribeDomainCcActivityLogResponse.ActivityLog["+ i +"].TimeStamp"));
logInfo.setDomainName(_ctx.stringValue("DescribeDomainCcActivityLogResponse.ActivityLog["+ i +"].DomainName"));
logInfo.setRuleName(_ctx.stringValue("DescribeDomainCcActivityLogResponse.ActivityLog["+ i +"].RuleName"));
activityLog.add(logInfo);
}
describeDomainCcActivityLogResponse.setActivityLog(activityLog);
return describeDomainCcActivityLogResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/transform/v20180510/DescribeDomainCertificateInfoResponseUnmarshaller.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.transform.v20180510;
import java.util.ArrayList;
import java.util.List;
import com.aliyuncs.cdn.model.v20180510.DescribeDomainCertificateInfoResponse;
import com.aliyuncs.cdn.model.v20180510.DescribeDomainCertificateInfoResponse.CertInfo;
import com.aliyuncs.transform.UnmarshallerContext;
public class DescribeDomainCertificateInfoResponseUnmarshaller {
public static DescribeDomainCertificateInfoResponse unmarshall(DescribeDomainCertificateInfoResponse describeDomainCertificateInfoResponse, UnmarshallerContext _ctx) {
describeDomainCertificateInfoResponse.setRequestId(_ctx.stringValue("DescribeDomainCertificateInfoResponse.RequestId"));
List<CertInfo> certInfos = new ArrayList<CertInfo>();
for (int i = 0; i < _ctx.lengthValue("DescribeDomainCertificateInfoResponse.CertInfos.Length"); i++) {
CertInfo certInfo = new CertInfo();
certInfo.setCertExpireTime(_ctx.stringValue("DescribeDomainCertificateInfoResponse.CertInfos["+ i +"].CertExpireTime"));
certInfo.setCertLife(_ctx.stringValue("DescribeDomainCertificateInfoResponse.CertInfos["+ i +"].CertLife"));
certInfo.setStatus(_ctx.stringValue("DescribeDomainCertificateInfoResponse.CertInfos["+ i +"].Status"));
certInfo.setCertUpdateTime(_ctx.stringValue("DescribeDomainCertificateInfoResponse.CertInfos["+ i +"].CertUpdateTime"));
certInfo.setCertDomainName(_ctx.stringValue("DescribeDomainCertificateInfoResponse.CertInfos["+ i +"].CertDomainName"));
certInfo.setServerCertificateStatus(_ctx.stringValue("DescribeDomainCertificateInfoResponse.CertInfos["+ i +"].ServerCertificateStatus"));
certInfo.setCertOrg(_ctx.stringValue("DescribeDomainCertificateInfoResponse.CertInfos["+ i +"].CertOrg"));
certInfo.setDomainName(_ctx.stringValue("DescribeDomainCertificateInfoResponse.CertInfos["+ i +"].DomainName"));
certInfo.setCertStartTime(_ctx.stringValue("DescribeDomainCertificateInfoResponse.CertInfos["+ i +"].CertStartTime"));
certInfo.setCertType(_ctx.stringValue("DescribeDomainCertificateInfoResponse.CertInfos["+ i +"].CertType"));
certInfo.setCertName(_ctx.stringValue("DescribeDomainCertificateInfoResponse.CertInfos["+ i +"].CertName"));
certInfo.setDomainCnameStatus(_ctx.stringValue("DescribeDomainCertificateInfoResponse.CertInfos["+ i +"].DomainCnameStatus"));
certInfo.setServerCertificate(_ctx.stringValue("DescribeDomainCertificateInfoResponse.CertInfos["+ i +"].ServerCertificate"));
certInfo.setCertId(_ctx.stringValue("DescribeDomainCertificateInfoResponse.CertInfos["+ i +"].CertId"));
certInfo.setCertRegion(_ctx.stringValue("DescribeDomainCertificateInfoResponse.CertInfos["+ i +"].CertRegion"));
certInfos.add(certInfo);
}
describeDomainCertificateInfoResponse.setCertInfos(certInfos);
return describeDomainCertificateInfoResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/transform/v20180510/DescribeDomainCnameResponseUnmarshaller.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.transform.v20180510;
import java.util.ArrayList;
import java.util.List;
import com.aliyuncs.cdn.model.v20180510.DescribeDomainCnameResponse;
import com.aliyuncs.cdn.model.v20180510.DescribeDomainCnameResponse.Data;
import com.aliyuncs.transform.UnmarshallerContext;
public class DescribeDomainCnameResponseUnmarshaller {
public static DescribeDomainCnameResponse unmarshall(DescribeDomainCnameResponse describeDomainCnameResponse, UnmarshallerContext _ctx) {
describeDomainCnameResponse.setRequestId(_ctx.stringValue("DescribeDomainCnameResponse.RequestId"));
List<Data> cnameDatas = new ArrayList<Data>();
for (int i = 0; i < _ctx.lengthValue("DescribeDomainCnameResponse.CnameDatas.Length"); i++) {
Data data = new Data();
data.setStatus(_ctx.integerValue("DescribeDomainCnameResponse.CnameDatas["+ i +"].Status"));
data.setDomain(_ctx.stringValue("DescribeDomainCnameResponse.CnameDatas["+ i +"].Domain"));
data.setCname(_ctx.stringValue("DescribeDomainCnameResponse.CnameDatas["+ i +"].Cname"));
cnameDatas.add(data);
}
describeDomainCnameResponse.setCnameDatas(cnameDatas);
return describeDomainCnameResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/transform/v20180510/DescribeDomainCustomLogConfigResponseUnmarshaller.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.transform.v20180510;
import com.aliyuncs.cdn.model.v20180510.DescribeDomainCustomLogConfigResponse;
import com.aliyuncs.transform.UnmarshallerContext;
public class DescribeDomainCustomLogConfigResponseUnmarshaller {
public static DescribeDomainCustomLogConfigResponse unmarshall(DescribeDomainCustomLogConfigResponse describeDomainCustomLogConfigResponse, UnmarshallerContext _ctx) {
describeDomainCustomLogConfigResponse.setRequestId(_ctx.stringValue("DescribeDomainCustomLogConfigResponse.RequestId"));
describeDomainCustomLogConfigResponse.setConfigId(_ctx.stringValue("DescribeDomainCustomLogConfigResponse.ConfigId"));
describeDomainCustomLogConfigResponse.setTag(_ctx.stringValue("DescribeDomainCustomLogConfigResponse.Tag"));
describeDomainCustomLogConfigResponse.setRemark(_ctx.stringValue("DescribeDomainCustomLogConfigResponse.Remark"));
describeDomainCustomLogConfigResponse.setSample(_ctx.stringValue("DescribeDomainCustomLogConfigResponse.Sample"));
return describeDomainCustomLogConfigResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/transform/v20180510/DescribeDomainDetailDataByLayerResponseUnmarshaller.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.transform.v20180510;
import java.util.ArrayList;
import java.util.List;
import com.aliyuncs.cdn.model.v20180510.DescribeDomainDetailDataByLayerResponse;
import com.aliyuncs.cdn.model.v20180510.DescribeDomainDetailDataByLayerResponse.DataModule;
import com.aliyuncs.transform.UnmarshallerContext;
public class DescribeDomainDetailDataByLayerResponseUnmarshaller {
public static DescribeDomainDetailDataByLayerResponse unmarshall(DescribeDomainDetailDataByLayerResponse describeDomainDetailDataByLayerResponse, UnmarshallerContext _ctx) {
describeDomainDetailDataByLayerResponse.setRequestId(_ctx.stringValue("DescribeDomainDetailDataByLayerResponse.RequestId"));
List<DataModule> data = new ArrayList<DataModule>();
for (int i = 0; i < _ctx.lengthValue("DescribeDomainDetailDataByLayerResponse.Data.Length"); i++) {
DataModule dataModule = new DataModule();
dataModule.setTraf(_ctx.longValue("DescribeDomainDetailDataByLayerResponse.Data["+ i +"].Traf"));
dataModule.setQps(_ctx.floatValue("DescribeDomainDetailDataByLayerResponse.Data["+ i +"].Qps"));
dataModule.setIpv6Qps(_ctx.floatValue("DescribeDomainDetailDataByLayerResponse.Data["+ i +"].Ipv6Qps"));
dataModule.setIpv6Bps(_ctx.floatValue("DescribeDomainDetailDataByLayerResponse.Data["+ i +"].Ipv6Bps"));
dataModule.setAcc(_ctx.longValue("DescribeDomainDetailDataByLayerResponse.Data["+ i +"].Acc"));
dataModule.setIpv6Traf(_ctx.longValue("DescribeDomainDetailDataByLayerResponse.Data["+ i +"].Ipv6Traf"));
dataModule.setIpv6Acc(_ctx.longValue("DescribeDomainDetailDataByLayerResponse.Data["+ i +"].Ipv6Acc"));
dataModule.setTimeStamp(_ctx.stringValue("DescribeDomainDetailDataByLayerResponse.Data["+ i +"].TimeStamp"));
dataModule.setHttpCode(_ctx.stringValue("DescribeDomainDetailDataByLayerResponse.Data["+ i +"].HttpCode"));
dataModule.setBps(_ctx.floatValue("DescribeDomainDetailDataByLayerResponse.Data["+ i +"].Bps"));
dataModule.setDomainName(_ctx.stringValue("DescribeDomainDetailDataByLayerResponse.Data["+ i +"].DomainName"));
data.add(dataModule);
}
describeDomainDetailDataByLayerResponse.setData(data);
return describeDomainDetailDataByLayerResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/transform/v20180510/DescribeDomainHitRateDataResponseUnmarshaller.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.transform.v20180510;
import java.util.ArrayList;
import java.util.List;
import com.aliyuncs.cdn.model.v20180510.DescribeDomainHitRateDataResponse;
import com.aliyuncs.cdn.model.v20180510.DescribeDomainHitRateDataResponse.DataModule;
import com.aliyuncs.transform.UnmarshallerContext;
public class DescribeDomainHitRateDataResponseUnmarshaller {
public static DescribeDomainHitRateDataResponse unmarshall(DescribeDomainHitRateDataResponse describeDomainHitRateDataResponse, UnmarshallerContext _ctx) {
describeDomainHitRateDataResponse.setRequestId(_ctx.stringValue("DescribeDomainHitRateDataResponse.RequestId"));
describeDomainHitRateDataResponse.setEndTime(_ctx.stringValue("DescribeDomainHitRateDataResponse.EndTime"));
describeDomainHitRateDataResponse.setStartTime(_ctx.stringValue("DescribeDomainHitRateDataResponse.StartTime"));
describeDomainHitRateDataResponse.setDomainName(_ctx.stringValue("DescribeDomainHitRateDataResponse.DomainName"));
describeDomainHitRateDataResponse.setDataInterval(_ctx.stringValue("DescribeDomainHitRateDataResponse.DataInterval"));
List<DataModule> hitRateInterval = new ArrayList<DataModule>();
for (int i = 0; i < _ctx.lengthValue("DescribeDomainHitRateDataResponse.HitRateInterval.Length"); i++) {
DataModule dataModule = new DataModule();
dataModule.setValue(_ctx.stringValue("DescribeDomainHitRateDataResponse.HitRateInterval["+ i +"].Value"));
dataModule.setTimeStamp(_ctx.stringValue("DescribeDomainHitRateDataResponse.HitRateInterval["+ i +"].TimeStamp"));
dataModule.setHttpsValue(_ctx.stringValue("DescribeDomainHitRateDataResponse.HitRateInterval["+ i +"].HttpsValue"));
hitRateInterval.add(dataModule);
}
describeDomainHitRateDataResponse.setHitRateInterval(hitRateInterval);
return describeDomainHitRateDataResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/transform/v20180510/DescribeDomainHttpCodeDataByLayerResponseUnmarshaller.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.transform.v20180510;
import java.util.ArrayList;
import java.util.List;
import com.aliyuncs.cdn.model.v20180510.DescribeDomainHttpCodeDataByLayerResponse;
import com.aliyuncs.cdn.model.v20180510.DescribeDomainHttpCodeDataByLayerResponse.DataModule;
import com.aliyuncs.transform.UnmarshallerContext;
public class DescribeDomainHttpCodeDataByLayerResponseUnmarshaller {
public static DescribeDomainHttpCodeDataByLayerResponse unmarshall(DescribeDomainHttpCodeDataByLayerResponse describeDomainHttpCodeDataByLayerResponse, UnmarshallerContext _ctx) {
describeDomainHttpCodeDataByLayerResponse.setRequestId(_ctx.stringValue("DescribeDomainHttpCodeDataByLayerResponse.RequestId"));
describeDomainHttpCodeDataByLayerResponse.setDataInterval(_ctx.stringValue("DescribeDomainHttpCodeDataByLayerResponse.DataInterval"));
List<DataModule> httpCodeDataInterval = new ArrayList<DataModule>();
for (int i = 0; i < _ctx.lengthValue("DescribeDomainHttpCodeDataByLayerResponse.HttpCodeDataInterval.Length"); i++) {
DataModule dataModule = new DataModule();
dataModule.setValue(_ctx.stringValue("DescribeDomainHttpCodeDataByLayerResponse.HttpCodeDataInterval["+ i +"].Value"));
dataModule.setTimeStamp(_ctx.stringValue("DescribeDomainHttpCodeDataByLayerResponse.HttpCodeDataInterval["+ i +"].TimeStamp"));
dataModule.setTotalValue(_ctx.stringValue("DescribeDomainHttpCodeDataByLayerResponse.HttpCodeDataInterval["+ i +"].TotalValue"));
httpCodeDataInterval.add(dataModule);
}
describeDomainHttpCodeDataByLayerResponse.setHttpCodeDataInterval(httpCodeDataInterval);
return describeDomainHttpCodeDataByLayerResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/transform/v20180510/DescribeDomainHttpCodeDataResponseUnmarshaller.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.transform.v20180510;
import java.util.ArrayList;
import java.util.List;
import com.aliyuncs.cdn.model.v20180510.DescribeDomainHttpCodeDataResponse;
import com.aliyuncs.cdn.model.v20180510.DescribeDomainHttpCodeDataResponse.UsageData;
import com.aliyuncs.cdn.model.v20180510.DescribeDomainHttpCodeDataResponse.UsageData.CodeProportionData;
import com.aliyuncs.transform.UnmarshallerContext;
public class DescribeDomainHttpCodeDataResponseUnmarshaller {
public static DescribeDomainHttpCodeDataResponse unmarshall(DescribeDomainHttpCodeDataResponse describeDomainHttpCodeDataResponse, UnmarshallerContext _ctx) {
describeDomainHttpCodeDataResponse.setRequestId(_ctx.stringValue("DescribeDomainHttpCodeDataResponse.RequestId"));
describeDomainHttpCodeDataResponse.setEndTime(_ctx.stringValue("DescribeDomainHttpCodeDataResponse.EndTime"));
describeDomainHttpCodeDataResponse.setStartTime(_ctx.stringValue("DescribeDomainHttpCodeDataResponse.StartTime"));
describeDomainHttpCodeDataResponse.setDomainName(_ctx.stringValue("DescribeDomainHttpCodeDataResponse.DomainName"));
describeDomainHttpCodeDataResponse.setDataInterval(_ctx.stringValue("DescribeDomainHttpCodeDataResponse.DataInterval"));
List<UsageData> httpCodeData = new ArrayList<UsageData>();
for (int i = 0; i < _ctx.lengthValue("DescribeDomainHttpCodeDataResponse.HttpCodeData.Length"); i++) {
UsageData usageData = new UsageData();
usageData.setTimeStamp(_ctx.stringValue("DescribeDomainHttpCodeDataResponse.HttpCodeData["+ i +"].TimeStamp"));
List<CodeProportionData> value = new ArrayList<CodeProportionData>();
for (int j = 0; j < _ctx.lengthValue("DescribeDomainHttpCodeDataResponse.HttpCodeData["+ i +"].Value.Length"); j++) {
CodeProportionData codeProportionData = new CodeProportionData();
codeProportionData.setCode(_ctx.stringValue("DescribeDomainHttpCodeDataResponse.HttpCodeData["+ i +"].Value["+ j +"].Code"));
codeProportionData.setProportion(_ctx.stringValue("DescribeDomainHttpCodeDataResponse.HttpCodeData["+ i +"].Value["+ j +"].Proportion"));
codeProportionData.setCount(_ctx.stringValue("DescribeDomainHttpCodeDataResponse.HttpCodeData["+ i +"].Value["+ j +"].Count"));
value.add(codeProportionData);
}
usageData.setValue(value);
httpCodeData.add(usageData);
}
describeDomainHttpCodeDataResponse.setHttpCodeData(httpCodeData);
return describeDomainHttpCodeDataResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/transform/v20180510/DescribeDomainISPDataResponseUnmarshaller.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.transform.v20180510;
import java.util.ArrayList;
import java.util.List;
import com.aliyuncs.cdn.model.v20180510.DescribeDomainISPDataResponse;
import com.aliyuncs.cdn.model.v20180510.DescribeDomainISPDataResponse.ISPProportionData;
import com.aliyuncs.transform.UnmarshallerContext;
public class DescribeDomainISPDataResponseUnmarshaller {
public static DescribeDomainISPDataResponse unmarshall(DescribeDomainISPDataResponse describeDomainISPDataResponse, UnmarshallerContext _ctx) {
describeDomainISPDataResponse.setRequestId(_ctx.stringValue("DescribeDomainISPDataResponse.RequestId"));
describeDomainISPDataResponse.setEndTime(_ctx.stringValue("DescribeDomainISPDataResponse.EndTime"));
describeDomainISPDataResponse.setStartTime(_ctx.stringValue("DescribeDomainISPDataResponse.StartTime"));
describeDomainISPDataResponse.setDomainName(_ctx.stringValue("DescribeDomainISPDataResponse.DomainName"));
describeDomainISPDataResponse.setDataInterval(_ctx.stringValue("DescribeDomainISPDataResponse.DataInterval"));
List<ISPProportionData> value = new ArrayList<ISPProportionData>();
for (int i = 0; i < _ctx.lengthValue("DescribeDomainISPDataResponse.Value.Length"); i++) {
ISPProportionData iSPProportionData = new ISPProportionData();
iSPProportionData.setTotalQuery(_ctx.stringValue("DescribeDomainISPDataResponse.Value["+ i +"].TotalQuery"));
iSPProportionData.setTotalBytes(_ctx.stringValue("DescribeDomainISPDataResponse.Value["+ i +"].TotalBytes"));
iSPProportionData.setAvgResponseRate(_ctx.stringValue("DescribeDomainISPDataResponse.Value["+ i +"].AvgResponseRate"));
iSPProportionData.setAvgResponseTime(_ctx.stringValue("DescribeDomainISPDataResponse.Value["+ i +"].AvgResponseTime"));
iSPProportionData.setReqErrRate(_ctx.stringValue("DescribeDomainISPDataResponse.Value["+ i +"].ReqErrRate"));
iSPProportionData.setAvgObjectSize(_ctx.stringValue("DescribeDomainISPDataResponse.Value["+ i +"].AvgObjectSize"));
iSPProportionData.setBps(_ctx.stringValue("DescribeDomainISPDataResponse.Value["+ i +"].Bps"));
iSPProportionData.setQps(_ctx.stringValue("DescribeDomainISPDataResponse.Value["+ i +"].Qps"));
iSPProportionData.setProportion(_ctx.stringValue("DescribeDomainISPDataResponse.Value["+ i +"].Proportion"));
iSPProportionData.setIspEname(_ctx.stringValue("DescribeDomainISPDataResponse.Value["+ i +"].IspEname"));
iSPProportionData.setISP(_ctx.stringValue("DescribeDomainISPDataResponse.Value["+ i +"].ISP"));
iSPProportionData.setBytesProportion(_ctx.stringValue("DescribeDomainISPDataResponse.Value["+ i +"].BytesProportion"));
value.add(iSPProportionData);
}
describeDomainISPDataResponse.setValue(value);
return describeDomainISPDataResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/transform/v20180510/DescribeDomainMax95BpsDataResponseUnmarshaller.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.transform.v20180510;
import java.util.ArrayList;
import java.util.List;
import com.aliyuncs.cdn.model.v20180510.DescribeDomainMax95BpsDataResponse;
import com.aliyuncs.cdn.model.v20180510.DescribeDomainMax95BpsDataResponse.Max95Detail;
import com.aliyuncs.transform.UnmarshallerContext;
public class DescribeDomainMax95BpsDataResponseUnmarshaller {
public static DescribeDomainMax95BpsDataResponse unmarshall(DescribeDomainMax95BpsDataResponse describeDomainMax95BpsDataResponse, UnmarshallerContext _ctx) {
describeDomainMax95BpsDataResponse.setRequestId(_ctx.stringValue("DescribeDomainMax95BpsDataResponse.RequestId"));
describeDomainMax95BpsDataResponse.setDomainName(_ctx.stringValue("DescribeDomainMax95BpsDataResponse.DomainName"));
describeDomainMax95BpsDataResponse.setEndTime(_ctx.stringValue("DescribeDomainMax95BpsDataResponse.EndTime"));
describeDomainMax95BpsDataResponse.setStartTime(_ctx.stringValue("DescribeDomainMax95BpsDataResponse.StartTime"));
describeDomainMax95BpsDataResponse.setDomesticMax95Bps(_ctx.stringValue("DescribeDomainMax95BpsDataResponse.DomesticMax95Bps"));
describeDomainMax95BpsDataResponse.setOverseasMax95Bps(_ctx.stringValue("DescribeDomainMax95BpsDataResponse.OverseasMax95Bps"));
describeDomainMax95BpsDataResponse.setMax95Bps(_ctx.stringValue("DescribeDomainMax95BpsDataResponse.Max95Bps"));
List<Max95Detail> detailData = new ArrayList<Max95Detail>();
for (int i = 0; i < _ctx.lengthValue("DescribeDomainMax95BpsDataResponse.DetailData.Length"); i++) {
Max95Detail max95Detail = new Max95Detail();
max95Detail.setTimeStamp(_ctx.stringValue("DescribeDomainMax95BpsDataResponse.DetailData["+ i +"].TimeStamp"));
max95Detail.setArea(_ctx.stringValue("DescribeDomainMax95BpsDataResponse.DetailData["+ i +"].Area"));
max95Detail.setMax95BpsPeakTime(_ctx.stringValue("DescribeDomainMax95BpsDataResponse.DetailData["+ i +"].Max95BpsPeakTime"));
max95Detail.setMax95Bps(_ctx.floatValue("DescribeDomainMax95BpsDataResponse.DetailData["+ i +"].Max95Bps"));
detailData.add(max95Detail);
}
describeDomainMax95BpsDataResponse.setDetailData(detailData);
return describeDomainMax95BpsDataResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/transform/v20180510/DescribeDomainMultiUsageDataResponseUnmarshaller.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.transform.v20180510;
import java.util.ArrayList;
import java.util.List;
import com.aliyuncs.cdn.model.v20180510.DescribeDomainMultiUsageDataResponse;
import com.aliyuncs.cdn.model.v20180510.DescribeDomainMultiUsageDataResponse.RequestDataModule;
import com.aliyuncs.cdn.model.v20180510.DescribeDomainMultiUsageDataResponse.TrafficDataModule;
import com.aliyuncs.transform.UnmarshallerContext;
public class DescribeDomainMultiUsageDataResponseUnmarshaller {
public static DescribeDomainMultiUsageDataResponse unmarshall(DescribeDomainMultiUsageDataResponse describeDomainMultiUsageDataResponse, UnmarshallerContext _ctx) {
describeDomainMultiUsageDataResponse.setRequestId(_ctx.stringValue("DescribeDomainMultiUsageDataResponse.RequestId"));
describeDomainMultiUsageDataResponse.setEndTime(_ctx.stringValue("DescribeDomainMultiUsageDataResponse.EndTime"));
describeDomainMultiUsageDataResponse.setStartTime(_ctx.stringValue("DescribeDomainMultiUsageDataResponse.StartTime"));
List<RequestDataModule> requestPerInterval = new ArrayList<RequestDataModule>();
for (int i = 0; i < _ctx.lengthValue("DescribeDomainMultiUsageDataResponse.RequestPerInterval.Length"); i++) {
RequestDataModule requestDataModule = new RequestDataModule();
requestDataModule.setType(_ctx.stringValue("DescribeDomainMultiUsageDataResponse.RequestPerInterval["+ i +"].Type"));
requestDataModule.setTimeStamp(_ctx.stringValue("DescribeDomainMultiUsageDataResponse.RequestPerInterval["+ i +"].TimeStamp"));
requestDataModule.setDomain(_ctx.stringValue("DescribeDomainMultiUsageDataResponse.RequestPerInterval["+ i +"].Domain"));
requestDataModule.setRequest(_ctx.longValue("DescribeDomainMultiUsageDataResponse.RequestPerInterval["+ i +"].Request"));
requestPerInterval.add(requestDataModule);
}
describeDomainMultiUsageDataResponse.setRequestPerInterval(requestPerInterval);
List<TrafficDataModule> trafficPerInterval = new ArrayList<TrafficDataModule>();
for (int i = 0; i < _ctx.lengthValue("DescribeDomainMultiUsageDataResponse.TrafficPerInterval.Length"); i++) {
TrafficDataModule trafficDataModule = new TrafficDataModule();
trafficDataModule.setType(_ctx.stringValue("DescribeDomainMultiUsageDataResponse.TrafficPerInterval["+ i +"].Type"));
trafficDataModule.setDomain(_ctx.stringValue("DescribeDomainMultiUsageDataResponse.TrafficPerInterval["+ i +"].Domain"));
trafficDataModule.setTimeStamp(_ctx.stringValue("DescribeDomainMultiUsageDataResponse.TrafficPerInterval["+ i +"].TimeStamp"));
trafficDataModule.setArea(_ctx.stringValue("DescribeDomainMultiUsageDataResponse.TrafficPerInterval["+ i +"].Area"));
trafficDataModule.setBps(_ctx.floatValue("DescribeDomainMultiUsageDataResponse.TrafficPerInterval["+ i +"].Bps"));
trafficPerInterval.add(trafficDataModule);
}
describeDomainMultiUsageDataResponse.setTrafficPerInterval(trafficPerInterval);
return describeDomainMultiUsageDataResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/transform/v20180510/DescribeDomainPathDataResponseUnmarshaller.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.transform.v20180510;
import java.util.ArrayList;
import java.util.List;
import com.aliyuncs.cdn.model.v20180510.DescribeDomainPathDataResponse;
import com.aliyuncs.cdn.model.v20180510.DescribeDomainPathDataResponse.UsageData;
import com.aliyuncs.transform.UnmarshallerContext;
public class DescribeDomainPathDataResponseUnmarshaller {
public static DescribeDomainPathDataResponse unmarshall(DescribeDomainPathDataResponse describeDomainPathDataResponse, UnmarshallerContext _ctx) {
describeDomainPathDataResponse.setEndTime(_ctx.stringValue("DescribeDomainPathDataResponse.EndTime"));
describeDomainPathDataResponse.setStartTime(_ctx.stringValue("DescribeDomainPathDataResponse.StartTime"));
describeDomainPathDataResponse.setPageSize(_ctx.integerValue("DescribeDomainPathDataResponse.PageSize"));
describeDomainPathDataResponse.setPageNumber(_ctx.integerValue("DescribeDomainPathDataResponse.PageNumber"));
describeDomainPathDataResponse.setTotalCount(_ctx.integerValue("DescribeDomainPathDataResponse.TotalCount"));
describeDomainPathDataResponse.setDomainName(_ctx.stringValue("DescribeDomainPathDataResponse.DomainName"));
describeDomainPathDataResponse.setDataInterval(_ctx.stringValue("DescribeDomainPathDataResponse.DataInterval"));
List<UsageData> pathDataPerInterval = new ArrayList<UsageData>();
for (int i = 0; i < _ctx.lengthValue("DescribeDomainPathDataResponse.PathDataPerInterval.Length"); i++) {
UsageData usageData = new UsageData();
usageData.setPath(_ctx.stringValue("DescribeDomainPathDataResponse.PathDataPerInterval["+ i +"].Path"));
usageData.setTime(_ctx.stringValue("DescribeDomainPathDataResponse.PathDataPerInterval["+ i +"].Time"));
usageData.setAcc(_ctx.integerValue("DescribeDomainPathDataResponse.PathDataPerInterval["+ i +"].Acc"));
usageData.setTraffic(_ctx.integerValue("DescribeDomainPathDataResponse.PathDataPerInterval["+ i +"].Traffic"));
pathDataPerInterval.add(usageData);
}
describeDomainPathDataResponse.setPathDataPerInterval(pathDataPerInterval);
return describeDomainPathDataResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/transform/v20180510/DescribeDomainPvDataResponseUnmarshaller.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.transform.v20180510;
import java.util.ArrayList;
import java.util.List;
import com.aliyuncs.cdn.model.v20180510.DescribeDomainPvDataResponse;
import com.aliyuncs.cdn.model.v20180510.DescribeDomainPvDataResponse.UsageData;
import com.aliyuncs.transform.UnmarshallerContext;
public class DescribeDomainPvDataResponseUnmarshaller {
public static DescribeDomainPvDataResponse unmarshall(DescribeDomainPvDataResponse describeDomainPvDataResponse, UnmarshallerContext _ctx) {
describeDomainPvDataResponse.setRequestId(_ctx.stringValue("DescribeDomainPvDataResponse.RequestId"));
describeDomainPvDataResponse.setEndTime(_ctx.stringValue("DescribeDomainPvDataResponse.EndTime"));
describeDomainPvDataResponse.setStartTime(_ctx.stringValue("DescribeDomainPvDataResponse.StartTime"));
describeDomainPvDataResponse.setDomainName(_ctx.stringValue("DescribeDomainPvDataResponse.DomainName"));
describeDomainPvDataResponse.setDataInterval(_ctx.stringValue("DescribeDomainPvDataResponse.DataInterval"));
List<UsageData> pvDataInterval = new ArrayList<UsageData>();
for (int i = 0; i < _ctx.lengthValue("DescribeDomainPvDataResponse.PvDataInterval.Length"); i++) {
UsageData usageData = new UsageData();
usageData.setValue(_ctx.stringValue("DescribeDomainPvDataResponse.PvDataInterval["+ i +"].Value"));
usageData.setTimeStamp(_ctx.stringValue("DescribeDomainPvDataResponse.PvDataInterval["+ i +"].TimeStamp"));
pvDataInterval.add(usageData);
}
describeDomainPvDataResponse.setPvDataInterval(pvDataInterval);
return describeDomainPvDataResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/transform/v20180510/DescribeDomainQpsDataByLayerResponseUnmarshaller.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.transform.v20180510;
import java.util.ArrayList;
import java.util.List;
import com.aliyuncs.cdn.model.v20180510.DescribeDomainQpsDataByLayerResponse;
import com.aliyuncs.cdn.model.v20180510.DescribeDomainQpsDataByLayerResponse.DataModule;
import com.aliyuncs.transform.UnmarshallerContext;
public class DescribeDomainQpsDataByLayerResponseUnmarshaller {
public static DescribeDomainQpsDataByLayerResponse unmarshall(DescribeDomainQpsDataByLayerResponse describeDomainQpsDataByLayerResponse, UnmarshallerContext _ctx) {
describeDomainQpsDataByLayerResponse.setRequestId(_ctx.stringValue("DescribeDomainQpsDataByLayerResponse.RequestId"));
describeDomainQpsDataByLayerResponse.setEndTime(_ctx.stringValue("DescribeDomainQpsDataByLayerResponse.EndTime"));
describeDomainQpsDataByLayerResponse.setStartTime(_ctx.stringValue("DescribeDomainQpsDataByLayerResponse.StartTime"));
describeDomainQpsDataByLayerResponse.setLayer(_ctx.stringValue("DescribeDomainQpsDataByLayerResponse.Layer"));
describeDomainQpsDataByLayerResponse.setDomainName(_ctx.stringValue("DescribeDomainQpsDataByLayerResponse.DomainName"));
describeDomainQpsDataByLayerResponse.setDataInterval(_ctx.stringValue("DescribeDomainQpsDataByLayerResponse.DataInterval"));
List<DataModule> qpsDataInterval = new ArrayList<DataModule>();
for (int i = 0; i < _ctx.lengthValue("DescribeDomainQpsDataByLayerResponse.QpsDataInterval.Length"); i++) {
DataModule dataModule = new DataModule();
dataModule.setValue(_ctx.stringValue("DescribeDomainQpsDataByLayerResponse.QpsDataInterval["+ i +"].Value"));
dataModule.setAccValue(_ctx.stringValue("DescribeDomainQpsDataByLayerResponse.QpsDataInterval["+ i +"].AccValue"));
dataModule.setAccDomesticValue(_ctx.stringValue("DescribeDomainQpsDataByLayerResponse.QpsDataInterval["+ i +"].AccDomesticValue"));
dataModule.setOverseasValue(_ctx.stringValue("DescribeDomainQpsDataByLayerResponse.QpsDataInterval["+ i +"].OverseasValue"));
dataModule.setAccOverseasValue(_ctx.stringValue("DescribeDomainQpsDataByLayerResponse.QpsDataInterval["+ i +"].AccOverseasValue"));
dataModule.setTimeStamp(_ctx.stringValue("DescribeDomainQpsDataByLayerResponse.QpsDataInterval["+ i +"].TimeStamp"));
dataModule.setDomesticValue(_ctx.stringValue("DescribeDomainQpsDataByLayerResponse.QpsDataInterval["+ i +"].DomesticValue"));
qpsDataInterval.add(dataModule);
}
describeDomainQpsDataByLayerResponse.setQpsDataInterval(qpsDataInterval);
return describeDomainQpsDataByLayerResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/transform/v20180510/DescribeDomainQpsDataResponseUnmarshaller.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.transform.v20180510;
import java.util.ArrayList;
import java.util.List;
import com.aliyuncs.cdn.model.v20180510.DescribeDomainQpsDataResponse;
import com.aliyuncs.cdn.model.v20180510.DescribeDomainQpsDataResponse.DataModule;
import com.aliyuncs.transform.UnmarshallerContext;
public class DescribeDomainQpsDataResponseUnmarshaller {
public static DescribeDomainQpsDataResponse unmarshall(DescribeDomainQpsDataResponse describeDomainQpsDataResponse, UnmarshallerContext _ctx) {
describeDomainQpsDataResponse.setRequestId(_ctx.stringValue("DescribeDomainQpsDataResponse.RequestId"));
describeDomainQpsDataResponse.setEndTime(_ctx.stringValue("DescribeDomainQpsDataResponse.EndTime"));
describeDomainQpsDataResponse.setStartTime(_ctx.stringValue("DescribeDomainQpsDataResponse.StartTime"));
describeDomainQpsDataResponse.setDomainName(_ctx.stringValue("DescribeDomainQpsDataResponse.DomainName"));
describeDomainQpsDataResponse.setDataInterval(_ctx.stringValue("DescribeDomainQpsDataResponse.DataInterval"));
List<DataModule> qpsDataInterval = new ArrayList<DataModule>();
for (int i = 0; i < _ctx.lengthValue("DescribeDomainQpsDataResponse.QpsDataInterval.Length"); i++) {
DataModule dataModule = new DataModule();
dataModule.setAccValue(_ctx.stringValue("DescribeDomainQpsDataResponse.QpsDataInterval["+ i +"].AccValue"));
dataModule.setAccDomesticValue(_ctx.stringValue("DescribeDomainQpsDataResponse.QpsDataInterval["+ i +"].AccDomesticValue"));
dataModule.setAccOverseasValue(_ctx.stringValue("DescribeDomainQpsDataResponse.QpsDataInterval["+ i +"].AccOverseasValue"));
dataModule.setHttpsValue(_ctx.stringValue("DescribeDomainQpsDataResponse.QpsDataInterval["+ i +"].HttpsValue"));
dataModule.setHttpsOverseasValue(_ctx.stringValue("DescribeDomainQpsDataResponse.QpsDataInterval["+ i +"].HttpsOverseasValue"));
dataModule.setDomesticValue(_ctx.stringValue("DescribeDomainQpsDataResponse.QpsDataInterval["+ i +"].DomesticValue"));
dataModule.setHttpsAccOverseasValue(_ctx.stringValue("DescribeDomainQpsDataResponse.QpsDataInterval["+ i +"].HttpsAccOverseasValue"));
dataModule.setHttpsDomesticValue(_ctx.stringValue("DescribeDomainQpsDataResponse.QpsDataInterval["+ i +"].HttpsDomesticValue"));
dataModule.setHttpsAccValue(_ctx.stringValue("DescribeDomainQpsDataResponse.QpsDataInterval["+ i +"].HttpsAccValue"));
dataModule.setValue(_ctx.stringValue("DescribeDomainQpsDataResponse.QpsDataInterval["+ i +"].Value"));
dataModule.setOverseasValue(_ctx.stringValue("DescribeDomainQpsDataResponse.QpsDataInterval["+ i +"].OverseasValue"));
dataModule.setTimeStamp(_ctx.stringValue("DescribeDomainQpsDataResponse.QpsDataInterval["+ i +"].TimeStamp"));
dataModule.setHttpsAccDomesticValue(_ctx.stringValue("DescribeDomainQpsDataResponse.QpsDataInterval["+ i +"].HttpsAccDomesticValue"));
qpsDataInterval.add(dataModule);
}
describeDomainQpsDataResponse.setQpsDataInterval(qpsDataInterval);
return describeDomainQpsDataResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/transform/v20180510/DescribeDomainRealTimeBpsDataResponseUnmarshaller.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.transform.v20180510;
import java.util.ArrayList;
import java.util.List;
import com.aliyuncs.cdn.model.v20180510.DescribeDomainRealTimeBpsDataResponse;
import com.aliyuncs.cdn.model.v20180510.DescribeDomainRealTimeBpsDataResponse.BpsModel;
import com.aliyuncs.transform.UnmarshallerContext;
public class DescribeDomainRealTimeBpsDataResponseUnmarshaller {
public static DescribeDomainRealTimeBpsDataResponse unmarshall(DescribeDomainRealTimeBpsDataResponse describeDomainRealTimeBpsDataResponse, UnmarshallerContext _ctx) {
describeDomainRealTimeBpsDataResponse.setRequestId(_ctx.stringValue("DescribeDomainRealTimeBpsDataResponse.RequestId"));
List<BpsModel> data = new ArrayList<BpsModel>();
for (int i = 0; i < _ctx.lengthValue("DescribeDomainRealTimeBpsDataResponse.Data.Length"); i++) {
BpsModel bpsModel = new BpsModel();
bpsModel.setBps(_ctx.floatValue("DescribeDomainRealTimeBpsDataResponse.Data["+ i +"].Bps"));
bpsModel.setTimeStamp(_ctx.stringValue("DescribeDomainRealTimeBpsDataResponse.Data["+ i +"].TimeStamp"));
data.add(bpsModel);
}
describeDomainRealTimeBpsDataResponse.setData(data);
return describeDomainRealTimeBpsDataResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/transform/v20180510/DescribeDomainRealTimeByteHitRateDataResponseUnmarshaller.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.transform.v20180510;
import java.util.ArrayList;
import java.util.List;
import com.aliyuncs.cdn.model.v20180510.DescribeDomainRealTimeByteHitRateDataResponse;
import com.aliyuncs.cdn.model.v20180510.DescribeDomainRealTimeByteHitRateDataResponse.ByteHitRateDataModel;
import com.aliyuncs.transform.UnmarshallerContext;
public class DescribeDomainRealTimeByteHitRateDataResponseUnmarshaller {
public static DescribeDomainRealTimeByteHitRateDataResponse unmarshall(DescribeDomainRealTimeByteHitRateDataResponse describeDomainRealTimeByteHitRateDataResponse, UnmarshallerContext _ctx) {
describeDomainRealTimeByteHitRateDataResponse.setRequestId(_ctx.stringValue("DescribeDomainRealTimeByteHitRateDataResponse.RequestId"));
List<ByteHitRateDataModel> data = new ArrayList<ByteHitRateDataModel>();
for (int i = 0; i < _ctx.lengthValue("DescribeDomainRealTimeByteHitRateDataResponse.Data.Length"); i++) {
ByteHitRateDataModel byteHitRateDataModel = new ByteHitRateDataModel();
byteHitRateDataModel.setByteHitRate(_ctx.floatValue("DescribeDomainRealTimeByteHitRateDataResponse.Data["+ i +"].ByteHitRate"));
byteHitRateDataModel.setTimeStamp(_ctx.stringValue("DescribeDomainRealTimeByteHitRateDataResponse.Data["+ i +"].TimeStamp"));
data.add(byteHitRateDataModel);
}
describeDomainRealTimeByteHitRateDataResponse.setData(data);
return describeDomainRealTimeByteHitRateDataResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/transform/v20180510/DescribeDomainRealTimeDetailDataResponseUnmarshaller.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.transform.v20180510;
import com.aliyuncs.cdn.model.v20180510.DescribeDomainRealTimeDetailDataResponse;
import com.aliyuncs.transform.UnmarshallerContext;
public class DescribeDomainRealTimeDetailDataResponseUnmarshaller {
public static DescribeDomainRealTimeDetailDataResponse unmarshall(DescribeDomainRealTimeDetailDataResponse describeDomainRealTimeDetailDataResponse, UnmarshallerContext _ctx) {
describeDomainRealTimeDetailDataResponse.setRequestId(_ctx.stringValue("DescribeDomainRealTimeDetailDataResponse.RequestId"));
describeDomainRealTimeDetailDataResponse.setData(_ctx.stringValue("DescribeDomainRealTimeDetailDataResponse.Data"));
return describeDomainRealTimeDetailDataResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/transform/v20180510/DescribeDomainRealTimeHttpCodeDataResponseUnmarshaller.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.transform.v20180510;
import java.util.ArrayList;
import java.util.List;
import com.aliyuncs.cdn.model.v20180510.DescribeDomainRealTimeHttpCodeDataResponse;
import com.aliyuncs.cdn.model.v20180510.DescribeDomainRealTimeHttpCodeDataResponse.UsageData;
import com.aliyuncs.cdn.model.v20180510.DescribeDomainRealTimeHttpCodeDataResponse.UsageData.RealTimeCodeProportionData;
import com.aliyuncs.transform.UnmarshallerContext;
public class DescribeDomainRealTimeHttpCodeDataResponseUnmarshaller {
public static DescribeDomainRealTimeHttpCodeDataResponse unmarshall(DescribeDomainRealTimeHttpCodeDataResponse describeDomainRealTimeHttpCodeDataResponse, UnmarshallerContext _ctx) {
describeDomainRealTimeHttpCodeDataResponse.setRequestId(_ctx.stringValue("DescribeDomainRealTimeHttpCodeDataResponse.RequestId"));
describeDomainRealTimeHttpCodeDataResponse.setEndTime(_ctx.stringValue("DescribeDomainRealTimeHttpCodeDataResponse.EndTime"));
describeDomainRealTimeHttpCodeDataResponse.setStartTime(_ctx.stringValue("DescribeDomainRealTimeHttpCodeDataResponse.StartTime"));
describeDomainRealTimeHttpCodeDataResponse.setDomainName(_ctx.stringValue("DescribeDomainRealTimeHttpCodeDataResponse.DomainName"));
describeDomainRealTimeHttpCodeDataResponse.setDataInterval(_ctx.stringValue("DescribeDomainRealTimeHttpCodeDataResponse.DataInterval"));
List<UsageData> realTimeHttpCodeData = new ArrayList<UsageData>();
for (int i = 0; i < _ctx.lengthValue("DescribeDomainRealTimeHttpCodeDataResponse.RealTimeHttpCodeData.Length"); i++) {
UsageData usageData = new UsageData();
usageData.setTimeStamp(_ctx.stringValue("DescribeDomainRealTimeHttpCodeDataResponse.RealTimeHttpCodeData["+ i +"].TimeStamp"));
List<RealTimeCodeProportionData> value = new ArrayList<RealTimeCodeProportionData>();
for (int j = 0; j < _ctx.lengthValue("DescribeDomainRealTimeHttpCodeDataResponse.RealTimeHttpCodeData["+ i +"].Value.Length"); j++) {
RealTimeCodeProportionData realTimeCodeProportionData = new RealTimeCodeProportionData();
realTimeCodeProportionData.setCode(_ctx.stringValue("DescribeDomainRealTimeHttpCodeDataResponse.RealTimeHttpCodeData["+ i +"].Value["+ j +"].Code"));
realTimeCodeProportionData.setProportion(_ctx.stringValue("DescribeDomainRealTimeHttpCodeDataResponse.RealTimeHttpCodeData["+ i +"].Value["+ j +"].Proportion"));
realTimeCodeProportionData.setCount(_ctx.stringValue("DescribeDomainRealTimeHttpCodeDataResponse.RealTimeHttpCodeData["+ i +"].Value["+ j +"].Count"));
value.add(realTimeCodeProportionData);
}
usageData.setValue(value);
realTimeHttpCodeData.add(usageData);
}
describeDomainRealTimeHttpCodeDataResponse.setRealTimeHttpCodeData(realTimeHttpCodeData);
return describeDomainRealTimeHttpCodeDataResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/transform/v20180510/DescribeDomainRealTimeQpsDataResponseUnmarshaller.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.transform.v20180510;
import java.util.ArrayList;
import java.util.List;
import com.aliyuncs.cdn.model.v20180510.DescribeDomainRealTimeQpsDataResponse;
import com.aliyuncs.cdn.model.v20180510.DescribeDomainRealTimeQpsDataResponse.QpsModel;
import com.aliyuncs.transform.UnmarshallerContext;
public class DescribeDomainRealTimeQpsDataResponseUnmarshaller {
public static DescribeDomainRealTimeQpsDataResponse unmarshall(DescribeDomainRealTimeQpsDataResponse describeDomainRealTimeQpsDataResponse, UnmarshallerContext _ctx) {
describeDomainRealTimeQpsDataResponse.setRequestId(_ctx.stringValue("DescribeDomainRealTimeQpsDataResponse.RequestId"));
List<QpsModel> data = new ArrayList<QpsModel>();
for (int i = 0; i < _ctx.lengthValue("DescribeDomainRealTimeQpsDataResponse.Data.Length"); i++) {
QpsModel qpsModel = new QpsModel();
qpsModel.setQps(_ctx.floatValue("DescribeDomainRealTimeQpsDataResponse.Data["+ i +"].Qps"));
qpsModel.setTimeStamp(_ctx.stringValue("DescribeDomainRealTimeQpsDataResponse.Data["+ i +"].TimeStamp"));
data.add(qpsModel);
}
describeDomainRealTimeQpsDataResponse.setData(data);
return describeDomainRealTimeQpsDataResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/transform/v20180510/DescribeDomainRealTimeReqHitRateDataResponseUnmarshaller.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.transform.v20180510;
import java.util.ArrayList;
import java.util.List;
import com.aliyuncs.cdn.model.v20180510.DescribeDomainRealTimeReqHitRateDataResponse;
import com.aliyuncs.cdn.model.v20180510.DescribeDomainRealTimeReqHitRateDataResponse.ReqHitRateDataModel;
import com.aliyuncs.transform.UnmarshallerContext;
public class DescribeDomainRealTimeReqHitRateDataResponseUnmarshaller {
public static DescribeDomainRealTimeReqHitRateDataResponse unmarshall(DescribeDomainRealTimeReqHitRateDataResponse describeDomainRealTimeReqHitRateDataResponse, UnmarshallerContext _ctx) {
describeDomainRealTimeReqHitRateDataResponse.setRequestId(_ctx.stringValue("DescribeDomainRealTimeReqHitRateDataResponse.RequestId"));
List<ReqHitRateDataModel> data = new ArrayList<ReqHitRateDataModel>();
for (int i = 0; i < _ctx.lengthValue("DescribeDomainRealTimeReqHitRateDataResponse.Data.Length"); i++) {
ReqHitRateDataModel reqHitRateDataModel = new ReqHitRateDataModel();
reqHitRateDataModel.setReqHitRate(_ctx.floatValue("DescribeDomainRealTimeReqHitRateDataResponse.Data["+ i +"].ReqHitRate"));
reqHitRateDataModel.setTimeStamp(_ctx.stringValue("DescribeDomainRealTimeReqHitRateDataResponse.Data["+ i +"].TimeStamp"));
data.add(reqHitRateDataModel);
}
describeDomainRealTimeReqHitRateDataResponse.setData(data);
return describeDomainRealTimeReqHitRateDataResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cdn/3.8.8/com/aliyuncs/cdn/transform/v20180510/DescribeDomainRealTimeSrcBpsDataResponseUnmarshaller.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.transform.v20180510;
import java.util.ArrayList;
import java.util.List;
import com.aliyuncs.cdn.model.v20180510.DescribeDomainRealTimeSrcBpsDataResponse;
import com.aliyuncs.cdn.model.v20180510.DescribeDomainRealTimeSrcBpsDataResponse.DataModule;
import com.aliyuncs.transform.UnmarshallerContext;
public class DescribeDomainRealTimeSrcBpsDataResponseUnmarshaller {
public static DescribeDomainRealTimeSrcBpsDataResponse unmarshall(DescribeDomainRealTimeSrcBpsDataResponse describeDomainRealTimeSrcBpsDataResponse, UnmarshallerContext _ctx) {
describeDomainRealTimeSrcBpsDataResponse.setRequestId(_ctx.stringValue("DescribeDomainRealTimeSrcBpsDataResponse.RequestId"));
describeDomainRealTimeSrcBpsDataResponse.setEndTime(_ctx.stringValue("DescribeDomainRealTimeSrcBpsDataResponse.EndTime"));
describeDomainRealTimeSrcBpsDataResponse.setStartTime(_ctx.stringValue("DescribeDomainRealTimeSrcBpsDataResponse.StartTime"));
describeDomainRealTimeSrcBpsDataResponse.setDomainName(_ctx.stringValue("DescribeDomainRealTimeSrcBpsDataResponse.DomainName"));
describeDomainRealTimeSrcBpsDataResponse.setDataInterval(_ctx.stringValue("DescribeDomainRealTimeSrcBpsDataResponse.DataInterval"));
List<DataModule> realTimeSrcBpsDataPerInterval = new ArrayList<DataModule>();
for (int i = 0; i < _ctx.lengthValue("DescribeDomainRealTimeSrcBpsDataResponse.RealTimeSrcBpsDataPerInterval.Length"); i++) {
DataModule dataModule = new DataModule();
dataModule.setValue(_ctx.stringValue("DescribeDomainRealTimeSrcBpsDataResponse.RealTimeSrcBpsDataPerInterval["+ i +"].Value"));
dataModule.setTimeStamp(_ctx.stringValue("DescribeDomainRealTimeSrcBpsDataResponse.RealTimeSrcBpsDataPerInterval["+ i +"].TimeStamp"));
realTimeSrcBpsDataPerInterval.add(dataModule);
}
describeDomainRealTimeSrcBpsDataResponse.setRealTimeSrcBpsDataPerInterval(realTimeSrcBpsDataPerInterval);
return describeDomainRealTimeSrcBpsDataResponse;
}
}
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.