index
int64 | repo_id
string | file_path
string | content
string |
|---|---|---|---|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cbn/1.0.40/com/aliyuncs/cbn/model
|
java-sources/com/aliyun/aliyun-java-sdk-cbn/1.0.40/com/aliyuncs/cbn/model/v20170912/UpdateTrafficMarkingPolicyAttributeRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.cbn.model.v20170912;
import com.aliyuncs.RpcAcsRequest;
import java.util.List;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.cbn.Endpoint;
/**
* @author auto create
* @version
*/
public class UpdateTrafficMarkingPolicyAttributeRequest extends RpcAcsRequest<UpdateTrafficMarkingPolicyAttributeResponse> {
private Long resourceOwnerId;
private String clientToken;
private List<AddTrafficMatchRules> addTrafficMatchRuless;
private String trafficMarkingPolicyDescription;
private String trafficMarkingPolicyId;
private String trafficMarkingPolicyName;
private Boolean dryRun;
private String resourceOwnerAccount;
private String ownerAccount;
private Long ownerId;
private List<DeleteTrafficMatchRules> deleteTrafficMatchRuless;
public UpdateTrafficMarkingPolicyAttributeRequest() {
super("Cbn", "2017-09-12", "UpdateTrafficMarkingPolicyAttribute", "cbn");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public Long getResourceOwnerId() {
return this.resourceOwnerId;
}
public void setResourceOwnerId(Long resourceOwnerId) {
this.resourceOwnerId = resourceOwnerId;
if(resourceOwnerId != null){
putQueryParameter("ResourceOwnerId", resourceOwnerId.toString());
}
}
public String getClientToken() {
return this.clientToken;
}
public void setClientToken(String clientToken) {
this.clientToken = clientToken;
if(clientToken != null){
putQueryParameter("ClientToken", clientToken);
}
}
public List<AddTrafficMatchRules> getAddTrafficMatchRuless() {
return this.addTrafficMatchRuless;
}
public void setAddTrafficMatchRuless(List<AddTrafficMatchRules> addTrafficMatchRuless) {
this.addTrafficMatchRuless = addTrafficMatchRuless;
if (addTrafficMatchRuless != null) {
for (int depth1 = 0; depth1 < addTrafficMatchRuless.size(); depth1++) {
if (addTrafficMatchRuless.get(depth1).getDstPortRanges() != null) {
for (int i = 0; i < addTrafficMatchRuless.get(depth1).getDstPortRanges().size(); i++) {
putQueryParameter("AddTrafficMatchRules." + (depth1 + 1) + ".DstPortRange." + (i + 1) , addTrafficMatchRuless.get(depth1).getDstPortRanges().get(i));
}
}
putQueryParameter("AddTrafficMatchRules." + (depth1 + 1) + ".MatchDscp" , addTrafficMatchRuless.get(depth1).getMatchDscp());
putQueryParameter("AddTrafficMatchRules." + (depth1 + 1) + ".Protocol" , addTrafficMatchRuless.get(depth1).getBizProtocol());
putQueryParameter("AddTrafficMatchRules." + (depth1 + 1) + ".TrafficMatchRuleDescription" , addTrafficMatchRuless.get(depth1).getTrafficMatchRuleDescription());
if (addTrafficMatchRuless.get(depth1).getSrcPortRanges() != null) {
for (int i = 0; i < addTrafficMatchRuless.get(depth1).getSrcPortRanges().size(); i++) {
putQueryParameter("AddTrafficMatchRules." + (depth1 + 1) + ".SrcPortRange." + (i + 1) , addTrafficMatchRuless.get(depth1).getSrcPortRanges().get(i));
}
}
putQueryParameter("AddTrafficMatchRules." + (depth1 + 1) + ".DstCidr" , addTrafficMatchRuless.get(depth1).getDstCidr());
putQueryParameter("AddTrafficMatchRules." + (depth1 + 1) + ".TrafficMatchRuleName" , addTrafficMatchRuless.get(depth1).getTrafficMatchRuleName());
putQueryParameter("AddTrafficMatchRules." + (depth1 + 1) + ".SrcCidr" , addTrafficMatchRuless.get(depth1).getSrcCidr());
}
}
}
public String getTrafficMarkingPolicyDescription() {
return this.trafficMarkingPolicyDescription;
}
public void setTrafficMarkingPolicyDescription(String trafficMarkingPolicyDescription) {
this.trafficMarkingPolicyDescription = trafficMarkingPolicyDescription;
if(trafficMarkingPolicyDescription != null){
putQueryParameter("TrafficMarkingPolicyDescription", trafficMarkingPolicyDescription);
}
}
public String getTrafficMarkingPolicyId() {
return this.trafficMarkingPolicyId;
}
public void setTrafficMarkingPolicyId(String trafficMarkingPolicyId) {
this.trafficMarkingPolicyId = trafficMarkingPolicyId;
if(trafficMarkingPolicyId != null){
putQueryParameter("TrafficMarkingPolicyId", trafficMarkingPolicyId);
}
}
public String getTrafficMarkingPolicyName() {
return this.trafficMarkingPolicyName;
}
public void setTrafficMarkingPolicyName(String trafficMarkingPolicyName) {
this.trafficMarkingPolicyName = trafficMarkingPolicyName;
if(trafficMarkingPolicyName != null){
putQueryParameter("TrafficMarkingPolicyName", trafficMarkingPolicyName);
}
}
public Boolean getDryRun() {
return this.dryRun;
}
public void setDryRun(Boolean dryRun) {
this.dryRun = dryRun;
if(dryRun != null){
putQueryParameter("DryRun", dryRun.toString());
}
}
public String getResourceOwnerAccount() {
return this.resourceOwnerAccount;
}
public void setResourceOwnerAccount(String resourceOwnerAccount) {
this.resourceOwnerAccount = resourceOwnerAccount;
if(resourceOwnerAccount != null){
putQueryParameter("ResourceOwnerAccount", resourceOwnerAccount);
}
}
public String getOwnerAccount() {
return this.ownerAccount;
}
public void setOwnerAccount(String ownerAccount) {
this.ownerAccount = ownerAccount;
if(ownerAccount != null){
putQueryParameter("OwnerAccount", ownerAccount);
}
}
public Long getOwnerId() {
return this.ownerId;
}
public void setOwnerId(Long ownerId) {
this.ownerId = ownerId;
if(ownerId != null){
putQueryParameter("OwnerId", ownerId.toString());
}
}
public List<DeleteTrafficMatchRules> getDeleteTrafficMatchRuless() {
return this.deleteTrafficMatchRuless;
}
public void setDeleteTrafficMatchRuless(List<DeleteTrafficMatchRules> deleteTrafficMatchRuless) {
this.deleteTrafficMatchRuless = deleteTrafficMatchRuless;
if (deleteTrafficMatchRuless != null) {
for (int depth1 = 0; depth1 < deleteTrafficMatchRuless.size(); depth1++) {
if (deleteTrafficMatchRuless.get(depth1).getDstPortRanges() != null) {
for (int i = 0; i < deleteTrafficMatchRuless.get(depth1).getDstPortRanges().size(); i++) {
putQueryParameter("DeleteTrafficMatchRules." + (depth1 + 1) + ".DstPortRange." + (i + 1) , deleteTrafficMatchRuless.get(depth1).getDstPortRanges().get(i));
}
}
putQueryParameter("DeleteTrafficMatchRules." + (depth1 + 1) + ".MatchDscp" , deleteTrafficMatchRuless.get(depth1).getMatchDscp());
putQueryParameter("DeleteTrafficMatchRules." + (depth1 + 1) + ".Protocol" , deleteTrafficMatchRuless.get(depth1).getBizProtocol());
putQueryParameter("DeleteTrafficMatchRules." + (depth1 + 1) + ".TrafficMatchRuleDescription" , deleteTrafficMatchRuless.get(depth1).getTrafficMatchRuleDescription());
if (deleteTrafficMatchRuless.get(depth1).getSrcPortRanges() != null) {
for (int i = 0; i < deleteTrafficMatchRuless.get(depth1).getSrcPortRanges().size(); i++) {
putQueryParameter("DeleteTrafficMatchRules." + (depth1 + 1) + ".SrcPortRange." + (i + 1) , deleteTrafficMatchRuless.get(depth1).getSrcPortRanges().get(i));
}
}
putQueryParameter("DeleteTrafficMatchRules." + (depth1 + 1) + ".DstCidr" , deleteTrafficMatchRuless.get(depth1).getDstCidr());
putQueryParameter("DeleteTrafficMatchRules." + (depth1 + 1) + ".TrafficMatchRuleName" , deleteTrafficMatchRuless.get(depth1).getTrafficMatchRuleName());
putQueryParameter("DeleteTrafficMatchRules." + (depth1 + 1) + ".SrcCidr" , deleteTrafficMatchRuless.get(depth1).getSrcCidr());
}
}
}
public static class AddTrafficMatchRules {
private List<Integer> dstPortRanges;
private Integer matchDscp;
private String protocol;
private String trafficMatchRuleDescription;
private List<Integer> srcPortRanges;
private String dstCidr;
private String trafficMatchRuleName;
private String srcCidr;
public List<Integer> getDstPortRanges() {
return this.dstPortRanges;
}
public void setDstPortRanges(List<Integer> dstPortRanges) {
this.dstPortRanges = dstPortRanges;
}
public Integer getMatchDscp() {
return this.matchDscp;
}
public void setMatchDscp(Integer matchDscp) {
this.matchDscp = matchDscp;
}
public String getBizProtocol() {
return this.protocol;
}
public void setBizProtocol(String protocol) {
this.protocol = protocol;
}
public String getTrafficMatchRuleDescription() {
return this.trafficMatchRuleDescription;
}
public void setTrafficMatchRuleDescription(String trafficMatchRuleDescription) {
this.trafficMatchRuleDescription = trafficMatchRuleDescription;
}
public List<Integer> getSrcPortRanges() {
return this.srcPortRanges;
}
public void setSrcPortRanges(List<Integer> srcPortRanges) {
this.srcPortRanges = srcPortRanges;
}
public String getDstCidr() {
return this.dstCidr;
}
public void setDstCidr(String dstCidr) {
this.dstCidr = dstCidr;
}
public String getTrafficMatchRuleName() {
return this.trafficMatchRuleName;
}
public void setTrafficMatchRuleName(String trafficMatchRuleName) {
this.trafficMatchRuleName = trafficMatchRuleName;
}
public String getSrcCidr() {
return this.srcCidr;
}
public void setSrcCidr(String srcCidr) {
this.srcCidr = srcCidr;
}
}
public static class DeleteTrafficMatchRules {
private List<Integer> dstPortRanges;
private Integer matchDscp;
private String protocol;
private String trafficMatchRuleDescription;
private List<Integer> srcPortRanges;
private String dstCidr;
private String trafficMatchRuleName;
private String srcCidr;
public List<Integer> getDstPortRanges() {
return this.dstPortRanges;
}
public void setDstPortRanges(List<Integer> dstPortRanges) {
this.dstPortRanges = dstPortRanges;
}
public Integer getMatchDscp() {
return this.matchDscp;
}
public void setMatchDscp(Integer matchDscp) {
this.matchDscp = matchDscp;
}
public String getBizProtocol() {
return this.protocol;
}
public void setBizProtocol(String protocol) {
this.protocol = protocol;
}
public String getTrafficMatchRuleDescription() {
return this.trafficMatchRuleDescription;
}
public void setTrafficMatchRuleDescription(String trafficMatchRuleDescription) {
this.trafficMatchRuleDescription = trafficMatchRuleDescription;
}
public List<Integer> getSrcPortRanges() {
return this.srcPortRanges;
}
public void setSrcPortRanges(List<Integer> srcPortRanges) {
this.srcPortRanges = srcPortRanges;
}
public String getDstCidr() {
return this.dstCidr;
}
public void setDstCidr(String dstCidr) {
this.dstCidr = dstCidr;
}
public String getTrafficMatchRuleName() {
return this.trafficMatchRuleName;
}
public void setTrafficMatchRuleName(String trafficMatchRuleName) {
this.trafficMatchRuleName = trafficMatchRuleName;
}
public String getSrcCidr() {
return this.srcCidr;
}
public void setSrcCidr(String srcCidr) {
this.srcCidr = srcCidr;
}
}
@Override
public Class<UpdateTrafficMarkingPolicyAttributeResponse> getResponseClass() {
return UpdateTrafficMarkingPolicyAttributeResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cbn/1.0.40/com/aliyuncs/cbn/model
|
java-sources/com/aliyun/aliyun-java-sdk-cbn/1.0.40/com/aliyuncs/cbn/model/v20170912/UpdateTrafficMarkingPolicyAttributeResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.cbn.model.v20170912;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.cbn.transform.v20170912.UpdateTrafficMarkingPolicyAttributeResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class UpdateTrafficMarkingPolicyAttributeResponse extends AcsResponse {
private String requestId;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
@Override
public UpdateTrafficMarkingPolicyAttributeResponse getInstance(UnmarshallerContext context) {
return UpdateTrafficMarkingPolicyAttributeResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cbn/1.0.40/com/aliyuncs/cbn/model
|
java-sources/com/aliyun/aliyun-java-sdk-cbn/1.0.40/com/aliyuncs/cbn/model/v20170912/UpdateTransitRouterEcrAttachmentAttributeRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.cbn.model.v20170912;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.cbn.Endpoint;
/**
* @author auto create
* @version
*/
public class UpdateTransitRouterEcrAttachmentAttributeRequest extends RpcAcsRequest<UpdateTransitRouterEcrAttachmentAttributeResponse> {
private Long resourceOwnerId;
private String clientToken;
private String transitRouterAttachmentName;
private Boolean dryRun;
private String resourceOwnerAccount;
private String ownerAccount;
private Long ownerId;
private String transitRouterAttachmentId;
private String transitRouterAttachmentDescription;
public UpdateTransitRouterEcrAttachmentAttributeRequest() {
super("Cbn", "2017-09-12", "UpdateTransitRouterEcrAttachmentAttribute", "cbn");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public Long getResourceOwnerId() {
return this.resourceOwnerId;
}
public void setResourceOwnerId(Long resourceOwnerId) {
this.resourceOwnerId = resourceOwnerId;
if(resourceOwnerId != null){
putQueryParameter("ResourceOwnerId", resourceOwnerId.toString());
}
}
public String getClientToken() {
return this.clientToken;
}
public void setClientToken(String clientToken) {
this.clientToken = clientToken;
if(clientToken != null){
putQueryParameter("ClientToken", clientToken);
}
}
public String getTransitRouterAttachmentName() {
return this.transitRouterAttachmentName;
}
public void setTransitRouterAttachmentName(String transitRouterAttachmentName) {
this.transitRouterAttachmentName = transitRouterAttachmentName;
if(transitRouterAttachmentName != null){
putQueryParameter("TransitRouterAttachmentName", transitRouterAttachmentName);
}
}
public Boolean getDryRun() {
return this.dryRun;
}
public void setDryRun(Boolean dryRun) {
this.dryRun = dryRun;
if(dryRun != null){
putQueryParameter("DryRun", dryRun.toString());
}
}
public String getResourceOwnerAccount() {
return this.resourceOwnerAccount;
}
public void setResourceOwnerAccount(String resourceOwnerAccount) {
this.resourceOwnerAccount = resourceOwnerAccount;
if(resourceOwnerAccount != null){
putQueryParameter("ResourceOwnerAccount", resourceOwnerAccount);
}
}
public String getOwnerAccount() {
return this.ownerAccount;
}
public void setOwnerAccount(String ownerAccount) {
this.ownerAccount = ownerAccount;
if(ownerAccount != null){
putQueryParameter("OwnerAccount", ownerAccount);
}
}
public Long getOwnerId() {
return this.ownerId;
}
public void setOwnerId(Long ownerId) {
this.ownerId = ownerId;
if(ownerId != null){
putQueryParameter("OwnerId", ownerId.toString());
}
}
public String getTransitRouterAttachmentId() {
return this.transitRouterAttachmentId;
}
public void setTransitRouterAttachmentId(String transitRouterAttachmentId) {
this.transitRouterAttachmentId = transitRouterAttachmentId;
if(transitRouterAttachmentId != null){
putQueryParameter("TransitRouterAttachmentId", transitRouterAttachmentId);
}
}
public String getTransitRouterAttachmentDescription() {
return this.transitRouterAttachmentDescription;
}
public void setTransitRouterAttachmentDescription(String transitRouterAttachmentDescription) {
this.transitRouterAttachmentDescription = transitRouterAttachmentDescription;
if(transitRouterAttachmentDescription != null){
putQueryParameter("TransitRouterAttachmentDescription", transitRouterAttachmentDescription);
}
}
@Override
public Class<UpdateTransitRouterEcrAttachmentAttributeResponse> getResponseClass() {
return UpdateTransitRouterEcrAttachmentAttributeResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cbn/1.0.40/com/aliyuncs/cbn/model
|
java-sources/com/aliyun/aliyun-java-sdk-cbn/1.0.40/com/aliyuncs/cbn/model/v20170912/UpdateTransitRouterEcrAttachmentAttributeResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.cbn.model.v20170912;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.cbn.transform.v20170912.UpdateTransitRouterEcrAttachmentAttributeResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class UpdateTransitRouterEcrAttachmentAttributeResponse extends AcsResponse {
private String requestId;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
@Override
public UpdateTransitRouterEcrAttachmentAttributeResponse getInstance(UnmarshallerContext context) {
return UpdateTransitRouterEcrAttachmentAttributeResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cbn/1.0.40/com/aliyuncs/cbn/model
|
java-sources/com/aliyun/aliyun-java-sdk-cbn/1.0.40/com/aliyuncs/cbn/model/v20170912/UpdateTransitRouterPeerAttachmentAttributeRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.cbn.model.v20170912;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.cbn.Endpoint;
/**
* @author auto create
* @version
*/
public class UpdateTransitRouterPeerAttachmentAttributeRequest extends RpcAcsRequest<UpdateTransitRouterPeerAttachmentAttributeResponse> {
private Long resourceOwnerId;
private String bandwidthType;
private String clientToken;
private String transitRouterAttachmentName;
private String defaultLinkType;
private Boolean autoPublishRouteEnabled;
private Boolean dryRun;
private String resourceOwnerAccount;
private Integer bandwidth;
private String ownerAccount;
private Long ownerId;
private String transitRouterAttachmentId;
private String transitRouterAttachmentDescription;
private String cenBandwidthPackageId;
public UpdateTransitRouterPeerAttachmentAttributeRequest() {
super("Cbn", "2017-09-12", "UpdateTransitRouterPeerAttachmentAttribute", "cbn");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public Long getResourceOwnerId() {
return this.resourceOwnerId;
}
public void setResourceOwnerId(Long resourceOwnerId) {
this.resourceOwnerId = resourceOwnerId;
if(resourceOwnerId != null){
putQueryParameter("ResourceOwnerId", resourceOwnerId.toString());
}
}
public String getBandwidthType() {
return this.bandwidthType;
}
public void setBandwidthType(String bandwidthType) {
this.bandwidthType = bandwidthType;
if(bandwidthType != null){
putQueryParameter("BandwidthType", bandwidthType);
}
}
public String getClientToken() {
return this.clientToken;
}
public void setClientToken(String clientToken) {
this.clientToken = clientToken;
if(clientToken != null){
putQueryParameter("ClientToken", clientToken);
}
}
public String getTransitRouterAttachmentName() {
return this.transitRouterAttachmentName;
}
public void setTransitRouterAttachmentName(String transitRouterAttachmentName) {
this.transitRouterAttachmentName = transitRouterAttachmentName;
if(transitRouterAttachmentName != null){
putQueryParameter("TransitRouterAttachmentName", transitRouterAttachmentName);
}
}
public String getDefaultLinkType() {
return this.defaultLinkType;
}
public void setDefaultLinkType(String defaultLinkType) {
this.defaultLinkType = defaultLinkType;
if(defaultLinkType != null){
putQueryParameter("DefaultLinkType", defaultLinkType);
}
}
public Boolean getAutoPublishRouteEnabled() {
return this.autoPublishRouteEnabled;
}
public void setAutoPublishRouteEnabled(Boolean autoPublishRouteEnabled) {
this.autoPublishRouteEnabled = autoPublishRouteEnabled;
if(autoPublishRouteEnabled != null){
putQueryParameter("AutoPublishRouteEnabled", autoPublishRouteEnabled.toString());
}
}
public Boolean getDryRun() {
return this.dryRun;
}
public void setDryRun(Boolean dryRun) {
this.dryRun = dryRun;
if(dryRun != null){
putQueryParameter("DryRun", dryRun.toString());
}
}
public String getResourceOwnerAccount() {
return this.resourceOwnerAccount;
}
public void setResourceOwnerAccount(String resourceOwnerAccount) {
this.resourceOwnerAccount = resourceOwnerAccount;
if(resourceOwnerAccount != null){
putQueryParameter("ResourceOwnerAccount", resourceOwnerAccount);
}
}
public Integer getBandwidth() {
return this.bandwidth;
}
public void setBandwidth(Integer bandwidth) {
this.bandwidth = bandwidth;
if(bandwidth != null){
putQueryParameter("Bandwidth", bandwidth.toString());
}
}
public String getOwnerAccount() {
return this.ownerAccount;
}
public void setOwnerAccount(String ownerAccount) {
this.ownerAccount = ownerAccount;
if(ownerAccount != null){
putQueryParameter("OwnerAccount", ownerAccount);
}
}
public Long getOwnerId() {
return this.ownerId;
}
public void setOwnerId(Long ownerId) {
this.ownerId = ownerId;
if(ownerId != null){
putQueryParameter("OwnerId", ownerId.toString());
}
}
public String getTransitRouterAttachmentId() {
return this.transitRouterAttachmentId;
}
public void setTransitRouterAttachmentId(String transitRouterAttachmentId) {
this.transitRouterAttachmentId = transitRouterAttachmentId;
if(transitRouterAttachmentId != null){
putQueryParameter("TransitRouterAttachmentId", transitRouterAttachmentId);
}
}
public String getTransitRouterAttachmentDescription() {
return this.transitRouterAttachmentDescription;
}
public void setTransitRouterAttachmentDescription(String transitRouterAttachmentDescription) {
this.transitRouterAttachmentDescription = transitRouterAttachmentDescription;
if(transitRouterAttachmentDescription != null){
putQueryParameter("TransitRouterAttachmentDescription", transitRouterAttachmentDescription);
}
}
public String getCenBandwidthPackageId() {
return this.cenBandwidthPackageId;
}
public void setCenBandwidthPackageId(String cenBandwidthPackageId) {
this.cenBandwidthPackageId = cenBandwidthPackageId;
if(cenBandwidthPackageId != null){
putQueryParameter("CenBandwidthPackageId", cenBandwidthPackageId);
}
}
@Override
public Class<UpdateTransitRouterPeerAttachmentAttributeResponse> getResponseClass() {
return UpdateTransitRouterPeerAttachmentAttributeResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cbn/1.0.40/com/aliyuncs/cbn/model
|
java-sources/com/aliyun/aliyun-java-sdk-cbn/1.0.40/com/aliyuncs/cbn/model/v20170912/UpdateTransitRouterPeerAttachmentAttributeResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.cbn.model.v20170912;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.cbn.transform.v20170912.UpdateTransitRouterPeerAttachmentAttributeResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class UpdateTransitRouterPeerAttachmentAttributeResponse extends AcsResponse {
private String requestId;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
@Override
public UpdateTransitRouterPeerAttachmentAttributeResponse getInstance(UnmarshallerContext context) {
return UpdateTransitRouterPeerAttachmentAttributeResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cbn/1.0.40/com/aliyuncs/cbn/model
|
java-sources/com/aliyun/aliyun-java-sdk-cbn/1.0.40/com/aliyuncs/cbn/model/v20170912/UpdateTransitRouterRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.cbn.model.v20170912;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.cbn.Endpoint;
/**
* @author auto create
* @version
*/
public class UpdateTransitRouterRequest extends RpcAcsRequest<UpdateTransitRouterResponse> {
private String transitRouterName;
private Long resourceOwnerId;
private String clientToken;
private Boolean dryRun;
private String resourceOwnerAccount;
private String ownerAccount;
private Long ownerId;
private String transitRouterId;
private String transitRouterDescription;
public UpdateTransitRouterRequest() {
super("Cbn", "2017-09-12", "UpdateTransitRouter", "cbn");
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 getTransitRouterName() {
return this.transitRouterName;
}
public void setTransitRouterName(String transitRouterName) {
this.transitRouterName = transitRouterName;
if(transitRouterName != null){
putQueryParameter("TransitRouterName", transitRouterName);
}
}
public Long getResourceOwnerId() {
return this.resourceOwnerId;
}
public void setResourceOwnerId(Long resourceOwnerId) {
this.resourceOwnerId = resourceOwnerId;
if(resourceOwnerId != null){
putQueryParameter("ResourceOwnerId", resourceOwnerId.toString());
}
}
public String getClientToken() {
return this.clientToken;
}
public void setClientToken(String clientToken) {
this.clientToken = clientToken;
if(clientToken != null){
putQueryParameter("ClientToken", clientToken);
}
}
public Boolean getDryRun() {
return this.dryRun;
}
public void setDryRun(Boolean dryRun) {
this.dryRun = dryRun;
if(dryRun != null){
putQueryParameter("DryRun", dryRun.toString());
}
}
public String getResourceOwnerAccount() {
return this.resourceOwnerAccount;
}
public void setResourceOwnerAccount(String resourceOwnerAccount) {
this.resourceOwnerAccount = resourceOwnerAccount;
if(resourceOwnerAccount != null){
putQueryParameter("ResourceOwnerAccount", resourceOwnerAccount);
}
}
public String getOwnerAccount() {
return this.ownerAccount;
}
public void setOwnerAccount(String ownerAccount) {
this.ownerAccount = ownerAccount;
if(ownerAccount != null){
putQueryParameter("OwnerAccount", ownerAccount);
}
}
public Long getOwnerId() {
return this.ownerId;
}
public void setOwnerId(Long ownerId) {
this.ownerId = ownerId;
if(ownerId != null){
putQueryParameter("OwnerId", ownerId.toString());
}
}
public String getTransitRouterId() {
return this.transitRouterId;
}
public void setTransitRouterId(String transitRouterId) {
this.transitRouterId = transitRouterId;
if(transitRouterId != null){
putQueryParameter("TransitRouterId", transitRouterId);
}
}
public String getTransitRouterDescription() {
return this.transitRouterDescription;
}
public void setTransitRouterDescription(String transitRouterDescription) {
this.transitRouterDescription = transitRouterDescription;
if(transitRouterDescription != null){
putQueryParameter("TransitRouterDescription", transitRouterDescription);
}
}
@Override
public Class<UpdateTransitRouterResponse> getResponseClass() {
return UpdateTransitRouterResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cbn/1.0.40/com/aliyuncs/cbn/model
|
java-sources/com/aliyun/aliyun-java-sdk-cbn/1.0.40/com/aliyuncs/cbn/model/v20170912/UpdateTransitRouterResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.cbn.model.v20170912;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.cbn.transform.v20170912.UpdateTransitRouterResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class UpdateTransitRouterResponse extends AcsResponse {
private String requestId;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
@Override
public UpdateTransitRouterResponse getInstance(UnmarshallerContext context) {
return UpdateTransitRouterResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cbn/1.0.40/com/aliyuncs/cbn/model
|
java-sources/com/aliyun/aliyun-java-sdk-cbn/1.0.40/com/aliyuncs/cbn/model/v20170912/UpdateTransitRouterRouteEntryRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.cbn.model.v20170912;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.cbn.Endpoint;
/**
* @author auto create
* @version
*/
public class UpdateTransitRouterRouteEntryRequest extends RpcAcsRequest<UpdateTransitRouterRouteEntryResponse> {
private String transitRouterRouteEntryId;
private Long resourceOwnerId;
private String clientToken;
private String transitRouterRouteEntryDescription;
private Boolean dryRun;
private String resourceOwnerAccount;
private String ownerAccount;
private Long ownerId;
private String transitRouterRouteEntryName;
public UpdateTransitRouterRouteEntryRequest() {
super("Cbn", "2017-09-12", "UpdateTransitRouterRouteEntry", "cbn");
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 getTransitRouterRouteEntryId() {
return this.transitRouterRouteEntryId;
}
public void setTransitRouterRouteEntryId(String transitRouterRouteEntryId) {
this.transitRouterRouteEntryId = transitRouterRouteEntryId;
if(transitRouterRouteEntryId != null){
putQueryParameter("TransitRouterRouteEntryId", transitRouterRouteEntryId);
}
}
public Long getResourceOwnerId() {
return this.resourceOwnerId;
}
public void setResourceOwnerId(Long resourceOwnerId) {
this.resourceOwnerId = resourceOwnerId;
if(resourceOwnerId != null){
putQueryParameter("ResourceOwnerId", resourceOwnerId.toString());
}
}
public String getClientToken() {
return this.clientToken;
}
public void setClientToken(String clientToken) {
this.clientToken = clientToken;
if(clientToken != null){
putQueryParameter("ClientToken", clientToken);
}
}
public String getTransitRouterRouteEntryDescription() {
return this.transitRouterRouteEntryDescription;
}
public void setTransitRouterRouteEntryDescription(String transitRouterRouteEntryDescription) {
this.transitRouterRouteEntryDescription = transitRouterRouteEntryDescription;
if(transitRouterRouteEntryDescription != null){
putQueryParameter("TransitRouterRouteEntryDescription", transitRouterRouteEntryDescription);
}
}
public Boolean getDryRun() {
return this.dryRun;
}
public void setDryRun(Boolean dryRun) {
this.dryRun = dryRun;
if(dryRun != null){
putQueryParameter("DryRun", dryRun.toString());
}
}
public String getResourceOwnerAccount() {
return this.resourceOwnerAccount;
}
public void setResourceOwnerAccount(String resourceOwnerAccount) {
this.resourceOwnerAccount = resourceOwnerAccount;
if(resourceOwnerAccount != null){
putQueryParameter("ResourceOwnerAccount", resourceOwnerAccount);
}
}
public String getOwnerAccount() {
return this.ownerAccount;
}
public void setOwnerAccount(String ownerAccount) {
this.ownerAccount = ownerAccount;
if(ownerAccount != null){
putQueryParameter("OwnerAccount", ownerAccount);
}
}
public Long getOwnerId() {
return this.ownerId;
}
public void setOwnerId(Long ownerId) {
this.ownerId = ownerId;
if(ownerId != null){
putQueryParameter("OwnerId", ownerId.toString());
}
}
public String getTransitRouterRouteEntryName() {
return this.transitRouterRouteEntryName;
}
public void setTransitRouterRouteEntryName(String transitRouterRouteEntryName) {
this.transitRouterRouteEntryName = transitRouterRouteEntryName;
if(transitRouterRouteEntryName != null){
putQueryParameter("TransitRouterRouteEntryName", transitRouterRouteEntryName);
}
}
@Override
public Class<UpdateTransitRouterRouteEntryResponse> getResponseClass() {
return UpdateTransitRouterRouteEntryResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cbn/1.0.40/com/aliyuncs/cbn/model
|
java-sources/com/aliyun/aliyun-java-sdk-cbn/1.0.40/com/aliyuncs/cbn/model/v20170912/UpdateTransitRouterRouteEntryResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.cbn.model.v20170912;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.cbn.transform.v20170912.UpdateTransitRouterRouteEntryResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class UpdateTransitRouterRouteEntryResponse extends AcsResponse {
private String requestId;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
@Override
public UpdateTransitRouterRouteEntryResponse getInstance(UnmarshallerContext context) {
return UpdateTransitRouterRouteEntryResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cbn/1.0.40/com/aliyuncs/cbn/model
|
java-sources/com/aliyun/aliyun-java-sdk-cbn/1.0.40/com/aliyuncs/cbn/model/v20170912/UpdateTransitRouterRouteTableRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.cbn.model.v20170912;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.cbn.Endpoint;
/**
* @author auto create
* @version
*/
public class UpdateTransitRouterRouteTableRequest extends RpcAcsRequest<UpdateTransitRouterRouteTableResponse> {
private Long resourceOwnerId;
private String clientToken;
private RouteTableOptions routeTableOptions;
private String transitRouterRouteTableId;
private String transitRouterRouteTableDescription;
private Boolean dryRun;
private String transitRouterRouteTableName;
private String resourceOwnerAccount;
private String ownerAccount;
private Long ownerId;
public UpdateTransitRouterRouteTableRequest() {
super("Cbn", "2017-09-12", "UpdateTransitRouterRouteTable", "cbn");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public Long getResourceOwnerId() {
return this.resourceOwnerId;
}
public void setResourceOwnerId(Long resourceOwnerId) {
this.resourceOwnerId = resourceOwnerId;
if(resourceOwnerId != null){
putQueryParameter("ResourceOwnerId", resourceOwnerId.toString());
}
}
public String getClientToken() {
return this.clientToken;
}
public void setClientToken(String clientToken) {
this.clientToken = clientToken;
if(clientToken != null){
putQueryParameter("ClientToken", clientToken);
}
}
public RouteTableOptions getRouteTableOptions() {
return this.routeTableOptions;
}
public void setRouteTableOptions(RouteTableOptions routeTableOptions) {
this.routeTableOptions = routeTableOptions;
if (routeTableOptions != null) {
putQueryParameter("RouteTableOptions.MultiRegionECMP" , routeTableOptions.getMultiRegionECMP());
}
}
public String getTransitRouterRouteTableId() {
return this.transitRouterRouteTableId;
}
public void setTransitRouterRouteTableId(String transitRouterRouteTableId) {
this.transitRouterRouteTableId = transitRouterRouteTableId;
if(transitRouterRouteTableId != null){
putQueryParameter("TransitRouterRouteTableId", transitRouterRouteTableId);
}
}
public String getTransitRouterRouteTableDescription() {
return this.transitRouterRouteTableDescription;
}
public void setTransitRouterRouteTableDescription(String transitRouterRouteTableDescription) {
this.transitRouterRouteTableDescription = transitRouterRouteTableDescription;
if(transitRouterRouteTableDescription != null){
putQueryParameter("TransitRouterRouteTableDescription", transitRouterRouteTableDescription);
}
}
public Boolean getDryRun() {
return this.dryRun;
}
public void setDryRun(Boolean dryRun) {
this.dryRun = dryRun;
if(dryRun != null){
putQueryParameter("DryRun", dryRun.toString());
}
}
public String getTransitRouterRouteTableName() {
return this.transitRouterRouteTableName;
}
public void setTransitRouterRouteTableName(String transitRouterRouteTableName) {
this.transitRouterRouteTableName = transitRouterRouteTableName;
if(transitRouterRouteTableName != null){
putQueryParameter("TransitRouterRouteTableName", transitRouterRouteTableName);
}
}
public String getResourceOwnerAccount() {
return this.resourceOwnerAccount;
}
public void setResourceOwnerAccount(String resourceOwnerAccount) {
this.resourceOwnerAccount = resourceOwnerAccount;
if(resourceOwnerAccount != null){
putQueryParameter("ResourceOwnerAccount", resourceOwnerAccount);
}
}
public String getOwnerAccount() {
return this.ownerAccount;
}
public void setOwnerAccount(String ownerAccount) {
this.ownerAccount = ownerAccount;
if(ownerAccount != null){
putQueryParameter("OwnerAccount", ownerAccount);
}
}
public Long getOwnerId() {
return this.ownerId;
}
public void setOwnerId(Long ownerId) {
this.ownerId = ownerId;
if(ownerId != null){
putQueryParameter("OwnerId", ownerId.toString());
}
}
public static class RouteTableOptions {
private String multiRegionECMP;
public String getMultiRegionECMP() {
return this.multiRegionECMP;
}
public void setMultiRegionECMP(String multiRegionECMP) {
this.multiRegionECMP = multiRegionECMP;
}
}
@Override
public Class<UpdateTransitRouterRouteTableResponse> getResponseClass() {
return UpdateTransitRouterRouteTableResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cbn/1.0.40/com/aliyuncs/cbn/model
|
java-sources/com/aliyun/aliyun-java-sdk-cbn/1.0.40/com/aliyuncs/cbn/model/v20170912/UpdateTransitRouterRouteTableResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.cbn.model.v20170912;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.cbn.transform.v20170912.UpdateTransitRouterRouteTableResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class UpdateTransitRouterRouteTableResponse extends AcsResponse {
private String requestId;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
@Override
public UpdateTransitRouterRouteTableResponse getInstance(UnmarshallerContext context) {
return UpdateTransitRouterRouteTableResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cbn/1.0.40/com/aliyuncs/cbn/model
|
java-sources/com/aliyun/aliyun-java-sdk-cbn/1.0.40/com/aliyuncs/cbn/model/v20170912/UpdateTransitRouterVbrAttachmentAttributeRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.cbn.model.v20170912;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.cbn.Endpoint;
/**
* @author auto create
* @version
*/
public class UpdateTransitRouterVbrAttachmentAttributeRequest extends RpcAcsRequest<UpdateTransitRouterVbrAttachmentAttributeResponse> {
private Long resourceOwnerId;
private String clientToken;
private String transitRouterAttachmentName;
private Boolean autoPublishRouteEnabled;
private Boolean dryRun;
private String resourceOwnerAccount;
private String ownerAccount;
private Long ownerId;
private String transitRouterAttachmentId;
private String transitRouterAttachmentDescription;
public UpdateTransitRouterVbrAttachmentAttributeRequest() {
super("Cbn", "2017-09-12", "UpdateTransitRouterVbrAttachmentAttribute", "cbn");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public Long getResourceOwnerId() {
return this.resourceOwnerId;
}
public void setResourceOwnerId(Long resourceOwnerId) {
this.resourceOwnerId = resourceOwnerId;
if(resourceOwnerId != null){
putQueryParameter("ResourceOwnerId", resourceOwnerId.toString());
}
}
public String getClientToken() {
return this.clientToken;
}
public void setClientToken(String clientToken) {
this.clientToken = clientToken;
if(clientToken != null){
putQueryParameter("ClientToken", clientToken);
}
}
public String getTransitRouterAttachmentName() {
return this.transitRouterAttachmentName;
}
public void setTransitRouterAttachmentName(String transitRouterAttachmentName) {
this.transitRouterAttachmentName = transitRouterAttachmentName;
if(transitRouterAttachmentName != null){
putQueryParameter("TransitRouterAttachmentName", transitRouterAttachmentName);
}
}
public Boolean getAutoPublishRouteEnabled() {
return this.autoPublishRouteEnabled;
}
public void setAutoPublishRouteEnabled(Boolean autoPublishRouteEnabled) {
this.autoPublishRouteEnabled = autoPublishRouteEnabled;
if(autoPublishRouteEnabled != null){
putQueryParameter("AutoPublishRouteEnabled", autoPublishRouteEnabled.toString());
}
}
public Boolean getDryRun() {
return this.dryRun;
}
public void setDryRun(Boolean dryRun) {
this.dryRun = dryRun;
if(dryRun != null){
putQueryParameter("DryRun", dryRun.toString());
}
}
public String getResourceOwnerAccount() {
return this.resourceOwnerAccount;
}
public void setResourceOwnerAccount(String resourceOwnerAccount) {
this.resourceOwnerAccount = resourceOwnerAccount;
if(resourceOwnerAccount != null){
putQueryParameter("ResourceOwnerAccount", resourceOwnerAccount);
}
}
public String getOwnerAccount() {
return this.ownerAccount;
}
public void setOwnerAccount(String ownerAccount) {
this.ownerAccount = ownerAccount;
if(ownerAccount != null){
putQueryParameter("OwnerAccount", ownerAccount);
}
}
public Long getOwnerId() {
return this.ownerId;
}
public void setOwnerId(Long ownerId) {
this.ownerId = ownerId;
if(ownerId != null){
putQueryParameter("OwnerId", ownerId.toString());
}
}
public String getTransitRouterAttachmentId() {
return this.transitRouterAttachmentId;
}
public void setTransitRouterAttachmentId(String transitRouterAttachmentId) {
this.transitRouterAttachmentId = transitRouterAttachmentId;
if(transitRouterAttachmentId != null){
putQueryParameter("TransitRouterAttachmentId", transitRouterAttachmentId);
}
}
public String getTransitRouterAttachmentDescription() {
return this.transitRouterAttachmentDescription;
}
public void setTransitRouterAttachmentDescription(String transitRouterAttachmentDescription) {
this.transitRouterAttachmentDescription = transitRouterAttachmentDescription;
if(transitRouterAttachmentDescription != null){
putQueryParameter("TransitRouterAttachmentDescription", transitRouterAttachmentDescription);
}
}
@Override
public Class<UpdateTransitRouterVbrAttachmentAttributeResponse> getResponseClass() {
return UpdateTransitRouterVbrAttachmentAttributeResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cbn/1.0.40/com/aliyuncs/cbn/model
|
java-sources/com/aliyun/aliyun-java-sdk-cbn/1.0.40/com/aliyuncs/cbn/model/v20170912/UpdateTransitRouterVbrAttachmentAttributeResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.cbn.model.v20170912;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.cbn.transform.v20170912.UpdateTransitRouterVbrAttachmentAttributeResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class UpdateTransitRouterVbrAttachmentAttributeResponse extends AcsResponse {
private String requestId;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
@Override
public UpdateTransitRouterVbrAttachmentAttributeResponse getInstance(UnmarshallerContext context) {
return UpdateTransitRouterVbrAttachmentAttributeResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cbn/1.0.40/com/aliyuncs/cbn/model
|
java-sources/com/aliyun/aliyun-java-sdk-cbn/1.0.40/com/aliyuncs/cbn/model/v20170912/UpdateTransitRouterVpcAttachmentAttributeRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.cbn.model.v20170912;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.cbn.Endpoint;
/**
* @author auto create
* @version
*/
public class UpdateTransitRouterVpcAttachmentAttributeRequest extends RpcAcsRequest<UpdateTransitRouterVpcAttachmentAttributeResponse> {
private Long resourceOwnerId;
private String clientToken;
private String transitRouterAttachmentName;
private Boolean autoPublishRouteEnabled;
private Boolean dryRun;
private String resourceOwnerAccount;
private String ownerAccount;
private Long ownerId;
private String transitRouterAttachmentId;
private String transitRouterAttachmentDescription;
public UpdateTransitRouterVpcAttachmentAttributeRequest() {
super("Cbn", "2017-09-12", "UpdateTransitRouterVpcAttachmentAttribute", "cbn");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public Long getResourceOwnerId() {
return this.resourceOwnerId;
}
public void setResourceOwnerId(Long resourceOwnerId) {
this.resourceOwnerId = resourceOwnerId;
if(resourceOwnerId != null){
putQueryParameter("ResourceOwnerId", resourceOwnerId.toString());
}
}
public String getClientToken() {
return this.clientToken;
}
public void setClientToken(String clientToken) {
this.clientToken = clientToken;
if(clientToken != null){
putQueryParameter("ClientToken", clientToken);
}
}
public String getTransitRouterAttachmentName() {
return this.transitRouterAttachmentName;
}
public void setTransitRouterAttachmentName(String transitRouterAttachmentName) {
this.transitRouterAttachmentName = transitRouterAttachmentName;
if(transitRouterAttachmentName != null){
putQueryParameter("TransitRouterAttachmentName", transitRouterAttachmentName);
}
}
public Boolean getAutoPublishRouteEnabled() {
return this.autoPublishRouteEnabled;
}
public void setAutoPublishRouteEnabled(Boolean autoPublishRouteEnabled) {
this.autoPublishRouteEnabled = autoPublishRouteEnabled;
if(autoPublishRouteEnabled != null){
putQueryParameter("AutoPublishRouteEnabled", autoPublishRouteEnabled.toString());
}
}
public Boolean getDryRun() {
return this.dryRun;
}
public void setDryRun(Boolean dryRun) {
this.dryRun = dryRun;
if(dryRun != null){
putQueryParameter("DryRun", dryRun.toString());
}
}
public String getResourceOwnerAccount() {
return this.resourceOwnerAccount;
}
public void setResourceOwnerAccount(String resourceOwnerAccount) {
this.resourceOwnerAccount = resourceOwnerAccount;
if(resourceOwnerAccount != null){
putQueryParameter("ResourceOwnerAccount", resourceOwnerAccount);
}
}
public String getOwnerAccount() {
return this.ownerAccount;
}
public void setOwnerAccount(String ownerAccount) {
this.ownerAccount = ownerAccount;
if(ownerAccount != null){
putQueryParameter("OwnerAccount", ownerAccount);
}
}
public Long getOwnerId() {
return this.ownerId;
}
public void setOwnerId(Long ownerId) {
this.ownerId = ownerId;
if(ownerId != null){
putQueryParameter("OwnerId", ownerId.toString());
}
}
public String getTransitRouterAttachmentId() {
return this.transitRouterAttachmentId;
}
public void setTransitRouterAttachmentId(String transitRouterAttachmentId) {
this.transitRouterAttachmentId = transitRouterAttachmentId;
if(transitRouterAttachmentId != null){
putQueryParameter("TransitRouterAttachmentId", transitRouterAttachmentId);
}
}
public String getTransitRouterAttachmentDescription() {
return this.transitRouterAttachmentDescription;
}
public void setTransitRouterAttachmentDescription(String transitRouterAttachmentDescription) {
this.transitRouterAttachmentDescription = transitRouterAttachmentDescription;
if(transitRouterAttachmentDescription != null){
putQueryParameter("TransitRouterAttachmentDescription", transitRouterAttachmentDescription);
}
}
@Override
public Class<UpdateTransitRouterVpcAttachmentAttributeResponse> getResponseClass() {
return UpdateTransitRouterVpcAttachmentAttributeResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cbn/1.0.40/com/aliyuncs/cbn/model
|
java-sources/com/aliyun/aliyun-java-sdk-cbn/1.0.40/com/aliyuncs/cbn/model/v20170912/UpdateTransitRouterVpcAttachmentAttributeResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.cbn.model.v20170912;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.cbn.transform.v20170912.UpdateTransitRouterVpcAttachmentAttributeResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class UpdateTransitRouterVpcAttachmentAttributeResponse extends AcsResponse {
private String requestId;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
@Override
public UpdateTransitRouterVpcAttachmentAttributeResponse getInstance(UnmarshallerContext context) {
return UpdateTransitRouterVpcAttachmentAttributeResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cbn/1.0.40/com/aliyuncs/cbn/model
|
java-sources/com/aliyun/aliyun-java-sdk-cbn/1.0.40/com/aliyuncs/cbn/model/v20170912/UpdateTransitRouterVpcAttachmentZonesRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.cbn.model.v20170912;
import com.aliyuncs.RpcAcsRequest;
import java.util.List;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.cbn.Endpoint;
/**
* @author auto create
* @version
*/
public class UpdateTransitRouterVpcAttachmentZonesRequest extends RpcAcsRequest<UpdateTransitRouterVpcAttachmentZonesResponse> {
private Long resourceOwnerId;
private String clientToken;
private List<RemoveZoneMappings> removeZoneMappingss;
private List<AddZoneMappings> addZoneMappingss;
private Boolean dryRun;
private String resourceOwnerAccount;
private String ownerAccount;
private Long ownerId;
private String transitRouterAttachmentId;
public UpdateTransitRouterVpcAttachmentZonesRequest() {
super("Cbn", "2017-09-12", "UpdateTransitRouterVpcAttachmentZones", "cbn");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public Long getResourceOwnerId() {
return this.resourceOwnerId;
}
public void setResourceOwnerId(Long resourceOwnerId) {
this.resourceOwnerId = resourceOwnerId;
if(resourceOwnerId != null){
putQueryParameter("ResourceOwnerId", resourceOwnerId.toString());
}
}
public String getClientToken() {
return this.clientToken;
}
public void setClientToken(String clientToken) {
this.clientToken = clientToken;
if(clientToken != null){
putQueryParameter("ClientToken", clientToken);
}
}
public List<RemoveZoneMappings> getRemoveZoneMappingss() {
return this.removeZoneMappingss;
}
public void setRemoveZoneMappingss(List<RemoveZoneMappings> removeZoneMappingss) {
this.removeZoneMappingss = removeZoneMappingss;
if (removeZoneMappingss != null) {
for (int depth1 = 0; depth1 < removeZoneMappingss.size(); depth1++) {
putQueryParameter("RemoveZoneMappings." + (depth1 + 1) + ".VSwitchId" , removeZoneMappingss.get(depth1).getVSwitchId());
putQueryParameter("RemoveZoneMappings." + (depth1 + 1) + ".ZoneId" , removeZoneMappingss.get(depth1).getZoneId());
}
}
}
public List<AddZoneMappings> getAddZoneMappingss() {
return this.addZoneMappingss;
}
public void setAddZoneMappingss(List<AddZoneMappings> addZoneMappingss) {
this.addZoneMappingss = addZoneMappingss;
if (addZoneMappingss != null) {
for (int depth1 = 0; depth1 < addZoneMappingss.size(); depth1++) {
putQueryParameter("AddZoneMappings." + (depth1 + 1) + ".VSwitchId" , addZoneMappingss.get(depth1).getVSwitchId());
putQueryParameter("AddZoneMappings." + (depth1 + 1) + ".ZoneId" , addZoneMappingss.get(depth1).getZoneId());
}
}
}
public Boolean getDryRun() {
return this.dryRun;
}
public void setDryRun(Boolean dryRun) {
this.dryRun = dryRun;
if(dryRun != null){
putQueryParameter("DryRun", dryRun.toString());
}
}
public String getResourceOwnerAccount() {
return this.resourceOwnerAccount;
}
public void setResourceOwnerAccount(String resourceOwnerAccount) {
this.resourceOwnerAccount = resourceOwnerAccount;
if(resourceOwnerAccount != null){
putQueryParameter("ResourceOwnerAccount", resourceOwnerAccount);
}
}
public String getOwnerAccount() {
return this.ownerAccount;
}
public void setOwnerAccount(String ownerAccount) {
this.ownerAccount = ownerAccount;
if(ownerAccount != null){
putQueryParameter("OwnerAccount", ownerAccount);
}
}
public Long getOwnerId() {
return this.ownerId;
}
public void setOwnerId(Long ownerId) {
this.ownerId = ownerId;
if(ownerId != null){
putQueryParameter("OwnerId", ownerId.toString());
}
}
public String getTransitRouterAttachmentId() {
return this.transitRouterAttachmentId;
}
public void setTransitRouterAttachmentId(String transitRouterAttachmentId) {
this.transitRouterAttachmentId = transitRouterAttachmentId;
if(transitRouterAttachmentId != null){
putQueryParameter("TransitRouterAttachmentId", transitRouterAttachmentId);
}
}
public static class RemoveZoneMappings {
private String vSwitchId;
private String zoneId;
public String getVSwitchId() {
return this.vSwitchId;
}
public void setVSwitchId(String vSwitchId) {
this.vSwitchId = vSwitchId;
}
public String getZoneId() {
return this.zoneId;
}
public void setZoneId(String zoneId) {
this.zoneId = zoneId;
}
}
public static class AddZoneMappings {
private String vSwitchId;
private String zoneId;
public String getVSwitchId() {
return this.vSwitchId;
}
public void setVSwitchId(String vSwitchId) {
this.vSwitchId = vSwitchId;
}
public String getZoneId() {
return this.zoneId;
}
public void setZoneId(String zoneId) {
this.zoneId = zoneId;
}
}
@Override
public Class<UpdateTransitRouterVpcAttachmentZonesResponse> getResponseClass() {
return UpdateTransitRouterVpcAttachmentZonesResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cbn/1.0.40/com/aliyuncs/cbn/model
|
java-sources/com/aliyun/aliyun-java-sdk-cbn/1.0.40/com/aliyuncs/cbn/model/v20170912/UpdateTransitRouterVpcAttachmentZonesResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.cbn.model.v20170912;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.cbn.transform.v20170912.UpdateTransitRouterVpcAttachmentZonesResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class UpdateTransitRouterVpcAttachmentZonesResponse extends AcsResponse {
private String requestId;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
@Override
public UpdateTransitRouterVpcAttachmentZonesResponse getInstance(UnmarshallerContext context) {
return UpdateTransitRouterVpcAttachmentZonesResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cbn/1.0.40/com/aliyuncs/cbn/model
|
java-sources/com/aliyun/aliyun-java-sdk-cbn/1.0.40/com/aliyuncs/cbn/model/v20170912/UpdateTransitRouterVpnAttachmentAttributeRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.cbn.model.v20170912;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.cbn.Endpoint;
/**
* @author auto create
* @version
*/
public class UpdateTransitRouterVpnAttachmentAttributeRequest extends RpcAcsRequest<UpdateTransitRouterVpnAttachmentAttributeResponse> {
private Long resourceOwnerId;
private String clientToken;
private String transitRouterAttachmentName;
private Boolean autoPublishRouteEnabled;
private Boolean dryRun;
private String resourceOwnerAccount;
private String ownerAccount;
private Long ownerId;
private String transitRouterAttachmentId;
private String transitRouterAttachmentDescription;
public UpdateTransitRouterVpnAttachmentAttributeRequest() {
super("Cbn", "2017-09-12", "UpdateTransitRouterVpnAttachmentAttribute", "cbn");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public Long getResourceOwnerId() {
return this.resourceOwnerId;
}
public void setResourceOwnerId(Long resourceOwnerId) {
this.resourceOwnerId = resourceOwnerId;
if(resourceOwnerId != null){
putQueryParameter("ResourceOwnerId", resourceOwnerId.toString());
}
}
public String getClientToken() {
return this.clientToken;
}
public void setClientToken(String clientToken) {
this.clientToken = clientToken;
if(clientToken != null){
putQueryParameter("ClientToken", clientToken);
}
}
public String getTransitRouterAttachmentName() {
return this.transitRouterAttachmentName;
}
public void setTransitRouterAttachmentName(String transitRouterAttachmentName) {
this.transitRouterAttachmentName = transitRouterAttachmentName;
if(transitRouterAttachmentName != null){
putQueryParameter("TransitRouterAttachmentName", transitRouterAttachmentName);
}
}
public Boolean getAutoPublishRouteEnabled() {
return this.autoPublishRouteEnabled;
}
public void setAutoPublishRouteEnabled(Boolean autoPublishRouteEnabled) {
this.autoPublishRouteEnabled = autoPublishRouteEnabled;
if(autoPublishRouteEnabled != null){
putQueryParameter("AutoPublishRouteEnabled", autoPublishRouteEnabled.toString());
}
}
public Boolean getDryRun() {
return this.dryRun;
}
public void setDryRun(Boolean dryRun) {
this.dryRun = dryRun;
if(dryRun != null){
putQueryParameter("DryRun", dryRun.toString());
}
}
public String getResourceOwnerAccount() {
return this.resourceOwnerAccount;
}
public void setResourceOwnerAccount(String resourceOwnerAccount) {
this.resourceOwnerAccount = resourceOwnerAccount;
if(resourceOwnerAccount != null){
putQueryParameter("ResourceOwnerAccount", resourceOwnerAccount);
}
}
public String getOwnerAccount() {
return this.ownerAccount;
}
public void setOwnerAccount(String ownerAccount) {
this.ownerAccount = ownerAccount;
if(ownerAccount != null){
putQueryParameter("OwnerAccount", ownerAccount);
}
}
public Long getOwnerId() {
return this.ownerId;
}
public void setOwnerId(Long ownerId) {
this.ownerId = ownerId;
if(ownerId != null){
putQueryParameter("OwnerId", ownerId.toString());
}
}
public String getTransitRouterAttachmentId() {
return this.transitRouterAttachmentId;
}
public void setTransitRouterAttachmentId(String transitRouterAttachmentId) {
this.transitRouterAttachmentId = transitRouterAttachmentId;
if(transitRouterAttachmentId != null){
putQueryParameter("TransitRouterAttachmentId", transitRouterAttachmentId);
}
}
public String getTransitRouterAttachmentDescription() {
return this.transitRouterAttachmentDescription;
}
public void setTransitRouterAttachmentDescription(String transitRouterAttachmentDescription) {
this.transitRouterAttachmentDescription = transitRouterAttachmentDescription;
if(transitRouterAttachmentDescription != null){
putQueryParameter("TransitRouterAttachmentDescription", transitRouterAttachmentDescription);
}
}
@Override
public Class<UpdateTransitRouterVpnAttachmentAttributeResponse> getResponseClass() {
return UpdateTransitRouterVpnAttachmentAttributeResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cbn/1.0.40/com/aliyuncs/cbn/model
|
java-sources/com/aliyun/aliyun-java-sdk-cbn/1.0.40/com/aliyuncs/cbn/model/v20170912/UpdateTransitRouterVpnAttachmentAttributeResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.cbn.model.v20170912;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.cbn.transform.v20170912.UpdateTransitRouterVpnAttachmentAttributeResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class UpdateTransitRouterVpnAttachmentAttributeResponse extends AcsResponse {
private String requestId;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
@Override
public UpdateTransitRouterVpnAttachmentAttributeResponse getInstance(UnmarshallerContext context) {
return UpdateTransitRouterVpnAttachmentAttributeResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cbn/1.0.40/com/aliyuncs/cbn/model
|
java-sources/com/aliyun/aliyun-java-sdk-cbn/1.0.40/com/aliyuncs/cbn/model/v20170912/WithdrawPublishedRouteEntriesRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.cbn.model.v20170912;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.cbn.Endpoint;
/**
* @author auto create
* @version
*/
public class WithdrawPublishedRouteEntriesRequest extends RpcAcsRequest<WithdrawPublishedRouteEntriesResponse> {
private Long resourceOwnerId;
private String cenId;
private String childInstanceRegionId;
private String resourceOwnerAccount;
private String destinationCidrBlock;
private String childInstanceType;
private String childInstanceId;
private String childInstanceRouteTableId;
public WithdrawPublishedRouteEntriesRequest() {
super("Cbn", "2017-09-12", "WithdrawPublishedRouteEntries", "cbn");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public Long getResourceOwnerId() {
return this.resourceOwnerId;
}
public void setResourceOwnerId(Long resourceOwnerId) {
this.resourceOwnerId = resourceOwnerId;
if(resourceOwnerId != null){
putQueryParameter("ResourceOwnerId", resourceOwnerId.toString());
}
}
public String getCenId() {
return this.cenId;
}
public void setCenId(String cenId) {
this.cenId = cenId;
if(cenId != null){
putQueryParameter("CenId", cenId);
}
}
public String getChildInstanceRegionId() {
return this.childInstanceRegionId;
}
public void setChildInstanceRegionId(String childInstanceRegionId) {
this.childInstanceRegionId = childInstanceRegionId;
if(childInstanceRegionId != null){
putQueryParameter("ChildInstanceRegionId", childInstanceRegionId);
}
}
public String getResourceOwnerAccount() {
return this.resourceOwnerAccount;
}
public void setResourceOwnerAccount(String resourceOwnerAccount) {
this.resourceOwnerAccount = resourceOwnerAccount;
if(resourceOwnerAccount != null){
putQueryParameter("ResourceOwnerAccount", resourceOwnerAccount);
}
}
public String getDestinationCidrBlock() {
return this.destinationCidrBlock;
}
public void setDestinationCidrBlock(String destinationCidrBlock) {
this.destinationCidrBlock = destinationCidrBlock;
if(destinationCidrBlock != null){
putQueryParameter("DestinationCidrBlock", destinationCidrBlock);
}
}
public String getChildInstanceType() {
return this.childInstanceType;
}
public void setChildInstanceType(String childInstanceType) {
this.childInstanceType = childInstanceType;
if(childInstanceType != null){
putQueryParameter("ChildInstanceType", childInstanceType);
}
}
public String getChildInstanceId() {
return this.childInstanceId;
}
public void setChildInstanceId(String childInstanceId) {
this.childInstanceId = childInstanceId;
if(childInstanceId != null){
putQueryParameter("ChildInstanceId", childInstanceId);
}
}
public String getChildInstanceRouteTableId() {
return this.childInstanceRouteTableId;
}
public void setChildInstanceRouteTableId(String childInstanceRouteTableId) {
this.childInstanceRouteTableId = childInstanceRouteTableId;
if(childInstanceRouteTableId != null){
putQueryParameter("ChildInstanceRouteTableId", childInstanceRouteTableId);
}
}
@Override
public Class<WithdrawPublishedRouteEntriesResponse> getResponseClass() {
return WithdrawPublishedRouteEntriesResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cbn/1.0.40/com/aliyuncs/cbn/model
|
java-sources/com/aliyun/aliyun-java-sdk-cbn/1.0.40/com/aliyuncs/cbn/model/v20170912/WithdrawPublishedRouteEntriesResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.cbn.model.v20170912;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.cbn.transform.v20170912.WithdrawPublishedRouteEntriesResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class WithdrawPublishedRouteEntriesResponse extends AcsResponse {
private String requestId;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
@Override
public WithdrawPublishedRouteEntriesResponse getInstance(UnmarshallerContext context) {
return WithdrawPublishedRouteEntriesResponseUnmarshaller.unmarshall(this, context);
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cbn/1.0.40/com/aliyuncs/cbn/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cbn/1.0.40/com/aliyuncs/cbn/transform/v20170912/ActiveFlowLogResponseUnmarshaller.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.cbn.transform.v20170912;
import com.aliyuncs.cbn.model.v20170912.ActiveFlowLogResponse;
import com.aliyuncs.transform.UnmarshallerContext;
public class ActiveFlowLogResponseUnmarshaller {
public static ActiveFlowLogResponse unmarshall(ActiveFlowLogResponse activeFlowLogResponse, UnmarshallerContext _ctx) {
activeFlowLogResponse.setRequestId(_ctx.stringValue("ActiveFlowLogResponse.RequestId"));
activeFlowLogResponse.setSuccess(_ctx.stringValue("ActiveFlowLogResponse.Success"));
return activeFlowLogResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cbn/1.0.40/com/aliyuncs/cbn/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cbn/1.0.40/com/aliyuncs/cbn/transform/v20170912/AddTrafficMatchRuleToTrafficMarkingPolicyResponseUnmarshaller.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.cbn.transform.v20170912;
import com.aliyuncs.cbn.model.v20170912.AddTrafficMatchRuleToTrafficMarkingPolicyResponse;
import com.aliyuncs.transform.UnmarshallerContext;
public class AddTrafficMatchRuleToTrafficMarkingPolicyResponseUnmarshaller {
public static AddTrafficMatchRuleToTrafficMarkingPolicyResponse unmarshall(AddTrafficMatchRuleToTrafficMarkingPolicyResponse addTrafficMatchRuleToTrafficMarkingPolicyResponse, UnmarshallerContext _ctx) {
addTrafficMatchRuleToTrafficMarkingPolicyResponse.setRequestId(_ctx.stringValue("AddTrafficMatchRuleToTrafficMarkingPolicyResponse.RequestId"));
return addTrafficMatchRuleToTrafficMarkingPolicyResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cbn/1.0.40/com/aliyuncs/cbn/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cbn/1.0.40/com/aliyuncs/cbn/transform/v20170912/AddTraficMatchRuleToTrafficMarkingPolicyResponseUnmarshaller.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.cbn.transform.v20170912;
import com.aliyuncs.cbn.model.v20170912.AddTraficMatchRuleToTrafficMarkingPolicyResponse;
import com.aliyuncs.transform.UnmarshallerContext;
public class AddTraficMatchRuleToTrafficMarkingPolicyResponseUnmarshaller {
public static AddTraficMatchRuleToTrafficMarkingPolicyResponse unmarshall(AddTraficMatchRuleToTrafficMarkingPolicyResponse addTraficMatchRuleToTrafficMarkingPolicyResponse, UnmarshallerContext _ctx) {
addTraficMatchRuleToTrafficMarkingPolicyResponse.setRequestId(_ctx.stringValue("AddTraficMatchRuleToTrafficMarkingPolicyResponse.RequestId"));
return addTraficMatchRuleToTrafficMarkingPolicyResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cbn/1.0.40/com/aliyuncs/cbn/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cbn/1.0.40/com/aliyuncs/cbn/transform/v20170912/AssociateCenBandwidthPackageResponseUnmarshaller.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.cbn.transform.v20170912;
import com.aliyuncs.cbn.model.v20170912.AssociateCenBandwidthPackageResponse;
import com.aliyuncs.transform.UnmarshallerContext;
public class AssociateCenBandwidthPackageResponseUnmarshaller {
public static AssociateCenBandwidthPackageResponse unmarshall(AssociateCenBandwidthPackageResponse associateCenBandwidthPackageResponse, UnmarshallerContext _ctx) {
associateCenBandwidthPackageResponse.setRequestId(_ctx.stringValue("AssociateCenBandwidthPackageResponse.RequestId"));
return associateCenBandwidthPackageResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cbn/1.0.40/com/aliyuncs/cbn/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cbn/1.0.40/com/aliyuncs/cbn/transform/v20170912/AssociateTransitRouterAttachmentWithRouteTableResponseUnmarshaller.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.cbn.transform.v20170912;
import com.aliyuncs.cbn.model.v20170912.AssociateTransitRouterAttachmentWithRouteTableResponse;
import com.aliyuncs.transform.UnmarshallerContext;
public class AssociateTransitRouterAttachmentWithRouteTableResponseUnmarshaller {
public static AssociateTransitRouterAttachmentWithRouteTableResponse unmarshall(AssociateTransitRouterAttachmentWithRouteTableResponse associateTransitRouterAttachmentWithRouteTableResponse, UnmarshallerContext _ctx) {
associateTransitRouterAttachmentWithRouteTableResponse.setRequestId(_ctx.stringValue("AssociateTransitRouterAttachmentWithRouteTableResponse.RequestId"));
return associateTransitRouterAttachmentWithRouteTableResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cbn/1.0.40/com/aliyuncs/cbn/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cbn/1.0.40/com/aliyuncs/cbn/transform/v20170912/AssociateTransitRouterMulticastDomainResponseUnmarshaller.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.cbn.transform.v20170912;
import com.aliyuncs.cbn.model.v20170912.AssociateTransitRouterMulticastDomainResponse;
import com.aliyuncs.transform.UnmarshallerContext;
public class AssociateTransitRouterMulticastDomainResponseUnmarshaller {
public static AssociateTransitRouterMulticastDomainResponse unmarshall(AssociateTransitRouterMulticastDomainResponse associateTransitRouterMulticastDomainResponse, UnmarshallerContext _ctx) {
associateTransitRouterMulticastDomainResponse.setRequestId(_ctx.stringValue("AssociateTransitRouterMulticastDomainResponse.RequestId"));
return associateTransitRouterMulticastDomainResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cbn/1.0.40/com/aliyuncs/cbn/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cbn/1.0.40/com/aliyuncs/cbn/transform/v20170912/AttachCenChildInstanceResponseUnmarshaller.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.cbn.transform.v20170912;
import com.aliyuncs.cbn.model.v20170912.AttachCenChildInstanceResponse;
import com.aliyuncs.transform.UnmarshallerContext;
public class AttachCenChildInstanceResponseUnmarshaller {
public static AttachCenChildInstanceResponse unmarshall(AttachCenChildInstanceResponse attachCenChildInstanceResponse, UnmarshallerContext _ctx) {
attachCenChildInstanceResponse.setRequestId(_ctx.stringValue("AttachCenChildInstanceResponse.RequestId"));
return attachCenChildInstanceResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cbn/1.0.40/com/aliyuncs/cbn/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cbn/1.0.40/com/aliyuncs/cbn/transform/v20170912/CheckTransitRouterServiceResponseUnmarshaller.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.cbn.transform.v20170912;
import com.aliyuncs.cbn.model.v20170912.CheckTransitRouterServiceResponse;
import com.aliyuncs.transform.UnmarshallerContext;
public class CheckTransitRouterServiceResponseUnmarshaller {
public static CheckTransitRouterServiceResponse unmarshall(CheckTransitRouterServiceResponse checkTransitRouterServiceResponse, UnmarshallerContext _ctx) {
checkTransitRouterServiceResponse.setRequestId(_ctx.stringValue("CheckTransitRouterServiceResponse.RequestId"));
checkTransitRouterServiceResponse.setEnabled(_ctx.stringValue("CheckTransitRouterServiceResponse.Enabled"));
return checkTransitRouterServiceResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cbn/1.0.40/com/aliyuncs/cbn/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cbn/1.0.40/com/aliyuncs/cbn/transform/v20170912/CreateCenBandwidthPackageResponseUnmarshaller.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.cbn.transform.v20170912;
import com.aliyuncs.cbn.model.v20170912.CreateCenBandwidthPackageResponse;
import com.aliyuncs.transform.UnmarshallerContext;
public class CreateCenBandwidthPackageResponseUnmarshaller {
public static CreateCenBandwidthPackageResponse unmarshall(CreateCenBandwidthPackageResponse createCenBandwidthPackageResponse, UnmarshallerContext _ctx) {
createCenBandwidthPackageResponse.setRequestId(_ctx.stringValue("CreateCenBandwidthPackageResponse.RequestId"));
createCenBandwidthPackageResponse.setCenBandwidthPackageId(_ctx.stringValue("CreateCenBandwidthPackageResponse.CenBandwidthPackageId"));
createCenBandwidthPackageResponse.setCenBandwidthPackageOrderId(_ctx.stringValue("CreateCenBandwidthPackageResponse.CenBandwidthPackageOrderId"));
return createCenBandwidthPackageResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cbn/1.0.40/com/aliyuncs/cbn/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cbn/1.0.40/com/aliyuncs/cbn/transform/v20170912/CreateCenChildInstanceRouteEntryToAttachmentResponseUnmarshaller.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.cbn.transform.v20170912;
import com.aliyuncs.cbn.model.v20170912.CreateCenChildInstanceRouteEntryToAttachmentResponse;
import com.aliyuncs.transform.UnmarshallerContext;
public class CreateCenChildInstanceRouteEntryToAttachmentResponseUnmarshaller {
public static CreateCenChildInstanceRouteEntryToAttachmentResponse unmarshall(CreateCenChildInstanceRouteEntryToAttachmentResponse createCenChildInstanceRouteEntryToAttachmentResponse, UnmarshallerContext _ctx) {
createCenChildInstanceRouteEntryToAttachmentResponse.setRequestId(_ctx.stringValue("CreateCenChildInstanceRouteEntryToAttachmentResponse.RequestId"));
return createCenChildInstanceRouteEntryToAttachmentResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cbn/1.0.40/com/aliyuncs/cbn/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cbn/1.0.40/com/aliyuncs/cbn/transform/v20170912/CreateCenChildInstanceRouteEntryToCenResponseUnmarshaller.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.cbn.transform.v20170912;
import com.aliyuncs.cbn.model.v20170912.CreateCenChildInstanceRouteEntryToCenResponse;
import com.aliyuncs.transform.UnmarshallerContext;
public class CreateCenChildInstanceRouteEntryToCenResponseUnmarshaller {
public static CreateCenChildInstanceRouteEntryToCenResponse unmarshall(CreateCenChildInstanceRouteEntryToCenResponse createCenChildInstanceRouteEntryToCenResponse, UnmarshallerContext _ctx) {
createCenChildInstanceRouteEntryToCenResponse.setRequestId(_ctx.stringValue("CreateCenChildInstanceRouteEntryToCenResponse.RequestId"));
return createCenChildInstanceRouteEntryToCenResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cbn/1.0.40/com/aliyuncs/cbn/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cbn/1.0.40/com/aliyuncs/cbn/transform/v20170912/CreateCenInterRegionTrafficQosPolicyResponseUnmarshaller.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.cbn.transform.v20170912;
import com.aliyuncs.cbn.model.v20170912.CreateCenInterRegionTrafficQosPolicyResponse;
import com.aliyuncs.transform.UnmarshallerContext;
public class CreateCenInterRegionTrafficQosPolicyResponseUnmarshaller {
public static CreateCenInterRegionTrafficQosPolicyResponse unmarshall(CreateCenInterRegionTrafficQosPolicyResponse createCenInterRegionTrafficQosPolicyResponse, UnmarshallerContext _ctx) {
createCenInterRegionTrafficQosPolicyResponse.setRequestId(_ctx.stringValue("CreateCenInterRegionTrafficQosPolicyResponse.RequestId"));
createCenInterRegionTrafficQosPolicyResponse.setTrafficQosPolicyId(_ctx.stringValue("CreateCenInterRegionTrafficQosPolicyResponse.TrafficQosPolicyId"));
return createCenInterRegionTrafficQosPolicyResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cbn/1.0.40/com/aliyuncs/cbn/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cbn/1.0.40/com/aliyuncs/cbn/transform/v20170912/CreateCenInterRegionTrafficQosQueueResponseUnmarshaller.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.cbn.transform.v20170912;
import com.aliyuncs.cbn.model.v20170912.CreateCenInterRegionTrafficQosQueueResponse;
import com.aliyuncs.transform.UnmarshallerContext;
public class CreateCenInterRegionTrafficQosQueueResponseUnmarshaller {
public static CreateCenInterRegionTrafficQosQueueResponse unmarshall(CreateCenInterRegionTrafficQosQueueResponse createCenInterRegionTrafficQosQueueResponse, UnmarshallerContext _ctx) {
createCenInterRegionTrafficQosQueueResponse.setRequestId(_ctx.stringValue("CreateCenInterRegionTrafficQosQueueResponse.RequestId"));
createCenInterRegionTrafficQosQueueResponse.setQosQueueId(_ctx.stringValue("CreateCenInterRegionTrafficQosQueueResponse.QosQueueId"));
return createCenInterRegionTrafficQosQueueResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cbn/1.0.40/com/aliyuncs/cbn/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cbn/1.0.40/com/aliyuncs/cbn/transform/v20170912/CreateCenResponseUnmarshaller.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.cbn.transform.v20170912;
import com.aliyuncs.cbn.model.v20170912.CreateCenResponse;
import com.aliyuncs.transform.UnmarshallerContext;
public class CreateCenResponseUnmarshaller {
public static CreateCenResponse unmarshall(CreateCenResponse createCenResponse, UnmarshallerContext _ctx) {
createCenResponse.setRequestId(_ctx.stringValue("CreateCenResponse.RequestId"));
createCenResponse.setCenId(_ctx.stringValue("CreateCenResponse.CenId"));
return createCenResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cbn/1.0.40/com/aliyuncs/cbn/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cbn/1.0.40/com/aliyuncs/cbn/transform/v20170912/CreateCenRouteMapResponseUnmarshaller.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.cbn.transform.v20170912;
import com.aliyuncs.cbn.model.v20170912.CreateCenRouteMapResponse;
import com.aliyuncs.transform.UnmarshallerContext;
public class CreateCenRouteMapResponseUnmarshaller {
public static CreateCenRouteMapResponse unmarshall(CreateCenRouteMapResponse createCenRouteMapResponse, UnmarshallerContext _ctx) {
createCenRouteMapResponse.setRequestId(_ctx.stringValue("CreateCenRouteMapResponse.RequestId"));
createCenRouteMapResponse.setRouteMapId(_ctx.stringValue("CreateCenRouteMapResponse.RouteMapId"));
return createCenRouteMapResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cbn/1.0.40/com/aliyuncs/cbn/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cbn/1.0.40/com/aliyuncs/cbn/transform/v20170912/CreateFlowlogResponseUnmarshaller.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.cbn.transform.v20170912;
import com.aliyuncs.cbn.model.v20170912.CreateFlowlogResponse;
import com.aliyuncs.transform.UnmarshallerContext;
public class CreateFlowlogResponseUnmarshaller {
public static CreateFlowlogResponse unmarshall(CreateFlowlogResponse createFlowlogResponse, UnmarshallerContext _ctx) {
createFlowlogResponse.setRequestId(_ctx.stringValue("CreateFlowlogResponse.RequestId"));
createFlowlogResponse.setSuccess(_ctx.stringValue("CreateFlowlogResponse.Success"));
createFlowlogResponse.setFlowLogId(_ctx.stringValue("CreateFlowlogResponse.FlowLogId"));
return createFlowlogResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cbn/1.0.40/com/aliyuncs/cbn/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cbn/1.0.40/com/aliyuncs/cbn/transform/v20170912/CreateTrafficMarkingPolicyResponseUnmarshaller.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.cbn.transform.v20170912;
import com.aliyuncs.cbn.model.v20170912.CreateTrafficMarkingPolicyResponse;
import com.aliyuncs.transform.UnmarshallerContext;
public class CreateTrafficMarkingPolicyResponseUnmarshaller {
public static CreateTrafficMarkingPolicyResponse unmarshall(CreateTrafficMarkingPolicyResponse createTrafficMarkingPolicyResponse, UnmarshallerContext _ctx) {
createTrafficMarkingPolicyResponse.setRequestId(_ctx.stringValue("CreateTrafficMarkingPolicyResponse.RequestId"));
createTrafficMarkingPolicyResponse.setTrafficMarkingPolicyId(_ctx.stringValue("CreateTrafficMarkingPolicyResponse.TrafficMarkingPolicyId"));
return createTrafficMarkingPolicyResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cbn/1.0.40/com/aliyuncs/cbn/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cbn/1.0.40/com/aliyuncs/cbn/transform/v20170912/CreateTransitRouteTableAggregationResponseUnmarshaller.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.cbn.transform.v20170912;
import com.aliyuncs.cbn.model.v20170912.CreateTransitRouteTableAggregationResponse;
import com.aliyuncs.transform.UnmarshallerContext;
public class CreateTransitRouteTableAggregationResponseUnmarshaller {
public static CreateTransitRouteTableAggregationResponse unmarshall(CreateTransitRouteTableAggregationResponse createTransitRouteTableAggregationResponse, UnmarshallerContext _ctx) {
createTransitRouteTableAggregationResponse.setRequestId(_ctx.stringValue("CreateTransitRouteTableAggregationResponse.RequestId"));
return createTransitRouteTableAggregationResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cbn/1.0.40/com/aliyuncs/cbn/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cbn/1.0.40/com/aliyuncs/cbn/transform/v20170912/CreateTransitRouterCidrResponseUnmarshaller.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.cbn.transform.v20170912;
import com.aliyuncs.cbn.model.v20170912.CreateTransitRouterCidrResponse;
import com.aliyuncs.transform.UnmarshallerContext;
public class CreateTransitRouterCidrResponseUnmarshaller {
public static CreateTransitRouterCidrResponse unmarshall(CreateTransitRouterCidrResponse createTransitRouterCidrResponse, UnmarshallerContext _ctx) {
createTransitRouterCidrResponse.setRequestId(_ctx.stringValue("CreateTransitRouterCidrResponse.RequestId"));
createTransitRouterCidrResponse.setTransitRouterCidrId(_ctx.stringValue("CreateTransitRouterCidrResponse.TransitRouterCidrId"));
return createTransitRouterCidrResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cbn/1.0.40/com/aliyuncs/cbn/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cbn/1.0.40/com/aliyuncs/cbn/transform/v20170912/CreateTransitRouterEcrAttachmentResponseUnmarshaller.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.cbn.transform.v20170912;
import com.aliyuncs.cbn.model.v20170912.CreateTransitRouterEcrAttachmentResponse;
import com.aliyuncs.transform.UnmarshallerContext;
public class CreateTransitRouterEcrAttachmentResponseUnmarshaller {
public static CreateTransitRouterEcrAttachmentResponse unmarshall(CreateTransitRouterEcrAttachmentResponse createTransitRouterEcrAttachmentResponse, UnmarshallerContext _ctx) {
createTransitRouterEcrAttachmentResponse.setRequestId(_ctx.stringValue("CreateTransitRouterEcrAttachmentResponse.RequestId"));
createTransitRouterEcrAttachmentResponse.setTransitRouterAttachmentId(_ctx.stringValue("CreateTransitRouterEcrAttachmentResponse.TransitRouterAttachmentId"));
return createTransitRouterEcrAttachmentResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cbn/1.0.40/com/aliyuncs/cbn/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cbn/1.0.40/com/aliyuncs/cbn/transform/v20170912/CreateTransitRouterMulticastDomainResponseUnmarshaller.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.cbn.transform.v20170912;
import com.aliyuncs.cbn.model.v20170912.CreateTransitRouterMulticastDomainResponse;
import com.aliyuncs.transform.UnmarshallerContext;
public class CreateTransitRouterMulticastDomainResponseUnmarshaller {
public static CreateTransitRouterMulticastDomainResponse unmarshall(CreateTransitRouterMulticastDomainResponse createTransitRouterMulticastDomainResponse, UnmarshallerContext _ctx) {
createTransitRouterMulticastDomainResponse.setRequestId(_ctx.stringValue("CreateTransitRouterMulticastDomainResponse.RequestId"));
createTransitRouterMulticastDomainResponse.setTransitRouterMulticastDomainId(_ctx.stringValue("CreateTransitRouterMulticastDomainResponse.TransitRouterMulticastDomainId"));
return createTransitRouterMulticastDomainResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cbn/1.0.40/com/aliyuncs/cbn/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cbn/1.0.40/com/aliyuncs/cbn/transform/v20170912/CreateTransitRouterPeerAttachmentResponseUnmarshaller.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.cbn.transform.v20170912;
import com.aliyuncs.cbn.model.v20170912.CreateTransitRouterPeerAttachmentResponse;
import com.aliyuncs.transform.UnmarshallerContext;
public class CreateTransitRouterPeerAttachmentResponseUnmarshaller {
public static CreateTransitRouterPeerAttachmentResponse unmarshall(CreateTransitRouterPeerAttachmentResponse createTransitRouterPeerAttachmentResponse, UnmarshallerContext _ctx) {
createTransitRouterPeerAttachmentResponse.setRequestId(_ctx.stringValue("CreateTransitRouterPeerAttachmentResponse.RequestId"));
createTransitRouterPeerAttachmentResponse.setTransitRouterAttachmentId(_ctx.stringValue("CreateTransitRouterPeerAttachmentResponse.TransitRouterAttachmentId"));
return createTransitRouterPeerAttachmentResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cbn/1.0.40/com/aliyuncs/cbn/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cbn/1.0.40/com/aliyuncs/cbn/transform/v20170912/CreateTransitRouterPrefixListAssociationResponseUnmarshaller.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.cbn.transform.v20170912;
import com.aliyuncs.cbn.model.v20170912.CreateTransitRouterPrefixListAssociationResponse;
import com.aliyuncs.transform.UnmarshallerContext;
public class CreateTransitRouterPrefixListAssociationResponseUnmarshaller {
public static CreateTransitRouterPrefixListAssociationResponse unmarshall(CreateTransitRouterPrefixListAssociationResponse createTransitRouterPrefixListAssociationResponse, UnmarshallerContext _ctx) {
createTransitRouterPrefixListAssociationResponse.setRequestId(_ctx.stringValue("CreateTransitRouterPrefixListAssociationResponse.RequestId"));
return createTransitRouterPrefixListAssociationResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cbn/1.0.40/com/aliyuncs/cbn/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cbn/1.0.40/com/aliyuncs/cbn/transform/v20170912/CreateTransitRouterResponseUnmarshaller.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.cbn.transform.v20170912;
import com.aliyuncs.cbn.model.v20170912.CreateTransitRouterResponse;
import com.aliyuncs.transform.UnmarshallerContext;
public class CreateTransitRouterResponseUnmarshaller {
public static CreateTransitRouterResponse unmarshall(CreateTransitRouterResponse createTransitRouterResponse, UnmarshallerContext _ctx) {
createTransitRouterResponse.setRequestId(_ctx.stringValue("CreateTransitRouterResponse.RequestId"));
createTransitRouterResponse.setTransitRouterId(_ctx.stringValue("CreateTransitRouterResponse.TransitRouterId"));
return createTransitRouterResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cbn/1.0.40/com/aliyuncs/cbn/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cbn/1.0.40/com/aliyuncs/cbn/transform/v20170912/CreateTransitRouterRouteEntryResponseUnmarshaller.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.cbn.transform.v20170912;
import com.aliyuncs.cbn.model.v20170912.CreateTransitRouterRouteEntryResponse;
import com.aliyuncs.transform.UnmarshallerContext;
public class CreateTransitRouterRouteEntryResponseUnmarshaller {
public static CreateTransitRouterRouteEntryResponse unmarshall(CreateTransitRouterRouteEntryResponse createTransitRouterRouteEntryResponse, UnmarshallerContext _ctx) {
createTransitRouterRouteEntryResponse.setRequestId(_ctx.stringValue("CreateTransitRouterRouteEntryResponse.RequestId"));
createTransitRouterRouteEntryResponse.setTransitRouterRouteEntryId(_ctx.stringValue("CreateTransitRouterRouteEntryResponse.TransitRouterRouteEntryId"));
return createTransitRouterRouteEntryResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cbn/1.0.40/com/aliyuncs/cbn/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cbn/1.0.40/com/aliyuncs/cbn/transform/v20170912/CreateTransitRouterRouteTableResponseUnmarshaller.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.cbn.transform.v20170912;
import com.aliyuncs.cbn.model.v20170912.CreateTransitRouterRouteTableResponse;
import com.aliyuncs.transform.UnmarshallerContext;
public class CreateTransitRouterRouteTableResponseUnmarshaller {
public static CreateTransitRouterRouteTableResponse unmarshall(CreateTransitRouterRouteTableResponse createTransitRouterRouteTableResponse, UnmarshallerContext _ctx) {
createTransitRouterRouteTableResponse.setRequestId(_ctx.stringValue("CreateTransitRouterRouteTableResponse.RequestId"));
createTransitRouterRouteTableResponse.setTransitRouterRouteTableId(_ctx.stringValue("CreateTransitRouterRouteTableResponse.TransitRouterRouteTableId"));
return createTransitRouterRouteTableResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cbn/1.0.40/com/aliyuncs/cbn/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cbn/1.0.40/com/aliyuncs/cbn/transform/v20170912/CreateTransitRouterVbrAttachmentResponseUnmarshaller.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.cbn.transform.v20170912;
import com.aliyuncs.cbn.model.v20170912.CreateTransitRouterVbrAttachmentResponse;
import com.aliyuncs.transform.UnmarshallerContext;
public class CreateTransitRouterVbrAttachmentResponseUnmarshaller {
public static CreateTransitRouterVbrAttachmentResponse unmarshall(CreateTransitRouterVbrAttachmentResponse createTransitRouterVbrAttachmentResponse, UnmarshallerContext _ctx) {
createTransitRouterVbrAttachmentResponse.setRequestId(_ctx.stringValue("CreateTransitRouterVbrAttachmentResponse.RequestId"));
createTransitRouterVbrAttachmentResponse.setTransitRouterAttachmentId(_ctx.stringValue("CreateTransitRouterVbrAttachmentResponse.TransitRouterAttachmentId"));
return createTransitRouterVbrAttachmentResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cbn/1.0.40/com/aliyuncs/cbn/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cbn/1.0.40/com/aliyuncs/cbn/transform/v20170912/CreateTransitRouterVpcAttachmentResponseUnmarshaller.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.cbn.transform.v20170912;
import com.aliyuncs.cbn.model.v20170912.CreateTransitRouterVpcAttachmentResponse;
import com.aliyuncs.transform.UnmarshallerContext;
public class CreateTransitRouterVpcAttachmentResponseUnmarshaller {
public static CreateTransitRouterVpcAttachmentResponse unmarshall(CreateTransitRouterVpcAttachmentResponse createTransitRouterVpcAttachmentResponse, UnmarshallerContext _ctx) {
createTransitRouterVpcAttachmentResponse.setRequestId(_ctx.stringValue("CreateTransitRouterVpcAttachmentResponse.RequestId"));
createTransitRouterVpcAttachmentResponse.setTransitRouterAttachmentId(_ctx.stringValue("CreateTransitRouterVpcAttachmentResponse.TransitRouterAttachmentId"));
return createTransitRouterVpcAttachmentResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cbn/1.0.40/com/aliyuncs/cbn/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cbn/1.0.40/com/aliyuncs/cbn/transform/v20170912/CreateTransitRouterVpnAttachmentResponseUnmarshaller.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.cbn.transform.v20170912;
import com.aliyuncs.cbn.model.v20170912.CreateTransitRouterVpnAttachmentResponse;
import com.aliyuncs.transform.UnmarshallerContext;
public class CreateTransitRouterVpnAttachmentResponseUnmarshaller {
public static CreateTransitRouterVpnAttachmentResponse unmarshall(CreateTransitRouterVpnAttachmentResponse createTransitRouterVpnAttachmentResponse, UnmarshallerContext _ctx) {
createTransitRouterVpnAttachmentResponse.setRequestId(_ctx.stringValue("CreateTransitRouterVpnAttachmentResponse.RequestId"));
createTransitRouterVpnAttachmentResponse.setTransitRouterAttachmentId(_ctx.stringValue("CreateTransitRouterVpnAttachmentResponse.TransitRouterAttachmentId"));
return createTransitRouterVpnAttachmentResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cbn/1.0.40/com/aliyuncs/cbn/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cbn/1.0.40/com/aliyuncs/cbn/transform/v20170912/DeactiveFlowLogResponseUnmarshaller.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.cbn.transform.v20170912;
import com.aliyuncs.cbn.model.v20170912.DeactiveFlowLogResponse;
import com.aliyuncs.transform.UnmarshallerContext;
public class DeactiveFlowLogResponseUnmarshaller {
public static DeactiveFlowLogResponse unmarshall(DeactiveFlowLogResponse deactiveFlowLogResponse, UnmarshallerContext _ctx) {
deactiveFlowLogResponse.setRequestId(_ctx.stringValue("DeactiveFlowLogResponse.RequestId"));
deactiveFlowLogResponse.setSuccess(_ctx.stringValue("DeactiveFlowLogResponse.Success"));
return deactiveFlowLogResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cbn/1.0.40/com/aliyuncs/cbn/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cbn/1.0.40/com/aliyuncs/cbn/transform/v20170912/DeleteCenBandwidthPackageResponseUnmarshaller.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.cbn.transform.v20170912;
import com.aliyuncs.cbn.model.v20170912.DeleteCenBandwidthPackageResponse;
import com.aliyuncs.transform.UnmarshallerContext;
public class DeleteCenBandwidthPackageResponseUnmarshaller {
public static DeleteCenBandwidthPackageResponse unmarshall(DeleteCenBandwidthPackageResponse deleteCenBandwidthPackageResponse, UnmarshallerContext _ctx) {
deleteCenBandwidthPackageResponse.setRequestId(_ctx.stringValue("DeleteCenBandwidthPackageResponse.RequestId"));
return deleteCenBandwidthPackageResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cbn/1.0.40/com/aliyuncs/cbn/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cbn/1.0.40/com/aliyuncs/cbn/transform/v20170912/DeleteCenChildInstanceRouteEntryToAttachmentResponseUnmarshaller.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.cbn.transform.v20170912;
import com.aliyuncs.cbn.model.v20170912.DeleteCenChildInstanceRouteEntryToAttachmentResponse;
import com.aliyuncs.transform.UnmarshallerContext;
public class DeleteCenChildInstanceRouteEntryToAttachmentResponseUnmarshaller {
public static DeleteCenChildInstanceRouteEntryToAttachmentResponse unmarshall(DeleteCenChildInstanceRouteEntryToAttachmentResponse deleteCenChildInstanceRouteEntryToAttachmentResponse, UnmarshallerContext _ctx) {
deleteCenChildInstanceRouteEntryToAttachmentResponse.setRequestId(_ctx.stringValue("DeleteCenChildInstanceRouteEntryToAttachmentResponse.RequestId"));
return deleteCenChildInstanceRouteEntryToAttachmentResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cbn/1.0.40/com/aliyuncs/cbn/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cbn/1.0.40/com/aliyuncs/cbn/transform/v20170912/DeleteCenChildInstanceRouteEntryToCenResponseUnmarshaller.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.cbn.transform.v20170912;
import com.aliyuncs.cbn.model.v20170912.DeleteCenChildInstanceRouteEntryToCenResponse;
import com.aliyuncs.transform.UnmarshallerContext;
public class DeleteCenChildInstanceRouteEntryToCenResponseUnmarshaller {
public static DeleteCenChildInstanceRouteEntryToCenResponse unmarshall(DeleteCenChildInstanceRouteEntryToCenResponse deleteCenChildInstanceRouteEntryToCenResponse, UnmarshallerContext _ctx) {
deleteCenChildInstanceRouteEntryToCenResponse.setRequestId(_ctx.stringValue("DeleteCenChildInstanceRouteEntryToCenResponse.RequestId"));
return deleteCenChildInstanceRouteEntryToCenResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cbn/1.0.40/com/aliyuncs/cbn/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cbn/1.0.40/com/aliyuncs/cbn/transform/v20170912/DeleteCenInterRegionTrafficQosPolicyResponseUnmarshaller.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.cbn.transform.v20170912;
import com.aliyuncs.cbn.model.v20170912.DeleteCenInterRegionTrafficQosPolicyResponse;
import com.aliyuncs.transform.UnmarshallerContext;
public class DeleteCenInterRegionTrafficQosPolicyResponseUnmarshaller {
public static DeleteCenInterRegionTrafficQosPolicyResponse unmarshall(DeleteCenInterRegionTrafficQosPolicyResponse deleteCenInterRegionTrafficQosPolicyResponse, UnmarshallerContext _ctx) {
deleteCenInterRegionTrafficQosPolicyResponse.setRequestId(_ctx.stringValue("DeleteCenInterRegionTrafficQosPolicyResponse.RequestId"));
return deleteCenInterRegionTrafficQosPolicyResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cbn/1.0.40/com/aliyuncs/cbn/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cbn/1.0.40/com/aliyuncs/cbn/transform/v20170912/DeleteCenInterRegionTrafficQosQueueResponseUnmarshaller.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.cbn.transform.v20170912;
import com.aliyuncs.cbn.model.v20170912.DeleteCenInterRegionTrafficQosQueueResponse;
import com.aliyuncs.transform.UnmarshallerContext;
public class DeleteCenInterRegionTrafficQosQueueResponseUnmarshaller {
public static DeleteCenInterRegionTrafficQosQueueResponse unmarshall(DeleteCenInterRegionTrafficQosQueueResponse deleteCenInterRegionTrafficQosQueueResponse, UnmarshallerContext _ctx) {
deleteCenInterRegionTrafficQosQueueResponse.setRequestId(_ctx.stringValue("DeleteCenInterRegionTrafficQosQueueResponse.RequestId"));
return deleteCenInterRegionTrafficQosQueueResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cbn/1.0.40/com/aliyuncs/cbn/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cbn/1.0.40/com/aliyuncs/cbn/transform/v20170912/DeleteCenResponseUnmarshaller.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.cbn.transform.v20170912;
import com.aliyuncs.cbn.model.v20170912.DeleteCenResponse;
import com.aliyuncs.transform.UnmarshallerContext;
public class DeleteCenResponseUnmarshaller {
public static DeleteCenResponse unmarshall(DeleteCenResponse deleteCenResponse, UnmarshallerContext _ctx) {
deleteCenResponse.setRequestId(_ctx.stringValue("DeleteCenResponse.RequestId"));
return deleteCenResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cbn/1.0.40/com/aliyuncs/cbn/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cbn/1.0.40/com/aliyuncs/cbn/transform/v20170912/DeleteCenRouteMapResponseUnmarshaller.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.cbn.transform.v20170912;
import com.aliyuncs.cbn.model.v20170912.DeleteCenRouteMapResponse;
import com.aliyuncs.transform.UnmarshallerContext;
public class DeleteCenRouteMapResponseUnmarshaller {
public static DeleteCenRouteMapResponse unmarshall(DeleteCenRouteMapResponse deleteCenRouteMapResponse, UnmarshallerContext _ctx) {
deleteCenRouteMapResponse.setRequestId(_ctx.stringValue("DeleteCenRouteMapResponse.RequestId"));
return deleteCenRouteMapResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cbn/1.0.40/com/aliyuncs/cbn/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cbn/1.0.40/com/aliyuncs/cbn/transform/v20170912/DeleteFlowlogResponseUnmarshaller.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.cbn.transform.v20170912;
import com.aliyuncs.cbn.model.v20170912.DeleteFlowlogResponse;
import com.aliyuncs.transform.UnmarshallerContext;
public class DeleteFlowlogResponseUnmarshaller {
public static DeleteFlowlogResponse unmarshall(DeleteFlowlogResponse deleteFlowlogResponse, UnmarshallerContext _ctx) {
deleteFlowlogResponse.setRequestId(_ctx.stringValue("DeleteFlowlogResponse.RequestId"));
deleteFlowlogResponse.setSuccess(_ctx.stringValue("DeleteFlowlogResponse.Success"));
return deleteFlowlogResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cbn/1.0.40/com/aliyuncs/cbn/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cbn/1.0.40/com/aliyuncs/cbn/transform/v20170912/DeleteRouteServiceInCenResponseUnmarshaller.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.cbn.transform.v20170912;
import com.aliyuncs.cbn.model.v20170912.DeleteRouteServiceInCenResponse;
import com.aliyuncs.transform.UnmarshallerContext;
public class DeleteRouteServiceInCenResponseUnmarshaller {
public static DeleteRouteServiceInCenResponse unmarshall(DeleteRouteServiceInCenResponse deleteRouteServiceInCenResponse, UnmarshallerContext _ctx) {
deleteRouteServiceInCenResponse.setRequestId(_ctx.stringValue("DeleteRouteServiceInCenResponse.RequestId"));
return deleteRouteServiceInCenResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cbn/1.0.40/com/aliyuncs/cbn/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cbn/1.0.40/com/aliyuncs/cbn/transform/v20170912/DeleteTrafficMarkingPolicyResponseUnmarshaller.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.cbn.transform.v20170912;
import com.aliyuncs.cbn.model.v20170912.DeleteTrafficMarkingPolicyResponse;
import com.aliyuncs.transform.UnmarshallerContext;
public class DeleteTrafficMarkingPolicyResponseUnmarshaller {
public static DeleteTrafficMarkingPolicyResponse unmarshall(DeleteTrafficMarkingPolicyResponse deleteTrafficMarkingPolicyResponse, UnmarshallerContext _ctx) {
deleteTrafficMarkingPolicyResponse.setRequestId(_ctx.stringValue("DeleteTrafficMarkingPolicyResponse.RequestId"));
return deleteTrafficMarkingPolicyResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cbn/1.0.40/com/aliyuncs/cbn/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cbn/1.0.40/com/aliyuncs/cbn/transform/v20170912/DeleteTransitRouteTableAggregationResponseUnmarshaller.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.cbn.transform.v20170912;
import com.aliyuncs.cbn.model.v20170912.DeleteTransitRouteTableAggregationResponse;
import com.aliyuncs.transform.UnmarshallerContext;
public class DeleteTransitRouteTableAggregationResponseUnmarshaller {
public static DeleteTransitRouteTableAggregationResponse unmarshall(DeleteTransitRouteTableAggregationResponse deleteTransitRouteTableAggregationResponse, UnmarshallerContext _ctx) {
deleteTransitRouteTableAggregationResponse.setRequestId(_ctx.stringValue("DeleteTransitRouteTableAggregationResponse.RequestId"));
return deleteTransitRouteTableAggregationResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cbn/1.0.40/com/aliyuncs/cbn/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cbn/1.0.40/com/aliyuncs/cbn/transform/v20170912/DeleteTransitRouterCidrResponseUnmarshaller.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.cbn.transform.v20170912;
import com.aliyuncs.cbn.model.v20170912.DeleteTransitRouterCidrResponse;
import com.aliyuncs.transform.UnmarshallerContext;
public class DeleteTransitRouterCidrResponseUnmarshaller {
public static DeleteTransitRouterCidrResponse unmarshall(DeleteTransitRouterCidrResponse deleteTransitRouterCidrResponse, UnmarshallerContext _ctx) {
deleteTransitRouterCidrResponse.setRequestId(_ctx.stringValue("DeleteTransitRouterCidrResponse.RequestId"));
return deleteTransitRouterCidrResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cbn/1.0.40/com/aliyuncs/cbn/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cbn/1.0.40/com/aliyuncs/cbn/transform/v20170912/DeleteTransitRouterEcrAttachmentResponseUnmarshaller.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.cbn.transform.v20170912;
import com.aliyuncs.cbn.model.v20170912.DeleteTransitRouterEcrAttachmentResponse;
import com.aliyuncs.transform.UnmarshallerContext;
public class DeleteTransitRouterEcrAttachmentResponseUnmarshaller {
public static DeleteTransitRouterEcrAttachmentResponse unmarshall(DeleteTransitRouterEcrAttachmentResponse deleteTransitRouterEcrAttachmentResponse, UnmarshallerContext _ctx) {
deleteTransitRouterEcrAttachmentResponse.setRequestId(_ctx.stringValue("DeleteTransitRouterEcrAttachmentResponse.RequestId"));
return deleteTransitRouterEcrAttachmentResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cbn/1.0.40/com/aliyuncs/cbn/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cbn/1.0.40/com/aliyuncs/cbn/transform/v20170912/DeleteTransitRouterMulticastDomainResponseUnmarshaller.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.cbn.transform.v20170912;
import com.aliyuncs.cbn.model.v20170912.DeleteTransitRouterMulticastDomainResponse;
import com.aliyuncs.transform.UnmarshallerContext;
public class DeleteTransitRouterMulticastDomainResponseUnmarshaller {
public static DeleteTransitRouterMulticastDomainResponse unmarshall(DeleteTransitRouterMulticastDomainResponse deleteTransitRouterMulticastDomainResponse, UnmarshallerContext _ctx) {
deleteTransitRouterMulticastDomainResponse.setRequestId(_ctx.stringValue("DeleteTransitRouterMulticastDomainResponse.RequestId"));
return deleteTransitRouterMulticastDomainResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cbn/1.0.40/com/aliyuncs/cbn/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cbn/1.0.40/com/aliyuncs/cbn/transform/v20170912/DeleteTransitRouterPeerAttachmentResponseUnmarshaller.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.cbn.transform.v20170912;
import com.aliyuncs.cbn.model.v20170912.DeleteTransitRouterPeerAttachmentResponse;
import com.aliyuncs.transform.UnmarshallerContext;
public class DeleteTransitRouterPeerAttachmentResponseUnmarshaller {
public static DeleteTransitRouterPeerAttachmentResponse unmarshall(DeleteTransitRouterPeerAttachmentResponse deleteTransitRouterPeerAttachmentResponse, UnmarshallerContext _ctx) {
deleteTransitRouterPeerAttachmentResponse.setRequestId(_ctx.stringValue("DeleteTransitRouterPeerAttachmentResponse.RequestId"));
return deleteTransitRouterPeerAttachmentResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cbn/1.0.40/com/aliyuncs/cbn/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cbn/1.0.40/com/aliyuncs/cbn/transform/v20170912/DeleteTransitRouterPrefixListAssociationResponseUnmarshaller.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.cbn.transform.v20170912;
import com.aliyuncs.cbn.model.v20170912.DeleteTransitRouterPrefixListAssociationResponse;
import com.aliyuncs.transform.UnmarshallerContext;
public class DeleteTransitRouterPrefixListAssociationResponseUnmarshaller {
public static DeleteTransitRouterPrefixListAssociationResponse unmarshall(DeleteTransitRouterPrefixListAssociationResponse deleteTransitRouterPrefixListAssociationResponse, UnmarshallerContext _ctx) {
deleteTransitRouterPrefixListAssociationResponse.setRequestId(_ctx.stringValue("DeleteTransitRouterPrefixListAssociationResponse.RequestId"));
return deleteTransitRouterPrefixListAssociationResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cbn/1.0.40/com/aliyuncs/cbn/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cbn/1.0.40/com/aliyuncs/cbn/transform/v20170912/DeleteTransitRouterResponseUnmarshaller.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.cbn.transform.v20170912;
import com.aliyuncs.cbn.model.v20170912.DeleteTransitRouterResponse;
import com.aliyuncs.transform.UnmarshallerContext;
public class DeleteTransitRouterResponseUnmarshaller {
public static DeleteTransitRouterResponse unmarshall(DeleteTransitRouterResponse deleteTransitRouterResponse, UnmarshallerContext _ctx) {
deleteTransitRouterResponse.setRequestId(_ctx.stringValue("DeleteTransitRouterResponse.RequestId"));
return deleteTransitRouterResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cbn/1.0.40/com/aliyuncs/cbn/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cbn/1.0.40/com/aliyuncs/cbn/transform/v20170912/DeleteTransitRouterRouteEntryResponseUnmarshaller.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.cbn.transform.v20170912;
import com.aliyuncs.cbn.model.v20170912.DeleteTransitRouterRouteEntryResponse;
import com.aliyuncs.transform.UnmarshallerContext;
public class DeleteTransitRouterRouteEntryResponseUnmarshaller {
public static DeleteTransitRouterRouteEntryResponse unmarshall(DeleteTransitRouterRouteEntryResponse deleteTransitRouterRouteEntryResponse, UnmarshallerContext _ctx) {
deleteTransitRouterRouteEntryResponse.setRequestId(_ctx.stringValue("DeleteTransitRouterRouteEntryResponse.RequestId"));
return deleteTransitRouterRouteEntryResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cbn/1.0.40/com/aliyuncs/cbn/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cbn/1.0.40/com/aliyuncs/cbn/transform/v20170912/DeleteTransitRouterRouteTableResponseUnmarshaller.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.cbn.transform.v20170912;
import com.aliyuncs.cbn.model.v20170912.DeleteTransitRouterRouteTableResponse;
import com.aliyuncs.transform.UnmarshallerContext;
public class DeleteTransitRouterRouteTableResponseUnmarshaller {
public static DeleteTransitRouterRouteTableResponse unmarshall(DeleteTransitRouterRouteTableResponse deleteTransitRouterRouteTableResponse, UnmarshallerContext _ctx) {
deleteTransitRouterRouteTableResponse.setRequestId(_ctx.stringValue("DeleteTransitRouterRouteTableResponse.RequestId"));
return deleteTransitRouterRouteTableResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cbn/1.0.40/com/aliyuncs/cbn/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cbn/1.0.40/com/aliyuncs/cbn/transform/v20170912/DeleteTransitRouterVbrAttachmentResponseUnmarshaller.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.cbn.transform.v20170912;
import com.aliyuncs.cbn.model.v20170912.DeleteTransitRouterVbrAttachmentResponse;
import com.aliyuncs.transform.UnmarshallerContext;
public class DeleteTransitRouterVbrAttachmentResponseUnmarshaller {
public static DeleteTransitRouterVbrAttachmentResponse unmarshall(DeleteTransitRouterVbrAttachmentResponse deleteTransitRouterVbrAttachmentResponse, UnmarshallerContext _ctx) {
deleteTransitRouterVbrAttachmentResponse.setRequestId(_ctx.stringValue("DeleteTransitRouterVbrAttachmentResponse.RequestId"));
return deleteTransitRouterVbrAttachmentResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cbn/1.0.40/com/aliyuncs/cbn/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cbn/1.0.40/com/aliyuncs/cbn/transform/v20170912/DeleteTransitRouterVpcAttachmentResponseUnmarshaller.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.cbn.transform.v20170912;
import com.aliyuncs.cbn.model.v20170912.DeleteTransitRouterVpcAttachmentResponse;
import com.aliyuncs.transform.UnmarshallerContext;
public class DeleteTransitRouterVpcAttachmentResponseUnmarshaller {
public static DeleteTransitRouterVpcAttachmentResponse unmarshall(DeleteTransitRouterVpcAttachmentResponse deleteTransitRouterVpcAttachmentResponse, UnmarshallerContext _ctx) {
deleteTransitRouterVpcAttachmentResponse.setRequestId(_ctx.stringValue("DeleteTransitRouterVpcAttachmentResponse.RequestId"));
return deleteTransitRouterVpcAttachmentResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cbn/1.0.40/com/aliyuncs/cbn/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cbn/1.0.40/com/aliyuncs/cbn/transform/v20170912/DeleteTransitRouterVpnAttachmentResponseUnmarshaller.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.cbn.transform.v20170912;
import com.aliyuncs.cbn.model.v20170912.DeleteTransitRouterVpnAttachmentResponse;
import com.aliyuncs.transform.UnmarshallerContext;
public class DeleteTransitRouterVpnAttachmentResponseUnmarshaller {
public static DeleteTransitRouterVpnAttachmentResponse unmarshall(DeleteTransitRouterVpnAttachmentResponse deleteTransitRouterVpnAttachmentResponse, UnmarshallerContext _ctx) {
deleteTransitRouterVpnAttachmentResponse.setRequestId(_ctx.stringValue("DeleteTransitRouterVpnAttachmentResponse.RequestId"));
return deleteTransitRouterVpnAttachmentResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cbn/1.0.40/com/aliyuncs/cbn/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cbn/1.0.40/com/aliyuncs/cbn/transform/v20170912/DeregisterTransitRouterMulticastGroupMembersResponseUnmarshaller.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.cbn.transform.v20170912;
import com.aliyuncs.cbn.model.v20170912.DeregisterTransitRouterMulticastGroupMembersResponse;
import com.aliyuncs.transform.UnmarshallerContext;
public class DeregisterTransitRouterMulticastGroupMembersResponseUnmarshaller {
public static DeregisterTransitRouterMulticastGroupMembersResponse unmarshall(DeregisterTransitRouterMulticastGroupMembersResponse deregisterTransitRouterMulticastGroupMembersResponse, UnmarshallerContext _ctx) {
deregisterTransitRouterMulticastGroupMembersResponse.setRequestId(_ctx.stringValue("DeregisterTransitRouterMulticastGroupMembersResponse.RequestId"));
return deregisterTransitRouterMulticastGroupMembersResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cbn/1.0.40/com/aliyuncs/cbn/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cbn/1.0.40/com/aliyuncs/cbn/transform/v20170912/DeregisterTransitRouterMulticastGroupSourcesResponseUnmarshaller.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.cbn.transform.v20170912;
import com.aliyuncs.cbn.model.v20170912.DeregisterTransitRouterMulticastGroupSourcesResponse;
import com.aliyuncs.transform.UnmarshallerContext;
public class DeregisterTransitRouterMulticastGroupSourcesResponseUnmarshaller {
public static DeregisterTransitRouterMulticastGroupSourcesResponse unmarshall(DeregisterTransitRouterMulticastGroupSourcesResponse deregisterTransitRouterMulticastGroupSourcesResponse, UnmarshallerContext _ctx) {
deregisterTransitRouterMulticastGroupSourcesResponse.setRequestId(_ctx.stringValue("DeregisterTransitRouterMulticastGroupSourcesResponse.RequestId"));
return deregisterTransitRouterMulticastGroupSourcesResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cbn/1.0.40/com/aliyuncs/cbn/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cbn/1.0.40/com/aliyuncs/cbn/transform/v20170912/DescribeCenAttachedChildInstanceAttributeResponseUnmarshaller.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.cbn.transform.v20170912;
import java.util.ArrayList;
import java.util.List;
import com.aliyuncs.cbn.model.v20170912.DescribeCenAttachedChildInstanceAttributeResponse;
import com.aliyuncs.cbn.model.v20170912.DescribeCenAttachedChildInstanceAttributeResponse.ChildInstanceAttributes;
import com.aliyuncs.cbn.model.v20170912.DescribeCenAttachedChildInstanceAttributeResponse.ChildInstanceAttributes.Ipv6CidrBlock;
import com.aliyuncs.cbn.model.v20170912.DescribeCenAttachedChildInstanceAttributeResponse.ChildInstanceRouteTable;
import com.aliyuncs.transform.UnmarshallerContext;
public class DescribeCenAttachedChildInstanceAttributeResponseUnmarshaller {
public static DescribeCenAttachedChildInstanceAttributeResponse unmarshall(DescribeCenAttachedChildInstanceAttributeResponse describeCenAttachedChildInstanceAttributeResponse, UnmarshallerContext _ctx) {
describeCenAttachedChildInstanceAttributeResponse.setRequestId(_ctx.stringValue("DescribeCenAttachedChildInstanceAttributeResponse.RequestId"));
describeCenAttachedChildInstanceAttributeResponse.setStatus(_ctx.stringValue("DescribeCenAttachedChildInstanceAttributeResponse.Status"));
describeCenAttachedChildInstanceAttributeResponse.setChildInstanceType(_ctx.stringValue("DescribeCenAttachedChildInstanceAttributeResponse.ChildInstanceType"));
describeCenAttachedChildInstanceAttributeResponse.setChildInstanceRegionId(_ctx.stringValue("DescribeCenAttachedChildInstanceAttributeResponse.ChildInstanceRegionId"));
describeCenAttachedChildInstanceAttributeResponse.setChildInstanceOwnerId(_ctx.longValue("DescribeCenAttachedChildInstanceAttributeResponse.ChildInstanceOwnerId"));
describeCenAttachedChildInstanceAttributeResponse.setChildInstanceId(_ctx.stringValue("DescribeCenAttachedChildInstanceAttributeResponse.ChildInstanceId"));
describeCenAttachedChildInstanceAttributeResponse.setCenId(_ctx.stringValue("DescribeCenAttachedChildInstanceAttributeResponse.CenId"));
describeCenAttachedChildInstanceAttributeResponse.setChildInstanceName(_ctx.stringValue("DescribeCenAttachedChildInstanceAttributeResponse.ChildInstanceName"));
describeCenAttachedChildInstanceAttributeResponse.setIpv6StatusInCen(_ctx.stringValue("DescribeCenAttachedChildInstanceAttributeResponse.Ipv6StatusInCen"));
describeCenAttachedChildInstanceAttributeResponse.setChildInstanceAttachTime(_ctx.stringValue("DescribeCenAttachedChildInstanceAttributeResponse.ChildInstanceAttachTime"));
ChildInstanceAttributes childInstanceAttributes = new ChildInstanceAttributes();
childInstanceAttributes.setCidrBlock(_ctx.stringValue("DescribeCenAttachedChildInstanceAttributeResponse.ChildInstanceAttributes.CidrBlock"));
childInstanceAttributes.setIpv6CidrBlock(_ctx.stringValue("DescribeCenAttachedChildInstanceAttributeResponse.ChildInstanceAttributes.Ipv6CidrBlock"));
List<String> secondaryCidrBlocks = new ArrayList<String>();
for (int i = 0; i < _ctx.lengthValue("DescribeCenAttachedChildInstanceAttributeResponse.ChildInstanceAttributes.SecondaryCidrBlocks.Length"); i++) {
secondaryCidrBlocks.add(_ctx.stringValue("DescribeCenAttachedChildInstanceAttributeResponse.ChildInstanceAttributes.SecondaryCidrBlocks["+ i +"]"));
}
childInstanceAttributes.setSecondaryCidrBlocks(secondaryCidrBlocks);
List<Ipv6CidrBlock> ipv6CidrBlocks = new ArrayList<Ipv6CidrBlock>();
for (int i = 0; i < _ctx.lengthValue("DescribeCenAttachedChildInstanceAttributeResponse.ChildInstanceAttributes.Ipv6CidrBlocks.Length"); i++) {
Ipv6CidrBlock ipv6CidrBlock = new Ipv6CidrBlock();
ipv6CidrBlock.setIpv6Isp(_ctx.stringValue("DescribeCenAttachedChildInstanceAttributeResponse.ChildInstanceAttributes.Ipv6CidrBlocks["+ i +"].Ipv6Isp"));
ipv6CidrBlock.setIpv6CidrBlock(_ctx.stringValue("DescribeCenAttachedChildInstanceAttributeResponse.ChildInstanceAttributes.Ipv6CidrBlocks["+ i +"].Ipv6CidrBlock"));
ipv6CidrBlocks.add(ipv6CidrBlock);
}
childInstanceAttributes.setIpv6CidrBlocks(ipv6CidrBlocks);
describeCenAttachedChildInstanceAttributeResponse.setChildInstanceAttributes(childInstanceAttributes);
List<ChildInstanceRouteTable> childInstanceRouteTables = new ArrayList<ChildInstanceRouteTable>();
for (int i = 0; i < _ctx.lengthValue("DescribeCenAttachedChildInstanceAttributeResponse.ChildInstanceRouteTables.Length"); i++) {
ChildInstanceRouteTable childInstanceRouteTable = new ChildInstanceRouteTable();
childInstanceRouteTable.setRouteTableId(_ctx.stringValue("DescribeCenAttachedChildInstanceAttributeResponse.ChildInstanceRouteTables["+ i +"].RouteTableId"));
childInstanceRouteTable.setRouteTableType(_ctx.stringValue("DescribeCenAttachedChildInstanceAttributeResponse.ChildInstanceRouteTables["+ i +"].RouteTableType"));
childInstanceRouteTables.add(childInstanceRouteTable);
}
describeCenAttachedChildInstanceAttributeResponse.setChildInstanceRouteTables(childInstanceRouteTables);
return describeCenAttachedChildInstanceAttributeResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cbn/1.0.40/com/aliyuncs/cbn/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cbn/1.0.40/com/aliyuncs/cbn/transform/v20170912/DescribeCenAttachedChildInstancesResponseUnmarshaller.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.cbn.transform.v20170912;
import java.util.ArrayList;
import java.util.List;
import com.aliyuncs.cbn.model.v20170912.DescribeCenAttachedChildInstancesResponse;
import com.aliyuncs.cbn.model.v20170912.DescribeCenAttachedChildInstancesResponse.ChildInstance;
import com.aliyuncs.transform.UnmarshallerContext;
public class DescribeCenAttachedChildInstancesResponseUnmarshaller {
public static DescribeCenAttachedChildInstancesResponse unmarshall(DescribeCenAttachedChildInstancesResponse describeCenAttachedChildInstancesResponse, UnmarshallerContext _ctx) {
describeCenAttachedChildInstancesResponse.setRequestId(_ctx.stringValue("DescribeCenAttachedChildInstancesResponse.RequestId"));
describeCenAttachedChildInstancesResponse.setPageSize(_ctx.integerValue("DescribeCenAttachedChildInstancesResponse.PageSize"));
describeCenAttachedChildInstancesResponse.setPageNumber(_ctx.integerValue("DescribeCenAttachedChildInstancesResponse.PageNumber"));
describeCenAttachedChildInstancesResponse.setTotalCount(_ctx.integerValue("DescribeCenAttachedChildInstancesResponse.TotalCount"));
List<ChildInstance> childInstances = new ArrayList<ChildInstance>();
for (int i = 0; i < _ctx.lengthValue("DescribeCenAttachedChildInstancesResponse.ChildInstances.Length"); i++) {
ChildInstance childInstance = new ChildInstance();
childInstance.setChildInstanceType(_ctx.stringValue("DescribeCenAttachedChildInstancesResponse.ChildInstances["+ i +"].ChildInstanceType"));
childInstance.setStatus(_ctx.stringValue("DescribeCenAttachedChildInstancesResponse.ChildInstances["+ i +"].Status"));
childInstance.setChildInstanceRegionId(_ctx.stringValue("DescribeCenAttachedChildInstancesResponse.ChildInstances["+ i +"].ChildInstanceRegionId"));
childInstance.setChildInstanceOwnerId(_ctx.longValue("DescribeCenAttachedChildInstancesResponse.ChildInstances["+ i +"].ChildInstanceOwnerId"));
childInstance.setChildInstanceId(_ctx.stringValue("DescribeCenAttachedChildInstancesResponse.ChildInstances["+ i +"].ChildInstanceId"));
childInstance.setCenId(_ctx.stringValue("DescribeCenAttachedChildInstancesResponse.ChildInstances["+ i +"].CenId"));
childInstance.setChildInstanceAttachTime(_ctx.stringValue("DescribeCenAttachedChildInstancesResponse.ChildInstances["+ i +"].ChildInstanceAttachTime"));
childInstances.add(childInstance);
}
describeCenAttachedChildInstancesResponse.setChildInstances(childInstances);
return describeCenAttachedChildInstancesResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cbn/1.0.40/com/aliyuncs/cbn/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cbn/1.0.40/com/aliyuncs/cbn/transform/v20170912/DescribeCenBandwidthPackagesResponseUnmarshaller.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.cbn.transform.v20170912;
import java.util.ArrayList;
import java.util.List;
import com.aliyuncs.cbn.model.v20170912.DescribeCenBandwidthPackagesResponse;
import com.aliyuncs.cbn.model.v20170912.DescribeCenBandwidthPackagesResponse.CenBandwidthPackage;
import com.aliyuncs.cbn.model.v20170912.DescribeCenBandwidthPackagesResponse.CenBandwidthPackage.OrginInterRegionBandwidthLimit;
import com.aliyuncs.cbn.model.v20170912.DescribeCenBandwidthPackagesResponse.CenBandwidthPackage.Tag;
import com.aliyuncs.transform.UnmarshallerContext;
public class DescribeCenBandwidthPackagesResponseUnmarshaller {
public static DescribeCenBandwidthPackagesResponse unmarshall(DescribeCenBandwidthPackagesResponse describeCenBandwidthPackagesResponse, UnmarshallerContext _ctx) {
describeCenBandwidthPackagesResponse.setRequestId(_ctx.stringValue("DescribeCenBandwidthPackagesResponse.RequestId"));
describeCenBandwidthPackagesResponse.setPageSize(_ctx.integerValue("DescribeCenBandwidthPackagesResponse.PageSize"));
describeCenBandwidthPackagesResponse.setPageNumber(_ctx.integerValue("DescribeCenBandwidthPackagesResponse.PageNumber"));
describeCenBandwidthPackagesResponse.setTotalCount(_ctx.integerValue("DescribeCenBandwidthPackagesResponse.TotalCount"));
List<CenBandwidthPackage> cenBandwidthPackages = new ArrayList<CenBandwidthPackage>();
for (int i = 0; i < _ctx.lengthValue("DescribeCenBandwidthPackagesResponse.CenBandwidthPackages.Length"); i++) {
CenBandwidthPackage cenBandwidthPackage = new CenBandwidthPackage();
cenBandwidthPackage.setReservationActiveTime(_ctx.stringValue("DescribeCenBandwidthPackagesResponse.CenBandwidthPackages["+ i +"].ReservationActiveTime"));
cenBandwidthPackage.setStatus(_ctx.stringValue("DescribeCenBandwidthPackagesResponse.CenBandwidthPackages["+ i +"].Status"));
cenBandwidthPackage.setCreationTime(_ctx.stringValue("DescribeCenBandwidthPackagesResponse.CenBandwidthPackages["+ i +"].CreationTime"));
cenBandwidthPackage.setReservationOrderType(_ctx.stringValue("DescribeCenBandwidthPackagesResponse.CenBandwidthPackages["+ i +"].ReservationOrderType"));
cenBandwidthPackage.setBandwidthPackageChargeType(_ctx.stringValue("DescribeCenBandwidthPackagesResponse.CenBandwidthPackages["+ i +"].BandwidthPackageChargeType"));
cenBandwidthPackage.setCenBandwidthPackageId(_ctx.stringValue("DescribeCenBandwidthPackagesResponse.CenBandwidthPackages["+ i +"].CenBandwidthPackageId"));
cenBandwidthPackage.setReservationInternetChargeType(_ctx.stringValue("DescribeCenBandwidthPackagesResponse.CenBandwidthPackages["+ i +"].ReservationInternetChargeType"));
cenBandwidthPackage.setRatio(_ctx.stringValue("DescribeCenBandwidthPackagesResponse.CenBandwidthPackages["+ i +"].Ratio"));
cenBandwidthPackage.setGeographicRegionAId(_ctx.stringValue("DescribeCenBandwidthPackagesResponse.CenBandwidthPackages["+ i +"].GeographicRegionAId"));
cenBandwidthPackage.setTypeFor95(_ctx.stringValue("DescribeCenBandwidthPackagesResponse.CenBandwidthPackages["+ i +"].TypeFor95"));
cenBandwidthPackage.setBandwidth(_ctx.longValue("DescribeCenBandwidthPackagesResponse.CenBandwidthPackages["+ i +"].Bandwidth"));
cenBandwidthPackage.setDescription(_ctx.stringValue("DescribeCenBandwidthPackagesResponse.CenBandwidthPackages["+ i +"].Description"));
cenBandwidthPackage.setExpiredTime(_ctx.stringValue("DescribeCenBandwidthPackagesResponse.CenBandwidthPackages["+ i +"].ExpiredTime"));
cenBandwidthPackage.setReservationBandwidth(_ctx.stringValue("DescribeCenBandwidthPackagesResponse.CenBandwidthPackages["+ i +"].ReservationBandwidth"));
cenBandwidthPackage.setGeographicSpanId(_ctx.stringValue("DescribeCenBandwidthPackagesResponse.CenBandwidthPackages["+ i +"].GeographicSpanId"));
cenBandwidthPackage.setGeographicRegionBId(_ctx.stringValue("DescribeCenBandwidthPackagesResponse.CenBandwidthPackages["+ i +"].GeographicRegionBId"));
cenBandwidthPackage.setResourceGroupId(_ctx.stringValue("DescribeCenBandwidthPackagesResponse.CenBandwidthPackages["+ i +"].ResourceGroupId"));
cenBandwidthPackage.setIsCrossBorder(_ctx.booleanValue("DescribeCenBandwidthPackagesResponse.CenBandwidthPackages["+ i +"].IsCrossBorder"));
cenBandwidthPackage.setBusinessStatus(_ctx.stringValue("DescribeCenBandwidthPackagesResponse.CenBandwidthPackages["+ i +"].BusinessStatus"));
cenBandwidthPackage.setName(_ctx.stringValue("DescribeCenBandwidthPackagesResponse.CenBandwidthPackages["+ i +"].Name"));
cenBandwidthPackage.setHasReservationData(_ctx.stringValue("DescribeCenBandwidthPackagesResponse.CenBandwidthPackages["+ i +"].HasReservationData"));
cenBandwidthPackage.setServiceType(_ctx.stringValue("DescribeCenBandwidthPackagesResponse.CenBandwidthPackages["+ i +"].ServiceType"));
List<String> cenIds = new ArrayList<String>();
for (int j = 0; j < _ctx.lengthValue("DescribeCenBandwidthPackagesResponse.CenBandwidthPackages["+ i +"].CenIds.Length"); j++) {
cenIds.add(_ctx.stringValue("DescribeCenBandwidthPackagesResponse.CenBandwidthPackages["+ i +"].CenIds["+ j +"]"));
}
cenBandwidthPackage.setCenIds(cenIds);
List<OrginInterRegionBandwidthLimit> orginInterRegionBandwidthLimits = new ArrayList<OrginInterRegionBandwidthLimit>();
for (int j = 0; j < _ctx.lengthValue("DescribeCenBandwidthPackagesResponse.CenBandwidthPackages["+ i +"].OrginInterRegionBandwidthLimits.Length"); j++) {
OrginInterRegionBandwidthLimit orginInterRegionBandwidthLimit = new OrginInterRegionBandwidthLimit();
orginInterRegionBandwidthLimit.setBandwidthLimit(_ctx.stringValue("DescribeCenBandwidthPackagesResponse.CenBandwidthPackages["+ i +"].OrginInterRegionBandwidthLimits["+ j +"].BandwidthLimit"));
orginInterRegionBandwidthLimit.setOppositeRegionId(_ctx.stringValue("DescribeCenBandwidthPackagesResponse.CenBandwidthPackages["+ i +"].OrginInterRegionBandwidthLimits["+ j +"].OppositeRegionId"));
orginInterRegionBandwidthLimit.setGeographicSpanId(_ctx.stringValue("DescribeCenBandwidthPackagesResponse.CenBandwidthPackages["+ i +"].OrginInterRegionBandwidthLimits["+ j +"].GeographicSpanId"));
orginInterRegionBandwidthLimit.setLocalRegionId(_ctx.stringValue("DescribeCenBandwidthPackagesResponse.CenBandwidthPackages["+ i +"].OrginInterRegionBandwidthLimits["+ j +"].LocalRegionId"));
orginInterRegionBandwidthLimits.add(orginInterRegionBandwidthLimit);
}
cenBandwidthPackage.setOrginInterRegionBandwidthLimits(orginInterRegionBandwidthLimits);
List<Tag> tags = new ArrayList<Tag>();
for (int j = 0; j < _ctx.lengthValue("DescribeCenBandwidthPackagesResponse.CenBandwidthPackages["+ i +"].Tags.Length"); j++) {
Tag tag = new Tag();
tag.setKey(_ctx.stringValue("DescribeCenBandwidthPackagesResponse.CenBandwidthPackages["+ i +"].Tags["+ j +"].Key"));
tag.setValue(_ctx.stringValue("DescribeCenBandwidthPackagesResponse.CenBandwidthPackages["+ i +"].Tags["+ j +"].Value"));
tags.add(tag);
}
cenBandwidthPackage.setTags(tags);
cenBandwidthPackages.add(cenBandwidthPackage);
}
describeCenBandwidthPackagesResponse.setCenBandwidthPackages(cenBandwidthPackages);
return describeCenBandwidthPackagesResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cbn/1.0.40/com/aliyuncs/cbn/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cbn/1.0.40/com/aliyuncs/cbn/transform/v20170912/DescribeCenChildInstanceRouteEntriesResponseUnmarshaller.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.cbn.transform.v20170912;
import java.util.ArrayList;
import java.util.List;
import com.aliyuncs.cbn.model.v20170912.DescribeCenChildInstanceRouteEntriesResponse;
import com.aliyuncs.cbn.model.v20170912.DescribeCenChildInstanceRouteEntriesResponse.CenRouteEntry;
import com.aliyuncs.cbn.model.v20170912.DescribeCenChildInstanceRouteEntriesResponse.CenRouteEntry.CenRouteMapRecord;
import com.aliyuncs.cbn.model.v20170912.DescribeCenChildInstanceRouteEntriesResponse.CenRouteEntry.Conflict;
import com.aliyuncs.transform.UnmarshallerContext;
public class DescribeCenChildInstanceRouteEntriesResponseUnmarshaller {
public static DescribeCenChildInstanceRouteEntriesResponse unmarshall(DescribeCenChildInstanceRouteEntriesResponse describeCenChildInstanceRouteEntriesResponse, UnmarshallerContext _ctx) {
describeCenChildInstanceRouteEntriesResponse.setRequestId(_ctx.stringValue("DescribeCenChildInstanceRouteEntriesResponse.RequestId"));
describeCenChildInstanceRouteEntriesResponse.setPageSize(_ctx.integerValue("DescribeCenChildInstanceRouteEntriesResponse.PageSize"));
describeCenChildInstanceRouteEntriesResponse.setPageNumber(_ctx.integerValue("DescribeCenChildInstanceRouteEntriesResponse.PageNumber"));
describeCenChildInstanceRouteEntriesResponse.setTotalCount(_ctx.integerValue("DescribeCenChildInstanceRouteEntriesResponse.TotalCount"));
List<CenRouteEntry> cenRouteEntries = new ArrayList<CenRouteEntry>();
for (int i = 0; i < _ctx.lengthValue("DescribeCenChildInstanceRouteEntriesResponse.CenRouteEntries.Length"); i++) {
CenRouteEntry cenRouteEntry = new CenRouteEntry();
cenRouteEntry.setStatus(_ctx.stringValue("DescribeCenChildInstanceRouteEntriesResponse.CenRouteEntries["+ i +"].Status"));
cenRouteEntry.setType(_ctx.stringValue("DescribeCenChildInstanceRouteEntriesResponse.CenRouteEntries["+ i +"].Type"));
cenRouteEntry.setPublishStatus(_ctx.stringValue("DescribeCenChildInstanceRouteEntriesResponse.CenRouteEntries["+ i +"].PublishStatus"));
cenRouteEntry.setNextHopType(_ctx.stringValue("DescribeCenChildInstanceRouteEntriesResponse.CenRouteEntries["+ i +"].NextHopType"));
cenRouteEntry.setOperationalMode(_ctx.booleanValue("DescribeCenChildInstanceRouteEntriesResponse.CenRouteEntries["+ i +"].OperationalMode"));
cenRouteEntry.setNextHopRegionId(_ctx.stringValue("DescribeCenChildInstanceRouteEntriesResponse.CenRouteEntries["+ i +"].NextHopRegionId"));
cenRouteEntry.setNextHopInstanceId(_ctx.stringValue("DescribeCenChildInstanceRouteEntriesResponse.CenRouteEntries["+ i +"].NextHopInstanceId"));
cenRouteEntry.setDestinationCidrBlock(_ctx.stringValue("DescribeCenChildInstanceRouteEntriesResponse.CenRouteEntries["+ i +"].DestinationCidrBlock"));
cenRouteEntry.setRouteTableId(_ctx.stringValue("DescribeCenChildInstanceRouteEntriesResponse.CenRouteEntries["+ i +"].RouteTableId"));
List<String> communities = new ArrayList<String>();
for (int j = 0; j < _ctx.lengthValue("DescribeCenChildInstanceRouteEntriesResponse.CenRouteEntries["+ i +"].Communities.Length"); j++) {
communities.add(_ctx.stringValue("DescribeCenChildInstanceRouteEntriesResponse.CenRouteEntries["+ i +"].Communities["+ j +"]"));
}
cenRouteEntry.setCommunities(communities);
List<String> asPaths = new ArrayList<String>();
for (int j = 0; j < _ctx.lengthValue("DescribeCenChildInstanceRouteEntriesResponse.CenRouteEntries["+ i +"].AsPaths.Length"); j++) {
asPaths.add(_ctx.stringValue("DescribeCenChildInstanceRouteEntriesResponse.CenRouteEntries["+ i +"].AsPaths["+ j +"]"));
}
cenRouteEntry.setAsPaths(asPaths);
List<CenRouteMapRecord> cenRouteMapRecords = new ArrayList<CenRouteMapRecord>();
for (int j = 0; j < _ctx.lengthValue("DescribeCenChildInstanceRouteEntriesResponse.CenRouteEntries["+ i +"].CenRouteMapRecords.Length"); j++) {
CenRouteMapRecord cenRouteMapRecord = new CenRouteMapRecord();
cenRouteMapRecord.setRouteMapId(_ctx.stringValue("DescribeCenChildInstanceRouteEntriesResponse.CenRouteEntries["+ i +"].CenRouteMapRecords["+ j +"].RouteMapId"));
cenRouteMapRecord.setRegionId(_ctx.stringValue("DescribeCenChildInstanceRouteEntriesResponse.CenRouteEntries["+ i +"].CenRouteMapRecords["+ j +"].RegionId"));
cenRouteMapRecords.add(cenRouteMapRecord);
}
cenRouteEntry.setCenRouteMapRecords(cenRouteMapRecords);
List<Conflict> conflicts = new ArrayList<Conflict>();
for (int j = 0; j < _ctx.lengthValue("DescribeCenChildInstanceRouteEntriesResponse.CenRouteEntries["+ i +"].Conflicts.Length"); j++) {
Conflict conflict = new Conflict();
conflict.setStatus(_ctx.stringValue("DescribeCenChildInstanceRouteEntriesResponse.CenRouteEntries["+ i +"].Conflicts["+ j +"].Status"));
conflict.setDestinationCidrBlock(_ctx.stringValue("DescribeCenChildInstanceRouteEntriesResponse.CenRouteEntries["+ i +"].Conflicts["+ j +"].DestinationCidrBlock"));
conflict.setInstanceId(_ctx.stringValue("DescribeCenChildInstanceRouteEntriesResponse.CenRouteEntries["+ i +"].Conflicts["+ j +"].InstanceId"));
conflict.setInstanceType(_ctx.stringValue("DescribeCenChildInstanceRouteEntriesResponse.CenRouteEntries["+ i +"].Conflicts["+ j +"].InstanceType"));
conflict.setRegionId(_ctx.stringValue("DescribeCenChildInstanceRouteEntriesResponse.CenRouteEntries["+ i +"].Conflicts["+ j +"].RegionId"));
conflicts.add(conflict);
}
cenRouteEntry.setConflicts(conflicts);
cenRouteEntries.add(cenRouteEntry);
}
describeCenChildInstanceRouteEntriesResponse.setCenRouteEntries(cenRouteEntries);
return describeCenChildInstanceRouteEntriesResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cbn/1.0.40/com/aliyuncs/cbn/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cbn/1.0.40/com/aliyuncs/cbn/transform/v20170912/DescribeCenGeographicSpanRemainingBandwidthResponseUnmarshaller.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.cbn.transform.v20170912;
import com.aliyuncs.cbn.model.v20170912.DescribeCenGeographicSpanRemainingBandwidthResponse;
import com.aliyuncs.transform.UnmarshallerContext;
public class DescribeCenGeographicSpanRemainingBandwidthResponseUnmarshaller {
public static DescribeCenGeographicSpanRemainingBandwidthResponse unmarshall(DescribeCenGeographicSpanRemainingBandwidthResponse describeCenGeographicSpanRemainingBandwidthResponse, UnmarshallerContext _ctx) {
describeCenGeographicSpanRemainingBandwidthResponse.setRequestId(_ctx.stringValue("DescribeCenGeographicSpanRemainingBandwidthResponse.RequestId"));
describeCenGeographicSpanRemainingBandwidthResponse.setRemainingBandwidth(_ctx.longValue("DescribeCenGeographicSpanRemainingBandwidthResponse.RemainingBandwidth"));
return describeCenGeographicSpanRemainingBandwidthResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cbn/1.0.40/com/aliyuncs/cbn/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cbn/1.0.40/com/aliyuncs/cbn/transform/v20170912/DescribeCenGeographicSpansResponseUnmarshaller.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.cbn.transform.v20170912;
import java.util.ArrayList;
import java.util.List;
import com.aliyuncs.cbn.model.v20170912.DescribeCenGeographicSpansResponse;
import com.aliyuncs.cbn.model.v20170912.DescribeCenGeographicSpansResponse.GeographicSpanModel;
import com.aliyuncs.transform.UnmarshallerContext;
public class DescribeCenGeographicSpansResponseUnmarshaller {
public static DescribeCenGeographicSpansResponse unmarshall(DescribeCenGeographicSpansResponse describeCenGeographicSpansResponse, UnmarshallerContext _ctx) {
describeCenGeographicSpansResponse.setRequestId(_ctx.stringValue("DescribeCenGeographicSpansResponse.RequestId"));
describeCenGeographicSpansResponse.setPageSize(_ctx.integerValue("DescribeCenGeographicSpansResponse.PageSize"));
describeCenGeographicSpansResponse.setPageNumber(_ctx.integerValue("DescribeCenGeographicSpansResponse.PageNumber"));
describeCenGeographicSpansResponse.setTotalCount(_ctx.integerValue("DescribeCenGeographicSpansResponse.TotalCount"));
List<GeographicSpanModel> geographicSpanModels = new ArrayList<GeographicSpanModel>();
for (int i = 0; i < _ctx.lengthValue("DescribeCenGeographicSpansResponse.GeographicSpanModels.Length"); i++) {
GeographicSpanModel geographicSpanModel = new GeographicSpanModel();
geographicSpanModel.setLocalGeoRegionId(_ctx.stringValue("DescribeCenGeographicSpansResponse.GeographicSpanModels["+ i +"].LocalGeoRegionId"));
geographicSpanModel.setGeographicSpanId(_ctx.stringValue("DescribeCenGeographicSpansResponse.GeographicSpanModels["+ i +"].GeographicSpanId"));
geographicSpanModel.setOppositeGeoRegionId(_ctx.stringValue("DescribeCenGeographicSpansResponse.GeographicSpanModels["+ i +"].OppositeGeoRegionId"));
geographicSpanModels.add(geographicSpanModel);
}
describeCenGeographicSpansResponse.setGeographicSpanModels(geographicSpanModels);
return describeCenGeographicSpansResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cbn/1.0.40/com/aliyuncs/cbn/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cbn/1.0.40/com/aliyuncs/cbn/transform/v20170912/DescribeCenInterRegionBandwidthLimitsResponseUnmarshaller.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.cbn.transform.v20170912;
import java.util.ArrayList;
import java.util.List;
import com.aliyuncs.cbn.model.v20170912.DescribeCenInterRegionBandwidthLimitsResponse;
import com.aliyuncs.cbn.model.v20170912.DescribeCenInterRegionBandwidthLimitsResponse.CenInterRegionBandwidthLimit;
import com.aliyuncs.transform.UnmarshallerContext;
public class DescribeCenInterRegionBandwidthLimitsResponseUnmarshaller {
public static DescribeCenInterRegionBandwidthLimitsResponse unmarshall(DescribeCenInterRegionBandwidthLimitsResponse describeCenInterRegionBandwidthLimitsResponse, UnmarshallerContext _ctx) {
describeCenInterRegionBandwidthLimitsResponse.setRequestId(_ctx.stringValue("DescribeCenInterRegionBandwidthLimitsResponse.RequestId"));
describeCenInterRegionBandwidthLimitsResponse.setPageSize(_ctx.integerValue("DescribeCenInterRegionBandwidthLimitsResponse.PageSize"));
describeCenInterRegionBandwidthLimitsResponse.setPageNumber(_ctx.integerValue("DescribeCenInterRegionBandwidthLimitsResponse.PageNumber"));
describeCenInterRegionBandwidthLimitsResponse.setTotalCount(_ctx.integerValue("DescribeCenInterRegionBandwidthLimitsResponse.TotalCount"));
List<CenInterRegionBandwidthLimit> cenInterRegionBandwidthLimits = new ArrayList<CenInterRegionBandwidthLimit>();
for (int i = 0; i < _ctx.lengthValue("DescribeCenInterRegionBandwidthLimitsResponse.CenInterRegionBandwidthLimits.Length"); i++) {
CenInterRegionBandwidthLimit cenInterRegionBandwidthLimit = new CenInterRegionBandwidthLimit();
cenInterRegionBandwidthLimit.setTransitRouterAttachmentId(_ctx.stringValue("DescribeCenInterRegionBandwidthLimitsResponse.CenInterRegionBandwidthLimits["+ i +"].TransitRouterAttachmentId"));
cenInterRegionBandwidthLimit.setStatus(_ctx.stringValue("DescribeCenInterRegionBandwidthLimitsResponse.CenInterRegionBandwidthLimits["+ i +"].Status"));
cenInterRegionBandwidthLimit.setBandwidthPackageId(_ctx.stringValue("DescribeCenInterRegionBandwidthLimitsResponse.CenInterRegionBandwidthLimits["+ i +"].BandwidthPackageId"));
cenInterRegionBandwidthLimit.setOppositeRegionId(_ctx.stringValue("DescribeCenInterRegionBandwidthLimitsResponse.CenInterRegionBandwidthLimits["+ i +"].OppositeRegionId"));
cenInterRegionBandwidthLimit.setGeographicSpanId(_ctx.stringValue("DescribeCenInterRegionBandwidthLimitsResponse.CenInterRegionBandwidthLimits["+ i +"].GeographicSpanId"));
cenInterRegionBandwidthLimit.setCenId(_ctx.stringValue("DescribeCenInterRegionBandwidthLimitsResponse.CenInterRegionBandwidthLimits["+ i +"].CenId"));
cenInterRegionBandwidthLimit.setLocalRegionId(_ctx.stringValue("DescribeCenInterRegionBandwidthLimitsResponse.CenInterRegionBandwidthLimits["+ i +"].LocalRegionId"));
cenInterRegionBandwidthLimit.setBandwidthLimit(_ctx.longValue("DescribeCenInterRegionBandwidthLimitsResponse.CenInterRegionBandwidthLimits["+ i +"].BandwidthLimit"));
cenInterRegionBandwidthLimits.add(cenInterRegionBandwidthLimit);
}
describeCenInterRegionBandwidthLimitsResponse.setCenInterRegionBandwidthLimits(cenInterRegionBandwidthLimits);
return describeCenInterRegionBandwidthLimitsResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cbn/1.0.40/com/aliyuncs/cbn/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cbn/1.0.40/com/aliyuncs/cbn/transform/v20170912/DescribeCenPrivateZoneRoutesResponseUnmarshaller.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.cbn.transform.v20170912;
import java.util.ArrayList;
import java.util.List;
import com.aliyuncs.cbn.model.v20170912.DescribeCenPrivateZoneRoutesResponse;
import com.aliyuncs.cbn.model.v20170912.DescribeCenPrivateZoneRoutesResponse.PrivateZoneInfo;
import com.aliyuncs.transform.UnmarshallerContext;
public class DescribeCenPrivateZoneRoutesResponseUnmarshaller {
public static DescribeCenPrivateZoneRoutesResponse unmarshall(DescribeCenPrivateZoneRoutesResponse describeCenPrivateZoneRoutesResponse, UnmarshallerContext _ctx) {
describeCenPrivateZoneRoutesResponse.setRequestId(_ctx.stringValue("DescribeCenPrivateZoneRoutesResponse.RequestId"));
describeCenPrivateZoneRoutesResponse.setPrivateZoneDnsServers(_ctx.stringValue("DescribeCenPrivateZoneRoutesResponse.PrivateZoneDnsServers"));
describeCenPrivateZoneRoutesResponse.setCenId(_ctx.stringValue("DescribeCenPrivateZoneRoutesResponse.CenId"));
describeCenPrivateZoneRoutesResponse.setPageNumber(_ctx.integerValue("DescribeCenPrivateZoneRoutesResponse.PageNumber"));
describeCenPrivateZoneRoutesResponse.setPageSize(_ctx.integerValue("DescribeCenPrivateZoneRoutesResponse.PageSize"));
describeCenPrivateZoneRoutesResponse.setTotalCount(_ctx.integerValue("DescribeCenPrivateZoneRoutesResponse.TotalCount"));
List<PrivateZoneInfo> privateZoneInfos = new ArrayList<PrivateZoneInfo>();
for (int i = 0; i < _ctx.lengthValue("DescribeCenPrivateZoneRoutesResponse.PrivateZoneInfos.Length"); i++) {
PrivateZoneInfo privateZoneInfo = new PrivateZoneInfo();
privateZoneInfo.setStatus(_ctx.stringValue("DescribeCenPrivateZoneRoutesResponse.PrivateZoneInfos["+ i +"].Status"));
privateZoneInfo.setAccessRegionId(_ctx.stringValue("DescribeCenPrivateZoneRoutesResponse.PrivateZoneInfos["+ i +"].AccessRegionId"));
privateZoneInfo.setHostRegionId(_ctx.stringValue("DescribeCenPrivateZoneRoutesResponse.PrivateZoneInfos["+ i +"].HostRegionId"));
privateZoneInfo.setHostVpcId(_ctx.stringValue("DescribeCenPrivateZoneRoutesResponse.PrivateZoneInfos["+ i +"].HostVpcId"));
privateZoneInfos.add(privateZoneInfo);
}
describeCenPrivateZoneRoutesResponse.setPrivateZoneInfos(privateZoneInfos);
return describeCenPrivateZoneRoutesResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cbn/1.0.40/com/aliyuncs/cbn/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cbn/1.0.40/com/aliyuncs/cbn/transform/v20170912/DescribeCenRegionDomainRouteEntriesResponseUnmarshaller.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.cbn.transform.v20170912;
import java.util.ArrayList;
import java.util.List;
import com.aliyuncs.cbn.model.v20170912.DescribeCenRegionDomainRouteEntriesResponse;
import com.aliyuncs.cbn.model.v20170912.DescribeCenRegionDomainRouteEntriesResponse.CenRouteEntry;
import com.aliyuncs.cbn.model.v20170912.DescribeCenRegionDomainRouteEntriesResponse.CenRouteEntry.CenOutRouteMapRecord;
import com.aliyuncs.cbn.model.v20170912.DescribeCenRegionDomainRouteEntriesResponse.CenRouteEntry.CenRouteMapRecord;
import com.aliyuncs.transform.UnmarshallerContext;
public class DescribeCenRegionDomainRouteEntriesResponseUnmarshaller {
public static DescribeCenRegionDomainRouteEntriesResponse unmarshall(DescribeCenRegionDomainRouteEntriesResponse describeCenRegionDomainRouteEntriesResponse, UnmarshallerContext _ctx) {
describeCenRegionDomainRouteEntriesResponse.setRequestId(_ctx.stringValue("DescribeCenRegionDomainRouteEntriesResponse.RequestId"));
describeCenRegionDomainRouteEntriesResponse.setPageSize(_ctx.integerValue("DescribeCenRegionDomainRouteEntriesResponse.PageSize"));
describeCenRegionDomainRouteEntriesResponse.setPageNumber(_ctx.integerValue("DescribeCenRegionDomainRouteEntriesResponse.PageNumber"));
describeCenRegionDomainRouteEntriesResponse.setTotalCount(_ctx.integerValue("DescribeCenRegionDomainRouteEntriesResponse.TotalCount"));
List<CenRouteEntry> cenRouteEntries = new ArrayList<CenRouteEntry>();
for (int i = 0; i < _ctx.lengthValue("DescribeCenRegionDomainRouteEntriesResponse.CenRouteEntries.Length"); i++) {
CenRouteEntry cenRouteEntry = new CenRouteEntry();
cenRouteEntry.setToOtherRegionStatus(_ctx.stringValue("DescribeCenRegionDomainRouteEntriesResponse.CenRouteEntries["+ i +"].ToOtherRegionStatus"));
cenRouteEntry.setType(_ctx.stringValue("DescribeCenRegionDomainRouteEntriesResponse.CenRouteEntries["+ i +"].Type"));
cenRouteEntry.setStatus(_ctx.stringValue("DescribeCenRegionDomainRouteEntriesResponse.CenRouteEntries["+ i +"].Status"));
cenRouteEntry.setNextHopType(_ctx.stringValue("DescribeCenRegionDomainRouteEntriesResponse.CenRouteEntries["+ i +"].NextHopType"));
cenRouteEntry.setNextHopInstanceId(_ctx.stringValue("DescribeCenRegionDomainRouteEntriesResponse.CenRouteEntries["+ i +"].NextHopInstanceId"));
cenRouteEntry.setNextHopRegionId(_ctx.stringValue("DescribeCenRegionDomainRouteEntriesResponse.CenRouteEntries["+ i +"].NextHopRegionId"));
cenRouteEntry.setDestinationCidrBlock(_ctx.stringValue("DescribeCenRegionDomainRouteEntriesResponse.CenRouteEntries["+ i +"].DestinationCidrBlock"));
cenRouteEntry.setPreference(_ctx.integerValue("DescribeCenRegionDomainRouteEntriesResponse.CenRouteEntries["+ i +"].Preference"));
List<String> communities = new ArrayList<String>();
for (int j = 0; j < _ctx.lengthValue("DescribeCenRegionDomainRouteEntriesResponse.CenRouteEntries["+ i +"].Communities.Length"); j++) {
communities.add(_ctx.stringValue("DescribeCenRegionDomainRouteEntriesResponse.CenRouteEntries["+ i +"].Communities["+ j +"]"));
}
cenRouteEntry.setCommunities(communities);
List<String> asPaths = new ArrayList<String>();
for (int j = 0; j < _ctx.lengthValue("DescribeCenRegionDomainRouteEntriesResponse.CenRouteEntries["+ i +"].AsPaths.Length"); j++) {
asPaths.add(_ctx.stringValue("DescribeCenRegionDomainRouteEntriesResponse.CenRouteEntries["+ i +"].AsPaths["+ j +"]"));
}
cenRouteEntry.setAsPaths(asPaths);
List<CenRouteMapRecord> cenRouteMapRecords = new ArrayList<CenRouteMapRecord>();
for (int j = 0; j < _ctx.lengthValue("DescribeCenRegionDomainRouteEntriesResponse.CenRouteEntries["+ i +"].CenRouteMapRecords.Length"); j++) {
CenRouteMapRecord cenRouteMapRecord = new CenRouteMapRecord();
cenRouteMapRecord.setRouteMapId(_ctx.stringValue("DescribeCenRegionDomainRouteEntriesResponse.CenRouteEntries["+ i +"].CenRouteMapRecords["+ j +"].RouteMapId"));
cenRouteMapRecord.setRegionId(_ctx.stringValue("DescribeCenRegionDomainRouteEntriesResponse.CenRouteEntries["+ i +"].CenRouteMapRecords["+ j +"].RegionId"));
cenRouteMapRecords.add(cenRouteMapRecord);
}
cenRouteEntry.setCenRouteMapRecords(cenRouteMapRecords);
List<CenOutRouteMapRecord> cenOutRouteMapRecords = new ArrayList<CenOutRouteMapRecord>();
for (int j = 0; j < _ctx.lengthValue("DescribeCenRegionDomainRouteEntriesResponse.CenRouteEntries["+ i +"].CenOutRouteMapRecords.Length"); j++) {
CenOutRouteMapRecord cenOutRouteMapRecord = new CenOutRouteMapRecord();
cenOutRouteMapRecord.setRouteMapId(_ctx.stringValue("DescribeCenRegionDomainRouteEntriesResponse.CenRouteEntries["+ i +"].CenOutRouteMapRecords["+ j +"].RouteMapId"));
cenOutRouteMapRecord.setRegionId(_ctx.stringValue("DescribeCenRegionDomainRouteEntriesResponse.CenRouteEntries["+ i +"].CenOutRouteMapRecords["+ j +"].RegionId"));
cenOutRouteMapRecords.add(cenOutRouteMapRecord);
}
cenRouteEntry.setCenOutRouteMapRecords(cenOutRouteMapRecords);
cenRouteEntries.add(cenRouteEntry);
}
describeCenRegionDomainRouteEntriesResponse.setCenRouteEntries(cenRouteEntries);
return describeCenRegionDomainRouteEntriesResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cbn/1.0.40/com/aliyuncs/cbn/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cbn/1.0.40/com/aliyuncs/cbn/transform/v20170912/DescribeCenRouteMapsResponseUnmarshaller.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.cbn.transform.v20170912;
import java.util.ArrayList;
import java.util.List;
import com.aliyuncs.cbn.model.v20170912.DescribeCenRouteMapsResponse;
import com.aliyuncs.cbn.model.v20170912.DescribeCenRouteMapsResponse.RouteMap;
import com.aliyuncs.transform.UnmarshallerContext;
public class DescribeCenRouteMapsResponseUnmarshaller {
public static DescribeCenRouteMapsResponse unmarshall(DescribeCenRouteMapsResponse describeCenRouteMapsResponse, UnmarshallerContext _ctx) {
describeCenRouteMapsResponse.setRequestId(_ctx.stringValue("DescribeCenRouteMapsResponse.RequestId"));
describeCenRouteMapsResponse.setPageSize(_ctx.integerValue("DescribeCenRouteMapsResponse.PageSize"));
describeCenRouteMapsResponse.setPageNumber(_ctx.integerValue("DescribeCenRouteMapsResponse.PageNumber"));
describeCenRouteMapsResponse.setTotalCount(_ctx.integerValue("DescribeCenRouteMapsResponse.TotalCount"));
List<RouteMap> routeMaps = new ArrayList<RouteMap>();
for (int i = 0; i < _ctx.lengthValue("DescribeCenRouteMapsResponse.RouteMaps.Length"); i++) {
RouteMap routeMap = new RouteMap();
routeMap.setRouteMapId(_ctx.stringValue("DescribeCenRouteMapsResponse.RouteMaps["+ i +"].RouteMapId"));
routeMap.setStatus(_ctx.stringValue("DescribeCenRouteMapsResponse.RouteMaps["+ i +"].Status"));
routeMap.setTransmitDirection(_ctx.stringValue("DescribeCenRouteMapsResponse.RouteMaps["+ i +"].TransmitDirection"));
routeMap.setSourceInstanceIdsReverseMatch(_ctx.booleanValue("DescribeCenRouteMapsResponse.RouteMaps["+ i +"].SourceInstanceIdsReverseMatch"));
routeMap.setCenRegionId(_ctx.stringValue("DescribeCenRouteMapsResponse.RouteMaps["+ i +"].CenRegionId"));
routeMap.setCenId(_ctx.stringValue("DescribeCenRouteMapsResponse.RouteMaps["+ i +"].CenId"));
routeMap.setPriority(_ctx.integerValue("DescribeCenRouteMapsResponse.RouteMaps["+ i +"].Priority"));
routeMap.setTransitRouterRouteTableId(_ctx.stringValue("DescribeCenRouteMapsResponse.RouteMaps["+ i +"].TransitRouterRouteTableId"));
routeMap.setCommunityOperateMode(_ctx.stringValue("DescribeCenRouteMapsResponse.RouteMaps["+ i +"].CommunityOperateMode"));
routeMap.setMapResult(_ctx.stringValue("DescribeCenRouteMapsResponse.RouteMaps["+ i +"].MapResult"));
routeMap.setCommunityMatchMode(_ctx.stringValue("DescribeCenRouteMapsResponse.RouteMaps["+ i +"].CommunityMatchMode"));
routeMap.setDescription(_ctx.stringValue("DescribeCenRouteMapsResponse.RouteMaps["+ i +"].Description"));
routeMap.setAsPathMatchMode(_ctx.stringValue("DescribeCenRouteMapsResponse.RouteMaps["+ i +"].AsPathMatchMode"));
routeMap.setPreference(_ctx.integerValue("DescribeCenRouteMapsResponse.RouteMaps["+ i +"].Preference"));
routeMap.setDestinationInstanceIdsReverseMatch(_ctx.booleanValue("DescribeCenRouteMapsResponse.RouteMaps["+ i +"].DestinationInstanceIdsReverseMatch"));
routeMap.setCidrMatchMode(_ctx.stringValue("DescribeCenRouteMapsResponse.RouteMaps["+ i +"].CidrMatchMode"));
routeMap.setNextPriority(_ctx.integerValue("DescribeCenRouteMapsResponse.RouteMaps["+ i +"].NextPriority"));
routeMap.setMatchAddressType(_ctx.stringValue("DescribeCenRouteMapsResponse.RouteMaps["+ i +"].MatchAddressType"));
routeMap.setGatewayZoneId(_ctx.stringValue("DescribeCenRouteMapsResponse.RouteMaps["+ i +"].GatewayZoneId"));
routeMap.setGatewayRegionId(_ctx.stringValue("DescribeCenRouteMapsResponse.RouteMaps["+ i +"].GatewayRegionId"));
List<String> sourceRegionIds = new ArrayList<String>();
for (int j = 0; j < _ctx.lengthValue("DescribeCenRouteMapsResponse.RouteMaps["+ i +"].SourceRegionIds.Length"); j++) {
sourceRegionIds.add(_ctx.stringValue("DescribeCenRouteMapsResponse.RouteMaps["+ i +"].SourceRegionIds["+ j +"]"));
}
routeMap.setSourceRegionIds(sourceRegionIds);
List<String> sourceChildInstanceTypes = new ArrayList<String>();
for (int j = 0; j < _ctx.lengthValue("DescribeCenRouteMapsResponse.RouteMaps["+ i +"].SourceChildInstanceTypes.Length"); j++) {
sourceChildInstanceTypes.add(_ctx.stringValue("DescribeCenRouteMapsResponse.RouteMaps["+ i +"].SourceChildInstanceTypes["+ j +"]"));
}
routeMap.setSourceChildInstanceTypes(sourceChildInstanceTypes);
List<String> destinationRouteTableIds = new ArrayList<String>();
for (int j = 0; j < _ctx.lengthValue("DescribeCenRouteMapsResponse.RouteMaps["+ i +"].DestinationRouteTableIds.Length"); j++) {
destinationRouteTableIds.add(_ctx.stringValue("DescribeCenRouteMapsResponse.RouteMaps["+ i +"].DestinationRouteTableIds["+ j +"]"));
}
routeMap.setDestinationRouteTableIds(destinationRouteTableIds);
List<String> sourceInstanceIds = new ArrayList<String>();
for (int j = 0; j < _ctx.lengthValue("DescribeCenRouteMapsResponse.RouteMaps["+ i +"].SourceInstanceIds.Length"); j++) {
sourceInstanceIds.add(_ctx.stringValue("DescribeCenRouteMapsResponse.RouteMaps["+ i +"].SourceInstanceIds["+ j +"]"));
}
routeMap.setSourceInstanceIds(sourceInstanceIds);
List<String> destinationCidrBlocks = new ArrayList<String>();
for (int j = 0; j < _ctx.lengthValue("DescribeCenRouteMapsResponse.RouteMaps["+ i +"].DestinationCidrBlocks.Length"); j++) {
destinationCidrBlocks.add(_ctx.stringValue("DescribeCenRouteMapsResponse.RouteMaps["+ i +"].DestinationCidrBlocks["+ j +"]"));
}
routeMap.setDestinationCidrBlocks(destinationCidrBlocks);
List<String> destinationRegionIds = new ArrayList<String>();
for (int j = 0; j < _ctx.lengthValue("DescribeCenRouteMapsResponse.RouteMaps["+ i +"].DestinationRegionIds.Length"); j++) {
destinationRegionIds.add(_ctx.stringValue("DescribeCenRouteMapsResponse.RouteMaps["+ i +"].DestinationRegionIds["+ j +"]"));
}
routeMap.setDestinationRegionIds(destinationRegionIds);
List<String> sourceRouteTableIds = new ArrayList<String>();
for (int j = 0; j < _ctx.lengthValue("DescribeCenRouteMapsResponse.RouteMaps["+ i +"].SourceRouteTableIds.Length"); j++) {
sourceRouteTableIds.add(_ctx.stringValue("DescribeCenRouteMapsResponse.RouteMaps["+ i +"].SourceRouteTableIds["+ j +"]"));
}
routeMap.setSourceRouteTableIds(sourceRouteTableIds);
List<String> matchCommunitySet = new ArrayList<String>();
for (int j = 0; j < _ctx.lengthValue("DescribeCenRouteMapsResponse.RouteMaps["+ i +"].MatchCommunitySet.Length"); j++) {
matchCommunitySet.add(_ctx.stringValue("DescribeCenRouteMapsResponse.RouteMaps["+ i +"].MatchCommunitySet["+ j +"]"));
}
routeMap.setMatchCommunitySet(matchCommunitySet);
List<String> prependAsPath = new ArrayList<String>();
for (int j = 0; j < _ctx.lengthValue("DescribeCenRouteMapsResponse.RouteMaps["+ i +"].PrependAsPath.Length"); j++) {
prependAsPath.add(_ctx.stringValue("DescribeCenRouteMapsResponse.RouteMaps["+ i +"].PrependAsPath["+ j +"]"));
}
routeMap.setPrependAsPath(prependAsPath);
List<String> routeTypes = new ArrayList<String>();
for (int j = 0; j < _ctx.lengthValue("DescribeCenRouteMapsResponse.RouteMaps["+ i +"].RouteTypes.Length"); j++) {
routeTypes.add(_ctx.stringValue("DescribeCenRouteMapsResponse.RouteMaps["+ i +"].RouteTypes["+ j +"]"));
}
routeMap.setRouteTypes(routeTypes);
List<String> originalRouteTableIds = new ArrayList<String>();
for (int j = 0; j < _ctx.lengthValue("DescribeCenRouteMapsResponse.RouteMaps["+ i +"].OriginalRouteTableIds.Length"); j++) {
originalRouteTableIds.add(_ctx.stringValue("DescribeCenRouteMapsResponse.RouteMaps["+ i +"].OriginalRouteTableIds["+ j +"]"));
}
routeMap.setOriginalRouteTableIds(originalRouteTableIds);
List<String> destinationChildInstanceTypes = new ArrayList<String>();
for (int j = 0; j < _ctx.lengthValue("DescribeCenRouteMapsResponse.RouteMaps["+ i +"].DestinationChildInstanceTypes.Length"); j++) {
destinationChildInstanceTypes.add(_ctx.stringValue("DescribeCenRouteMapsResponse.RouteMaps["+ i +"].DestinationChildInstanceTypes["+ j +"]"));
}
routeMap.setDestinationChildInstanceTypes(destinationChildInstanceTypes);
List<String> destinationInstanceIds = new ArrayList<String>();
for (int j = 0; j < _ctx.lengthValue("DescribeCenRouteMapsResponse.RouteMaps["+ i +"].DestinationInstanceIds.Length"); j++) {
destinationInstanceIds.add(_ctx.stringValue("DescribeCenRouteMapsResponse.RouteMaps["+ i +"].DestinationInstanceIds["+ j +"]"));
}
routeMap.setDestinationInstanceIds(destinationInstanceIds);
List<String> matchAsns = new ArrayList<String>();
for (int j = 0; j < _ctx.lengthValue("DescribeCenRouteMapsResponse.RouteMaps["+ i +"].MatchAsns.Length"); j++) {
matchAsns.add(_ctx.stringValue("DescribeCenRouteMapsResponse.RouteMaps["+ i +"].MatchAsns["+ j +"]"));
}
routeMap.setMatchAsns(matchAsns);
List<String> operateCommunitySet = new ArrayList<String>();
for (int j = 0; j < _ctx.lengthValue("DescribeCenRouteMapsResponse.RouteMaps["+ i +"].OperateCommunitySet.Length"); j++) {
operateCommunitySet.add(_ctx.stringValue("DescribeCenRouteMapsResponse.RouteMaps["+ i +"].OperateCommunitySet["+ j +"]"));
}
routeMap.setOperateCommunitySet(operateCommunitySet);
List<String> srcZoneIds = new ArrayList<String>();
for (int j = 0; j < _ctx.lengthValue("DescribeCenRouteMapsResponse.RouteMaps["+ i +"].SrcZoneIds.Length"); j++) {
srcZoneIds.add(_ctx.stringValue("DescribeCenRouteMapsResponse.RouteMaps["+ i +"].SrcZoneIds["+ j +"]"));
}
routeMap.setSrcZoneIds(srcZoneIds);
routeMaps.add(routeMap);
}
describeCenRouteMapsResponse.setRouteMaps(routeMaps);
return describeCenRouteMapsResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cbn/1.0.40/com/aliyuncs/cbn/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cbn/1.0.40/com/aliyuncs/cbn/transform/v20170912/DescribeCenVbrHealthCheckResponseUnmarshaller.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.cbn.transform.v20170912;
import java.util.ArrayList;
import java.util.List;
import com.aliyuncs.cbn.model.v20170912.DescribeCenVbrHealthCheckResponse;
import com.aliyuncs.cbn.model.v20170912.DescribeCenVbrHealthCheckResponse.VbrHealthCheck;
import com.aliyuncs.transform.UnmarshallerContext;
public class DescribeCenVbrHealthCheckResponseUnmarshaller {
public static DescribeCenVbrHealthCheckResponse unmarshall(DescribeCenVbrHealthCheckResponse describeCenVbrHealthCheckResponse, UnmarshallerContext _ctx) {
describeCenVbrHealthCheckResponse.setRequestId(_ctx.stringValue("DescribeCenVbrHealthCheckResponse.RequestId"));
describeCenVbrHealthCheckResponse.setPageSize(_ctx.integerValue("DescribeCenVbrHealthCheckResponse.PageSize"));
describeCenVbrHealthCheckResponse.setPageNumber(_ctx.integerValue("DescribeCenVbrHealthCheckResponse.PageNumber"));
describeCenVbrHealthCheckResponse.setTotalCount(_ctx.integerValue("DescribeCenVbrHealthCheckResponse.TotalCount"));
List<VbrHealthCheck> vbrHealthChecks = new ArrayList<VbrHealthCheck>();
for (int i = 0; i < _ctx.lengthValue("DescribeCenVbrHealthCheckResponse.VbrHealthChecks.Length"); i++) {
VbrHealthCheck vbrHealthCheck = new VbrHealthCheck();
vbrHealthCheck.setHealthCheckTargetIp(_ctx.stringValue("DescribeCenVbrHealthCheckResponse.VbrHealthChecks["+ i +"].HealthCheckTargetIp"));
vbrHealthCheck.setVbrInstanceId(_ctx.stringValue("DescribeCenVbrHealthCheckResponse.VbrHealthChecks["+ i +"].VbrInstanceId"));
vbrHealthCheck.setVbrInstanceRegionId(_ctx.stringValue("DescribeCenVbrHealthCheckResponse.VbrHealthChecks["+ i +"].VbrInstanceRegionId"));
vbrHealthCheck.setDelay(_ctx.longValue("DescribeCenVbrHealthCheckResponse.VbrHealthChecks["+ i +"].Delay"));
vbrHealthCheck.setLinkStatus(_ctx.stringValue("DescribeCenVbrHealthCheckResponse.VbrHealthChecks["+ i +"].LinkStatus"));
vbrHealthCheck.setCenId(_ctx.stringValue("DescribeCenVbrHealthCheckResponse.VbrHealthChecks["+ i +"].CenId"));
vbrHealthCheck.setHealthyThreshold(_ctx.integerValue("DescribeCenVbrHealthCheckResponse.VbrHealthChecks["+ i +"].HealthyThreshold"));
vbrHealthCheck.setHealthCheckInterval(_ctx.integerValue("DescribeCenVbrHealthCheckResponse.VbrHealthChecks["+ i +"].HealthCheckInterval"));
vbrHealthCheck.setHealthCheckSourceIp(_ctx.stringValue("DescribeCenVbrHealthCheckResponse.VbrHealthChecks["+ i +"].HealthCheckSourceIp"));
vbrHealthCheck.setPacketLoss(_ctx.longValue("DescribeCenVbrHealthCheckResponse.VbrHealthChecks["+ i +"].PacketLoss"));
vbrHealthCheck.setHealthCheckOnly(_ctx.booleanValue("DescribeCenVbrHealthCheckResponse.VbrHealthChecks["+ i +"].HealthCheckOnly"));
vbrHealthCheck.setDescription(_ctx.stringValue("DescribeCenVbrHealthCheckResponse.VbrHealthChecks["+ i +"].Description"));
vbrHealthChecks.add(vbrHealthCheck);
}
describeCenVbrHealthCheckResponse.setVbrHealthChecks(vbrHealthChecks);
return describeCenVbrHealthCheckResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cbn/1.0.40/com/aliyuncs/cbn/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cbn/1.0.40/com/aliyuncs/cbn/transform/v20170912/DescribeCensResponseUnmarshaller.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.cbn.transform.v20170912;
import java.util.ArrayList;
import java.util.List;
import com.aliyuncs.cbn.model.v20170912.DescribeCensResponse;
import com.aliyuncs.cbn.model.v20170912.DescribeCensResponse.Cen;
import com.aliyuncs.cbn.model.v20170912.DescribeCensResponse.Cen.Tag;
import com.aliyuncs.transform.UnmarshallerContext;
public class DescribeCensResponseUnmarshaller {
public static DescribeCensResponse unmarshall(DescribeCensResponse describeCensResponse, UnmarshallerContext _ctx) {
describeCensResponse.setRequestId(_ctx.stringValue("DescribeCensResponse.RequestId"));
describeCensResponse.setPageSize(_ctx.integerValue("DescribeCensResponse.PageSize"));
describeCensResponse.setPageNumber(_ctx.integerValue("DescribeCensResponse.PageNumber"));
describeCensResponse.setTotalCount(_ctx.integerValue("DescribeCensResponse.TotalCount"));
List<Cen> cens = new ArrayList<Cen>();
for (int i = 0; i < _ctx.lengthValue("DescribeCensResponse.Cens.Length"); i++) {
Cen cen = new Cen();
cen.setStatus(_ctx.stringValue("DescribeCensResponse.Cens["+ i +"].Status"));
cen.setCreationTime(_ctx.stringValue("DescribeCensResponse.Cens["+ i +"].CreationTime"));
cen.setIpv6Level(_ctx.stringValue("DescribeCensResponse.Cens["+ i +"].Ipv6Level"));
cen.setDescription(_ctx.stringValue("DescribeCensResponse.Cens["+ i +"].Description"));
cen.setResourceGroupId(_ctx.stringValue("DescribeCensResponse.Cens["+ i +"].ResourceGroupId"));
cen.setCenId(_ctx.stringValue("DescribeCensResponse.Cens["+ i +"].CenId"));
cen.setProtectionLevel(_ctx.stringValue("DescribeCensResponse.Cens["+ i +"].ProtectionLevel"));
cen.setName(_ctx.stringValue("DescribeCensResponse.Cens["+ i +"].Name"));
List<String> cenBandwidthPackageIds = new ArrayList<String>();
for (int j = 0; j < _ctx.lengthValue("DescribeCensResponse.Cens["+ i +"].CenBandwidthPackageIds.Length"); j++) {
cenBandwidthPackageIds.add(_ctx.stringValue("DescribeCensResponse.Cens["+ i +"].CenBandwidthPackageIds["+ j +"]"));
}
cen.setCenBandwidthPackageIds(cenBandwidthPackageIds);
List<Tag> tags = new ArrayList<Tag>();
for (int j = 0; j < _ctx.lengthValue("DescribeCensResponse.Cens["+ i +"].Tags.Length"); j++) {
Tag tag = new Tag();
tag.setKey(_ctx.stringValue("DescribeCensResponse.Cens["+ i +"].Tags["+ j +"].Key"));
tag.setValue(_ctx.stringValue("DescribeCensResponse.Cens["+ i +"].Tags["+ j +"].Value"));
tags.add(tag);
}
cen.setTags(tags);
cens.add(cen);
}
describeCensResponse.setCens(cens);
return describeCensResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cbn/1.0.40/com/aliyuncs/cbn/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cbn/1.0.40/com/aliyuncs/cbn/transform/v20170912/DescribeChildInstanceRegionsResponseUnmarshaller.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.cbn.transform.v20170912;
import java.util.ArrayList;
import java.util.List;
import com.aliyuncs.cbn.model.v20170912.DescribeChildInstanceRegionsResponse;
import com.aliyuncs.cbn.model.v20170912.DescribeChildInstanceRegionsResponse.Region;
import com.aliyuncs.transform.UnmarshallerContext;
public class DescribeChildInstanceRegionsResponseUnmarshaller {
public static DescribeChildInstanceRegionsResponse unmarshall(DescribeChildInstanceRegionsResponse describeChildInstanceRegionsResponse, UnmarshallerContext _ctx) {
describeChildInstanceRegionsResponse.setRequestId(_ctx.stringValue("DescribeChildInstanceRegionsResponse.RequestId"));
List<Region> regions = new ArrayList<Region>();
for (int i = 0; i < _ctx.lengthValue("DescribeChildInstanceRegionsResponse.Regions.Length"); i++) {
Region region = new Region();
region.setLocalName(_ctx.stringValue("DescribeChildInstanceRegionsResponse.Regions["+ i +"].LocalName"));
region.setRegionId(_ctx.stringValue("DescribeChildInstanceRegionsResponse.Regions["+ i +"].RegionId"));
regions.add(region);
}
describeChildInstanceRegionsResponse.setRegions(regions);
return describeChildInstanceRegionsResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cbn/1.0.40/com/aliyuncs/cbn/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cbn/1.0.40/com/aliyuncs/cbn/transform/v20170912/DescribeFlowlogsResponseUnmarshaller.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.cbn.transform.v20170912;
import java.util.ArrayList;
import java.util.List;
import com.aliyuncs.cbn.model.v20170912.DescribeFlowlogsResponse;
import com.aliyuncs.cbn.model.v20170912.DescribeFlowlogsResponse.FlowLog;
import com.aliyuncs.cbn.model.v20170912.DescribeFlowlogsResponse.FlowLog.Tag;
import com.aliyuncs.transform.UnmarshallerContext;
public class DescribeFlowlogsResponseUnmarshaller {
public static DescribeFlowlogsResponse unmarshall(DescribeFlowlogsResponse describeFlowlogsResponse, UnmarshallerContext _ctx) {
describeFlowlogsResponse.setRequestId(_ctx.stringValue("DescribeFlowlogsResponse.RequestId"));
describeFlowlogsResponse.setPageSize(_ctx.stringValue("DescribeFlowlogsResponse.PageSize"));
describeFlowlogsResponse.setPageNumber(_ctx.stringValue("DescribeFlowlogsResponse.PageNumber"));
describeFlowlogsResponse.setTotalCount(_ctx.stringValue("DescribeFlowlogsResponse.TotalCount"));
describeFlowlogsResponse.setSuccess(_ctx.stringValue("DescribeFlowlogsResponse.Success"));
List<FlowLog> flowLogs = new ArrayList<FlowLog>();
for (int i = 0; i < _ctx.lengthValue("DescribeFlowlogsResponse.FlowLogs.Length"); i++) {
FlowLog flowLog = new FlowLog();
flowLog.setStatus(_ctx.stringValue("DescribeFlowlogsResponse.FlowLogs["+ i +"].Status"));
flowLog.setCreationTime(_ctx.stringValue("DescribeFlowlogsResponse.FlowLogs["+ i +"].CreationTime"));
flowLog.setFlowLogName(_ctx.stringValue("DescribeFlowlogsResponse.FlowLogs["+ i +"].FlowLogName"));
flowLog.setDescription(_ctx.stringValue("DescribeFlowlogsResponse.FlowLogs["+ i +"].Description"));
flowLog.setProjectName(_ctx.stringValue("DescribeFlowlogsResponse.FlowLogs["+ i +"].ProjectName"));
flowLog.setCenId(_ctx.stringValue("DescribeFlowlogsResponse.FlowLogs["+ i +"].CenId"));
flowLog.setLogStoreName(_ctx.stringValue("DescribeFlowlogsResponse.FlowLogs["+ i +"].LogStoreName"));
flowLog.setRegionId(_ctx.stringValue("DescribeFlowlogsResponse.FlowLogs["+ i +"].RegionId"));
flowLog.setFlowLogId(_ctx.stringValue("DescribeFlowlogsResponse.FlowLogs["+ i +"].FlowLogId"));
flowLog.setPeerRegionId(_ctx.stringValue("DescribeFlowlogsResponse.FlowLogs["+ i +"].PeerRegionId"));
flowLog.setTransitRouterAttachmentId(_ctx.stringValue("DescribeFlowlogsResponse.FlowLogs["+ i +"].TransitRouterAttachmentId"));
flowLog.setInterval(_ctx.longValue("DescribeFlowlogsResponse.FlowLogs["+ i +"].Interval"));
List<Tag> tags = new ArrayList<Tag>();
for (int j = 0; j < _ctx.lengthValue("DescribeFlowlogsResponse.FlowLogs["+ i +"].Tags.Length"); j++) {
Tag tag = new Tag();
tag.setKey(_ctx.stringValue("DescribeFlowlogsResponse.FlowLogs["+ i +"].Tags["+ j +"].Key"));
tag.setValue(_ctx.stringValue("DescribeFlowlogsResponse.FlowLogs["+ i +"].Tags["+ j +"].Value"));
tags.add(tag);
}
flowLog.setTags(tags);
flowLogs.add(flowLog);
}
describeFlowlogsResponse.setFlowLogs(flowLogs);
return describeFlowlogsResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cbn/1.0.40/com/aliyuncs/cbn/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cbn/1.0.40/com/aliyuncs/cbn/transform/v20170912/DescribeGeographicRegionMembershipResponseUnmarshaller.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.cbn.transform.v20170912;
import java.util.ArrayList;
import java.util.List;
import com.aliyuncs.cbn.model.v20170912.DescribeGeographicRegionMembershipResponse;
import com.aliyuncs.cbn.model.v20170912.DescribeGeographicRegionMembershipResponse.RegionId;
import com.aliyuncs.transform.UnmarshallerContext;
public class DescribeGeographicRegionMembershipResponseUnmarshaller {
public static DescribeGeographicRegionMembershipResponse unmarshall(DescribeGeographicRegionMembershipResponse describeGeographicRegionMembershipResponse, UnmarshallerContext _ctx) {
describeGeographicRegionMembershipResponse.setRequestId(_ctx.stringValue("DescribeGeographicRegionMembershipResponse.RequestId"));
describeGeographicRegionMembershipResponse.setPageSize(_ctx.integerValue("DescribeGeographicRegionMembershipResponse.PageSize"));
describeGeographicRegionMembershipResponse.setPageNumber(_ctx.integerValue("DescribeGeographicRegionMembershipResponse.PageNumber"));
describeGeographicRegionMembershipResponse.setTotalCount(_ctx.integerValue("DescribeGeographicRegionMembershipResponse.TotalCount"));
List<RegionId> regionIds = new ArrayList<RegionId>();
for (int i = 0; i < _ctx.lengthValue("DescribeGeographicRegionMembershipResponse.RegionIds.Length"); i++) {
RegionId regionId = new RegionId();
regionId.setRegionId(_ctx.stringValue("DescribeGeographicRegionMembershipResponse.RegionIds["+ i +"].RegionId"));
regionIds.add(regionId);
}
describeGeographicRegionMembershipResponse.setRegionIds(regionIds);
return describeGeographicRegionMembershipResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cbn/1.0.40/com/aliyuncs/cbn/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cbn/1.0.40/com/aliyuncs/cbn/transform/v20170912/DescribeGrantRulesToCenResponseUnmarshaller.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.cbn.transform.v20170912;
import java.util.ArrayList;
import java.util.List;
import com.aliyuncs.cbn.model.v20170912.DescribeGrantRulesToCenResponse;
import com.aliyuncs.cbn.model.v20170912.DescribeGrantRulesToCenResponse.GrantRule;
import com.aliyuncs.transform.UnmarshallerContext;
public class DescribeGrantRulesToCenResponseUnmarshaller {
public static DescribeGrantRulesToCenResponse unmarshall(DescribeGrantRulesToCenResponse describeGrantRulesToCenResponse, UnmarshallerContext _ctx) {
describeGrantRulesToCenResponse.setRequestId(_ctx.stringValue("DescribeGrantRulesToCenResponse.RequestId"));
describeGrantRulesToCenResponse.setTotalCount(_ctx.longValue("DescribeGrantRulesToCenResponse.TotalCount"));
describeGrantRulesToCenResponse.setMaxResults(_ctx.longValue("DescribeGrantRulesToCenResponse.MaxResults"));
describeGrantRulesToCenResponse.setNextToken(_ctx.stringValue("DescribeGrantRulesToCenResponse.NextToken"));
List<GrantRule> grantRules = new ArrayList<GrantRule>();
for (int i = 0; i < _ctx.lengthValue("DescribeGrantRulesToCenResponse.GrantRules.Length"); i++) {
GrantRule grantRule = new GrantRule();
grantRule.setChildInstanceType(_ctx.stringValue("DescribeGrantRulesToCenResponse.GrantRules["+ i +"].ChildInstanceType"));
grantRule.setChildInstanceRegionId(_ctx.stringValue("DescribeGrantRulesToCenResponse.GrantRules["+ i +"].ChildInstanceRegionId"));
grantRule.setChildInstanceOwnerId(_ctx.longValue("DescribeGrantRulesToCenResponse.GrantRules["+ i +"].ChildInstanceOwnerId"));
grantRule.setChildInstanceId(_ctx.stringValue("DescribeGrantRulesToCenResponse.GrantRules["+ i +"].ChildInstanceId"));
grantRule.setCenId(_ctx.stringValue("DescribeGrantRulesToCenResponse.GrantRules["+ i +"].CenId"));
grantRule.setOrderType(_ctx.stringValue("DescribeGrantRulesToCenResponse.GrantRules["+ i +"].OrderType"));
grantRule.setCenOwnerId(_ctx.longValue("DescribeGrantRulesToCenResponse.GrantRules["+ i +"].CenOwnerId"));
grantRule.setCreateTime(_ctx.longValue("DescribeGrantRulesToCenResponse.GrantRules["+ i +"].CreateTime"));
grantRules.add(grantRule);
}
describeGrantRulesToCenResponse.setGrantRules(grantRules);
return describeGrantRulesToCenResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cbn/1.0.40/com/aliyuncs/cbn/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cbn/1.0.40/com/aliyuncs/cbn/transform/v20170912/DescribeGrantRulesToResourceResponseUnmarshaller.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.cbn.transform.v20170912;
import java.util.ArrayList;
import java.util.List;
import com.aliyuncs.cbn.model.v20170912.DescribeGrantRulesToResourceResponse;
import com.aliyuncs.cbn.model.v20170912.DescribeGrantRulesToResourceResponse.GrantRule;
import com.aliyuncs.transform.UnmarshallerContext;
public class DescribeGrantRulesToResourceResponseUnmarshaller {
public static DescribeGrantRulesToResourceResponse unmarshall(DescribeGrantRulesToResourceResponse describeGrantRulesToResourceResponse, UnmarshallerContext _ctx) {
describeGrantRulesToResourceResponse.setRequestId(_ctx.stringValue("DescribeGrantRulesToResourceResponse.RequestId"));
describeGrantRulesToResourceResponse.setNextToken(_ctx.stringValue("DescribeGrantRulesToResourceResponse.NextToken"));
describeGrantRulesToResourceResponse.setTotalCount(_ctx.integerValue("DescribeGrantRulesToResourceResponse.TotalCount"));
describeGrantRulesToResourceResponse.setMaxResults(_ctx.integerValue("DescribeGrantRulesToResourceResponse.MaxResults"));
List<GrantRule> grantRules = new ArrayList<GrantRule>();
for (int i = 0; i < _ctx.lengthValue("DescribeGrantRulesToResourceResponse.GrantRules.Length"); i++) {
GrantRule grantRule = new GrantRule();
grantRule.setCenOwnerId(_ctx.longValue("DescribeGrantRulesToResourceResponse.GrantRules["+ i +"].CenOwnerId"));
grantRule.setOrderType(_ctx.stringValue("DescribeGrantRulesToResourceResponse.GrantRules["+ i +"].OrderType"));
grantRule.setCenId(_ctx.stringValue("DescribeGrantRulesToResourceResponse.GrantRules["+ i +"].CenId"));
grantRule.setCreateTime(_ctx.stringValue("DescribeGrantRulesToResourceResponse.GrantRules["+ i +"].CreateTime"));
grantRules.add(grantRule);
}
describeGrantRulesToResourceResponse.setGrantRules(grantRules);
return describeGrantRulesToResourceResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cbn/1.0.40/com/aliyuncs/cbn/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cbn/1.0.40/com/aliyuncs/cbn/transform/v20170912/DescribePublishedRouteEntriesResponseUnmarshaller.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.cbn.transform.v20170912;
import java.util.ArrayList;
import java.util.List;
import com.aliyuncs.cbn.model.v20170912.DescribePublishedRouteEntriesResponse;
import com.aliyuncs.cbn.model.v20170912.DescribePublishedRouteEntriesResponse.PublishedRouteEntry;
import com.aliyuncs.cbn.model.v20170912.DescribePublishedRouteEntriesResponse.PublishedRouteEntry.Conflict;
import com.aliyuncs.transform.UnmarshallerContext;
public class DescribePublishedRouteEntriesResponseUnmarshaller {
public static DescribePublishedRouteEntriesResponse unmarshall(DescribePublishedRouteEntriesResponse describePublishedRouteEntriesResponse, UnmarshallerContext _ctx) {
describePublishedRouteEntriesResponse.setRequestId(_ctx.stringValue("DescribePublishedRouteEntriesResponse.RequestId"));
describePublishedRouteEntriesResponse.setPageSize(_ctx.integerValue("DescribePublishedRouteEntriesResponse.PageSize"));
describePublishedRouteEntriesResponse.setPageNumber(_ctx.integerValue("DescribePublishedRouteEntriesResponse.PageNumber"));
describePublishedRouteEntriesResponse.setTotalCount(_ctx.integerValue("DescribePublishedRouteEntriesResponse.TotalCount"));
List<PublishedRouteEntry> publishedRouteEntries = new ArrayList<PublishedRouteEntry>();
for (int i = 0; i < _ctx.lengthValue("DescribePublishedRouteEntriesResponse.PublishedRouteEntries.Length"); i++) {
PublishedRouteEntry publishedRouteEntry = new PublishedRouteEntry();
publishedRouteEntry.setNextHopId(_ctx.stringValue("DescribePublishedRouteEntriesResponse.PublishedRouteEntries["+ i +"].NextHopId"));
publishedRouteEntry.setPublishStatus(_ctx.stringValue("DescribePublishedRouteEntriesResponse.PublishedRouteEntries["+ i +"].PublishStatus"));
publishedRouteEntry.setChildInstanceRouteTableId(_ctx.stringValue("DescribePublishedRouteEntriesResponse.PublishedRouteEntries["+ i +"].ChildInstanceRouteTableId"));
publishedRouteEntry.setNextHopType(_ctx.stringValue("DescribePublishedRouteEntriesResponse.PublishedRouteEntries["+ i +"].NextHopType"));
publishedRouteEntry.setOperationalMode(_ctx.booleanValue("DescribePublishedRouteEntriesResponse.PublishedRouteEntries["+ i +"].OperationalMode"));
publishedRouteEntry.setDestinationCidrBlock(_ctx.stringValue("DescribePublishedRouteEntriesResponse.PublishedRouteEntries["+ i +"].DestinationCidrBlock"));
publishedRouteEntry.setRouteType(_ctx.stringValue("DescribePublishedRouteEntriesResponse.PublishedRouteEntries["+ i +"].RouteType"));
List<Conflict> conflicts = new ArrayList<Conflict>();
for (int j = 0; j < _ctx.lengthValue("DescribePublishedRouteEntriesResponse.PublishedRouteEntries["+ i +"].Conflicts.Length"); j++) {
Conflict conflict = new Conflict();
conflict.setStatus(_ctx.stringValue("DescribePublishedRouteEntriesResponse.PublishedRouteEntries["+ i +"].Conflicts["+ j +"].Status"));
conflict.setDestinationCidrBlock(_ctx.stringValue("DescribePublishedRouteEntriesResponse.PublishedRouteEntries["+ i +"].Conflicts["+ j +"].DestinationCidrBlock"));
conflict.setInstanceId(_ctx.stringValue("DescribePublishedRouteEntriesResponse.PublishedRouteEntries["+ i +"].Conflicts["+ j +"].InstanceId"));
conflict.setInstanceType(_ctx.stringValue("DescribePublishedRouteEntriesResponse.PublishedRouteEntries["+ i +"].Conflicts["+ j +"].InstanceType"));
conflict.setRegionId(_ctx.stringValue("DescribePublishedRouteEntriesResponse.PublishedRouteEntries["+ i +"].Conflicts["+ j +"].RegionId"));
conflicts.add(conflict);
}
publishedRouteEntry.setConflicts(conflicts);
publishedRouteEntries.add(publishedRouteEntry);
}
describePublishedRouteEntriesResponse.setPublishedRouteEntries(publishedRouteEntries);
return describePublishedRouteEntriesResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cbn/1.0.40/com/aliyuncs/cbn/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cbn/1.0.40/com/aliyuncs/cbn/transform/v20170912/DescribeRouteConflictResponseUnmarshaller.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.cbn.transform.v20170912;
import java.util.ArrayList;
import java.util.List;
import com.aliyuncs.cbn.model.v20170912.DescribeRouteConflictResponse;
import com.aliyuncs.cbn.model.v20170912.DescribeRouteConflictResponse.RouteConflict;
import com.aliyuncs.transform.UnmarshallerContext;
public class DescribeRouteConflictResponseUnmarshaller {
public static DescribeRouteConflictResponse unmarshall(DescribeRouteConflictResponse describeRouteConflictResponse, UnmarshallerContext _ctx) {
describeRouteConflictResponse.setRequestId(_ctx.stringValue("DescribeRouteConflictResponse.RequestId"));
describeRouteConflictResponse.setPageSize(_ctx.integerValue("DescribeRouteConflictResponse.PageSize"));
describeRouteConflictResponse.setPageNumber(_ctx.integerValue("DescribeRouteConflictResponse.PageNumber"));
describeRouteConflictResponse.setTotalCount(_ctx.integerValue("DescribeRouteConflictResponse.TotalCount"));
List<RouteConflict> routeConflicts = new ArrayList<RouteConflict>();
for (int i = 0; i < _ctx.lengthValue("DescribeRouteConflictResponse.RouteConflicts.Length"); i++) {
RouteConflict routeConflict = new RouteConflict();
routeConflict.setStatus(_ctx.stringValue("DescribeRouteConflictResponse.RouteConflicts["+ i +"].Status"));
routeConflict.setDestinationCidrBlock(_ctx.stringValue("DescribeRouteConflictResponse.RouteConflicts["+ i +"].DestinationCidrBlock"));
routeConflict.setInstanceId(_ctx.stringValue("DescribeRouteConflictResponse.RouteConflicts["+ i +"].InstanceId"));
routeConflict.setInstanceType(_ctx.stringValue("DescribeRouteConflictResponse.RouteConflicts["+ i +"].InstanceType"));
routeConflict.setRegionId(_ctx.stringValue("DescribeRouteConflictResponse.RouteConflicts["+ i +"].RegionId"));
routeConflicts.add(routeConflict);
}
describeRouteConflictResponse.setRouteConflicts(routeConflicts);
return describeRouteConflictResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cbn/1.0.40/com/aliyuncs/cbn/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cbn/1.0.40/com/aliyuncs/cbn/transform/v20170912/DescribeRouteServicesInCenResponseUnmarshaller.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.cbn.transform.v20170912;
import java.util.ArrayList;
import java.util.List;
import com.aliyuncs.cbn.model.v20170912.DescribeRouteServicesInCenResponse;
import com.aliyuncs.cbn.model.v20170912.DescribeRouteServicesInCenResponse.RouteServiceEntry;
import com.aliyuncs.transform.UnmarshallerContext;
public class DescribeRouteServicesInCenResponseUnmarshaller {
public static DescribeRouteServicesInCenResponse unmarshall(DescribeRouteServicesInCenResponse describeRouteServicesInCenResponse, UnmarshallerContext _ctx) {
describeRouteServicesInCenResponse.setRequestId(_ctx.stringValue("DescribeRouteServicesInCenResponse.RequestId"));
describeRouteServicesInCenResponse.setPageSize(_ctx.integerValue("DescribeRouteServicesInCenResponse.PageSize"));
describeRouteServicesInCenResponse.setPageNumber(_ctx.integerValue("DescribeRouteServicesInCenResponse.PageNumber"));
describeRouteServicesInCenResponse.setTotalCount(_ctx.integerValue("DescribeRouteServicesInCenResponse.TotalCount"));
List<RouteServiceEntry> routeServiceEntries = new ArrayList<RouteServiceEntry>();
for (int i = 0; i < _ctx.lengthValue("DescribeRouteServicesInCenResponse.RouteServiceEntries.Length"); i++) {
RouteServiceEntry routeServiceEntry = new RouteServiceEntry();
routeServiceEntry.setStatus(_ctx.stringValue("DescribeRouteServicesInCenResponse.RouteServiceEntries["+ i +"].Status"));
routeServiceEntry.setHost(_ctx.stringValue("DescribeRouteServicesInCenResponse.RouteServiceEntries["+ i +"].Host"));
routeServiceEntry.setDescription(_ctx.stringValue("DescribeRouteServicesInCenResponse.RouteServiceEntries["+ i +"].Description"));
routeServiceEntry.setHostVpcId(_ctx.stringValue("DescribeRouteServicesInCenResponse.RouteServiceEntries["+ i +"].HostVpcId"));
routeServiceEntry.setCenId(_ctx.stringValue("DescribeRouteServicesInCenResponse.RouteServiceEntries["+ i +"].CenId"));
routeServiceEntry.setAccessRegionId(_ctx.stringValue("DescribeRouteServicesInCenResponse.RouteServiceEntries["+ i +"].AccessRegionId"));
routeServiceEntry.setHostRegionId(_ctx.stringValue("DescribeRouteServicesInCenResponse.RouteServiceEntries["+ i +"].HostRegionId"));
routeServiceEntry.setUpdateInterval(_ctx.stringValue("DescribeRouteServicesInCenResponse.RouteServiceEntries["+ i +"].UpdateInterval"));
List<String> cidrs = new ArrayList<String>();
for (int j = 0; j < _ctx.lengthValue("DescribeRouteServicesInCenResponse.RouteServiceEntries["+ i +"].Cidrs.Length"); j++) {
cidrs.add(_ctx.stringValue("DescribeRouteServicesInCenResponse.RouteServiceEntries["+ i +"].Cidrs["+ j +"]"));
}
routeServiceEntry.setCidrs(cidrs);
routeServiceEntries.add(routeServiceEntry);
}
describeRouteServicesInCenResponse.setRouteServiceEntries(routeServiceEntries);
return describeRouteServicesInCenResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cbn/1.0.40/com/aliyuncs/cbn/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cbn/1.0.40/com/aliyuncs/cbn/transform/v20170912/DescribeTransitRouteTableAggregationDetailResponseUnmarshaller.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.cbn.transform.v20170912;
import java.util.ArrayList;
import java.util.List;
import com.aliyuncs.cbn.model.v20170912.DescribeTransitRouteTableAggregationDetailResponse;
import com.aliyuncs.cbn.model.v20170912.DescribeTransitRouteTableAggregationDetailResponse.DataItem;
import com.aliyuncs.transform.UnmarshallerContext;
public class DescribeTransitRouteTableAggregationDetailResponseUnmarshaller {
public static DescribeTransitRouteTableAggregationDetailResponse unmarshall(DescribeTransitRouteTableAggregationDetailResponse describeTransitRouteTableAggregationDetailResponse, UnmarshallerContext _ctx) {
describeTransitRouteTableAggregationDetailResponse.setRequestId(_ctx.stringValue("DescribeTransitRouteTableAggregationDetailResponse.RequestId"));
describeTransitRouteTableAggregationDetailResponse.setCount(_ctx.integerValue("DescribeTransitRouteTableAggregationDetailResponse.Count"));
describeTransitRouteTableAggregationDetailResponse.setNextToken(_ctx.stringValue("DescribeTransitRouteTableAggregationDetailResponse.NextToken"));
describeTransitRouteTableAggregationDetailResponse.setTotal(_ctx.integerValue("DescribeTransitRouteTableAggregationDetailResponse.Total"));
List<DataItem> data = new ArrayList<DataItem>();
for (int i = 0; i < _ctx.lengthValue("DescribeTransitRouteTableAggregationDetailResponse.Data.Length"); i++) {
DataItem dataItem = new DataItem();
dataItem.setInstanceId(_ctx.stringValue("DescribeTransitRouteTableAggregationDetailResponse.Data["+ i +"].InstanceId"));
dataItem.setDescription(_ctx.stringValue("DescribeTransitRouteTableAggregationDetailResponse.Data["+ i +"].Description"));
dataItem.setStatus(_ctx.stringValue("DescribeTransitRouteTableAggregationDetailResponse.Data["+ i +"].Status"));
data.add(dataItem);
}
describeTransitRouteTableAggregationDetailResponse.setData(data);
return describeTransitRouteTableAggregationDetailResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cbn/1.0.40/com/aliyuncs/cbn/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cbn/1.0.40/com/aliyuncs/cbn/transform/v20170912/DescribeTransitRouteTableAggregationResponseUnmarshaller.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.cbn.transform.v20170912;
import java.util.ArrayList;
import java.util.List;
import com.aliyuncs.cbn.model.v20170912.DescribeTransitRouteTableAggregationResponse;
import com.aliyuncs.cbn.model.v20170912.DescribeTransitRouteTableAggregationResponse.DataItem;
import com.aliyuncs.transform.UnmarshallerContext;
public class DescribeTransitRouteTableAggregationResponseUnmarshaller {
public static DescribeTransitRouteTableAggregationResponse unmarshall(DescribeTransitRouteTableAggregationResponse describeTransitRouteTableAggregationResponse, UnmarshallerContext _ctx) {
describeTransitRouteTableAggregationResponse.setRequestId(_ctx.stringValue("DescribeTransitRouteTableAggregationResponse.RequestId"));
describeTransitRouteTableAggregationResponse.setCount(_ctx.integerValue("DescribeTransitRouteTableAggregationResponse.Count"));
describeTransitRouteTableAggregationResponse.setNextToken(_ctx.stringValue("DescribeTransitRouteTableAggregationResponse.NextToken"));
describeTransitRouteTableAggregationResponse.setTotal(_ctx.integerValue("DescribeTransitRouteTableAggregationResponse.Total"));
List<DataItem> data = new ArrayList<DataItem>();
for (int i = 0; i < _ctx.lengthValue("DescribeTransitRouteTableAggregationResponse.Data.Length"); i++) {
DataItem dataItem = new DataItem();
dataItem.setName(_ctx.stringValue("DescribeTransitRouteTableAggregationResponse.Data["+ i +"].Name"));
dataItem.setTransitRouteTableAggregationCidr(_ctx.stringValue("DescribeTransitRouteTableAggregationResponse.Data["+ i +"].TransitRouteTableAggregationCidr"));
dataItem.setScope(_ctx.stringValue("DescribeTransitRouteTableAggregationResponse.Data["+ i +"].Scope"));
dataItem.setNexthop(_ctx.stringValue("DescribeTransitRouteTableAggregationResponse.Data["+ i +"].Nexthop"));
dataItem.setRouteType(_ctx.stringValue("DescribeTransitRouteTableAggregationResponse.Data["+ i +"].RouteType"));
dataItem.setDescription(_ctx.stringValue("DescribeTransitRouteTableAggregationResponse.Data["+ i +"].Description"));
dataItem.setTrRouteTableId(_ctx.stringValue("DescribeTransitRouteTableAggregationResponse.Data["+ i +"].TrRouteTableId"));
dataItem.setStatus(_ctx.stringValue("DescribeTransitRouteTableAggregationResponse.Data["+ i +"].Status"));
data.add(dataItem);
}
describeTransitRouteTableAggregationResponse.setData(data);
return describeTransitRouteTableAggregationResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cbn/1.0.40/com/aliyuncs/cbn/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cbn/1.0.40/com/aliyuncs/cbn/transform/v20170912/DetachCenChildInstanceResponseUnmarshaller.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.cbn.transform.v20170912;
import com.aliyuncs.cbn.model.v20170912.DetachCenChildInstanceResponse;
import com.aliyuncs.transform.UnmarshallerContext;
public class DetachCenChildInstanceResponseUnmarshaller {
public static DetachCenChildInstanceResponse unmarshall(DetachCenChildInstanceResponse detachCenChildInstanceResponse, UnmarshallerContext _ctx) {
detachCenChildInstanceResponse.setRequestId(_ctx.stringValue("DetachCenChildInstanceResponse.RequestId"));
return detachCenChildInstanceResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cbn/1.0.40/com/aliyuncs/cbn/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cbn/1.0.40/com/aliyuncs/cbn/transform/v20170912/DisableCenVbrHealthCheckResponseUnmarshaller.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.cbn.transform.v20170912;
import com.aliyuncs.cbn.model.v20170912.DisableCenVbrHealthCheckResponse;
import com.aliyuncs.transform.UnmarshallerContext;
public class DisableCenVbrHealthCheckResponseUnmarshaller {
public static DisableCenVbrHealthCheckResponse unmarshall(DisableCenVbrHealthCheckResponse disableCenVbrHealthCheckResponse, UnmarshallerContext _ctx) {
disableCenVbrHealthCheckResponse.setRequestId(_ctx.stringValue("DisableCenVbrHealthCheckResponse.RequestId"));
return disableCenVbrHealthCheckResponse;
}
}
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.