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/DeleteCenRouteMapRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS 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 DeleteCenRouteMapRequest extends RpcAcsRequest<DeleteCenRouteMapResponse> {
private Long resourceOwnerId;
private String cenId;
private String resourceOwnerAccount;
private String ownerAccount;
private String routeMapId;
private Long ownerId;
private String cenRegionId;
public DeleteCenRouteMapRequest() {
super("Cbn", "2017-09-12", "DeleteCenRouteMap", "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 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 String getRouteMapId() {
return this.routeMapId;
}
public void setRouteMapId(String routeMapId) {
this.routeMapId = routeMapId;
if(routeMapId != null){
putQueryParameter("RouteMapId", routeMapId);
}
}
public Long getOwnerId() {
return this.ownerId;
}
public void setOwnerId(Long ownerId) {
this.ownerId = ownerId;
if(ownerId != null){
putQueryParameter("OwnerId", ownerId.toString());
}
}
public String getCenRegionId() {
return this.cenRegionId;
}
public void setCenRegionId(String cenRegionId) {
this.cenRegionId = cenRegionId;
if(cenRegionId != null){
putQueryParameter("CenRegionId", cenRegionId);
}
}
@Override
public Class<DeleteCenRouteMapResponse> getResponseClass() {
return DeleteCenRouteMapResponse.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/DeleteCenRouteMapResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS 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.DeleteCenRouteMapResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DeleteCenRouteMapResponse extends AcsResponse {
private String requestId;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
@Override
public DeleteCenRouteMapResponse getInstance(UnmarshallerContext context) {
return DeleteCenRouteMapResponseUnmarshaller.unmarshall(this, context);
}
}
|
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/DeleteFlowlogRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS 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 DeleteFlowlogRequest extends RpcAcsRequest<DeleteFlowlogResponse> {
private Long resourceOwnerId;
private String clientToken;
private String cenId;
private String resourceOwnerAccount;
private String ownerAccount;
private Long ownerId;
private String flowLogId;
public DeleteFlowlogRequest() {
super("Cbn", "2017-09-12", "DeleteFlowlog", "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 getCenId() {
return this.cenId;
}
public void setCenId(String cenId) {
this.cenId = cenId;
if(cenId != null){
putQueryParameter("CenId", cenId);
}
}
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 getFlowLogId() {
return this.flowLogId;
}
public void setFlowLogId(String flowLogId) {
this.flowLogId = flowLogId;
if(flowLogId != null){
putQueryParameter("FlowLogId", flowLogId);
}
}
@Override
public Class<DeleteFlowlogResponse> getResponseClass() {
return DeleteFlowlogResponse.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/DeleteFlowlogResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS 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.DeleteFlowlogResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DeleteFlowlogResponse extends AcsResponse {
private String success;
private String requestId;
public String getSuccess() {
return this.success;
}
public void setSuccess(String success) {
this.success = success;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
@Override
public DeleteFlowlogResponse getInstance(UnmarshallerContext context) {
return DeleteFlowlogResponseUnmarshaller.unmarshall(this, context);
}
}
|
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/DeleteRouteServiceInCenRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS 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 DeleteRouteServiceInCenRequest extends RpcAcsRequest<DeleteRouteServiceInCenResponse> {
private Long resourceOwnerId;
private String cenId;
private String accessRegionId;
private String host;
private String hostRegionId;
private String hostVpcId;
private String resourceOwnerAccount;
private String ownerAccount;
private Long ownerId;
public DeleteRouteServiceInCenRequest() {
super("Cbn", "2017-09-12", "DeleteRouteServiceInCen", "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 getAccessRegionId() {
return this.accessRegionId;
}
public void setAccessRegionId(String accessRegionId) {
this.accessRegionId = accessRegionId;
if(accessRegionId != null){
putQueryParameter("AccessRegionId", accessRegionId);
}
}
public String getHost() {
return this.host;
}
public void setHost(String host) {
this.host = host;
if(host != null){
putQueryParameter("Host", host);
}
}
public String getHostRegionId() {
return this.hostRegionId;
}
public void setHostRegionId(String hostRegionId) {
this.hostRegionId = hostRegionId;
if(hostRegionId != null){
putQueryParameter("HostRegionId", hostRegionId);
}
}
public String getHostVpcId() {
return this.hostVpcId;
}
public void setHostVpcId(String hostVpcId) {
this.hostVpcId = hostVpcId;
if(hostVpcId != null){
putQueryParameter("HostVpcId", hostVpcId);
}
}
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());
}
}
@Override
public Class<DeleteRouteServiceInCenResponse> getResponseClass() {
return DeleteRouteServiceInCenResponse.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/DeleteRouteServiceInCenResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS 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.DeleteRouteServiceInCenResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DeleteRouteServiceInCenResponse extends AcsResponse {
private String requestId;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
@Override
public DeleteRouteServiceInCenResponse getInstance(UnmarshallerContext context) {
return DeleteRouteServiceInCenResponseUnmarshaller.unmarshall(this, context);
}
}
|
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/DeleteTrafficMarkingPolicyRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS 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 DeleteTrafficMarkingPolicyRequest extends RpcAcsRequest<DeleteTrafficMarkingPolicyResponse> {
private Long resourceOwnerId;
private String clientToken;
private String trafficMarkingPolicyId;
private Boolean dryRun;
private String resourceOwnerAccount;
private String ownerAccount;
private Long ownerId;
public DeleteTrafficMarkingPolicyRequest() {
super("Cbn", "2017-09-12", "DeleteTrafficMarkingPolicy", "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 getTrafficMarkingPolicyId() {
return this.trafficMarkingPolicyId;
}
public void setTrafficMarkingPolicyId(String trafficMarkingPolicyId) {
this.trafficMarkingPolicyId = trafficMarkingPolicyId;
if(trafficMarkingPolicyId != null){
putQueryParameter("TrafficMarkingPolicyId", trafficMarkingPolicyId);
}
}
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());
}
}
@Override
public Class<DeleteTrafficMarkingPolicyResponse> getResponseClass() {
return DeleteTrafficMarkingPolicyResponse.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/DeleteTrafficMarkingPolicyResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS 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.DeleteTrafficMarkingPolicyResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DeleteTrafficMarkingPolicyResponse extends AcsResponse {
private String requestId;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
@Override
public DeleteTrafficMarkingPolicyResponse getInstance(UnmarshallerContext context) {
return DeleteTrafficMarkingPolicyResponseUnmarshaller.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/DeleteTransitRouteTableAggregationRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS 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 DeleteTransitRouteTableAggregationRequest extends RpcAcsRequest<DeleteTransitRouteTableAggregationResponse> {
private Long resourceOwnerId;
private String clientToken;
private Boolean dryRun;
private String resourceOwnerAccount;
private String ownerAccount;
private Long ownerId;
private String transitRouteTableId;
private String transitRouteTableAggregationCidr;
public DeleteTransitRouteTableAggregationRequest() {
super("Cbn", "2017-09-12", "DeleteTransitRouteTableAggregation", "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 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 getTransitRouteTableId() {
return this.transitRouteTableId;
}
public void setTransitRouteTableId(String transitRouteTableId) {
this.transitRouteTableId = transitRouteTableId;
if(transitRouteTableId != null){
putQueryParameter("TransitRouteTableId", transitRouteTableId);
}
}
public String getTransitRouteTableAggregationCidr() {
return this.transitRouteTableAggregationCidr;
}
public void setTransitRouteTableAggregationCidr(String transitRouteTableAggregationCidr) {
this.transitRouteTableAggregationCidr = transitRouteTableAggregationCidr;
if(transitRouteTableAggregationCidr != null){
putQueryParameter("TransitRouteTableAggregationCidr", transitRouteTableAggregationCidr);
}
}
@Override
public Class<DeleteTransitRouteTableAggregationResponse> getResponseClass() {
return DeleteTransitRouteTableAggregationResponse.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/DeleteTransitRouteTableAggregationResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS 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.DeleteTransitRouteTableAggregationResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DeleteTransitRouteTableAggregationResponse extends AcsResponse {
private String requestId;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
@Override
public DeleteTransitRouteTableAggregationResponse getInstance(UnmarshallerContext context) {
return DeleteTransitRouteTableAggregationResponseUnmarshaller.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/DeleteTransitRouterCidrRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS 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 DeleteTransitRouterCidrRequest extends RpcAcsRequest<DeleteTransitRouterCidrResponse> {
private Long resourceOwnerId;
private String clientToken;
private String transitRouterCidrId;
private Boolean dryRun;
private String resourceOwnerAccount;
private String ownerAccount;
private Long ownerId;
private String transitRouterId;
public DeleteTransitRouterCidrRequest() {
super("Cbn", "2017-09-12", "DeleteTransitRouterCidr", "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 getTransitRouterCidrId() {
return this.transitRouterCidrId;
}
public void setTransitRouterCidrId(String transitRouterCidrId) {
this.transitRouterCidrId = transitRouterCidrId;
if(transitRouterCidrId != null){
putQueryParameter("TransitRouterCidrId", transitRouterCidrId);
}
}
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);
}
}
@Override
public Class<DeleteTransitRouterCidrResponse> getResponseClass() {
return DeleteTransitRouterCidrResponse.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/DeleteTransitRouterCidrResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS 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.DeleteTransitRouterCidrResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DeleteTransitRouterCidrResponse extends AcsResponse {
private String requestId;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
@Override
public DeleteTransitRouterCidrResponse getInstance(UnmarshallerContext context) {
return DeleteTransitRouterCidrResponseUnmarshaller.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/DeleteTransitRouterEcrAttachmentRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS 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 DeleteTransitRouterEcrAttachmentRequest extends RpcAcsRequest<DeleteTransitRouterEcrAttachmentResponse> {
private Long resourceOwnerId;
private String clientToken;
private Boolean dryRun;
private String resourceOwnerAccount;
private String ownerAccount;
private Long ownerId;
private String transitRouterAttachmentId;
private Boolean force;
public DeleteTransitRouterEcrAttachmentRequest() {
super("Cbn", "2017-09-12", "DeleteTransitRouterEcrAttachment", "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 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 Boolean getForce() {
return this.force;
}
public void setForce(Boolean force) {
this.force = force;
if(force != null){
putQueryParameter("Force", force.toString());
}
}
@Override
public Class<DeleteTransitRouterEcrAttachmentResponse> getResponseClass() {
return DeleteTransitRouterEcrAttachmentResponse.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/DeleteTransitRouterEcrAttachmentResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS 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.DeleteTransitRouterEcrAttachmentResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DeleteTransitRouterEcrAttachmentResponse extends AcsResponse {
private String requestId;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
@Override
public DeleteTransitRouterEcrAttachmentResponse getInstance(UnmarshallerContext context) {
return DeleteTransitRouterEcrAttachmentResponseUnmarshaller.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/DeleteTransitRouterMulticastDomainRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS 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 DeleteTransitRouterMulticastDomainRequest extends RpcAcsRequest<DeleteTransitRouterMulticastDomainResponse> {
private Long resourceOwnerId;
private String clientToken;
private String transitRouterMulticastDomainId;
private Boolean dryRun;
private String resourceOwnerAccount;
private String ownerAccount;
private Long ownerId;
public DeleteTransitRouterMulticastDomainRequest() {
super("Cbn", "2017-09-12", "DeleteTransitRouterMulticastDomain", "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 getTransitRouterMulticastDomainId() {
return this.transitRouterMulticastDomainId;
}
public void setTransitRouterMulticastDomainId(String transitRouterMulticastDomainId) {
this.transitRouterMulticastDomainId = transitRouterMulticastDomainId;
if(transitRouterMulticastDomainId != null){
putQueryParameter("TransitRouterMulticastDomainId", transitRouterMulticastDomainId);
}
}
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());
}
}
@Override
public Class<DeleteTransitRouterMulticastDomainResponse> getResponseClass() {
return DeleteTransitRouterMulticastDomainResponse.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/DeleteTransitRouterMulticastDomainResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS 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.DeleteTransitRouterMulticastDomainResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DeleteTransitRouterMulticastDomainResponse extends AcsResponse {
private String requestId;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
@Override
public DeleteTransitRouterMulticastDomainResponse getInstance(UnmarshallerContext context) {
return DeleteTransitRouterMulticastDomainResponseUnmarshaller.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/DeleteTransitRouterPeerAttachmentRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS 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 DeleteTransitRouterPeerAttachmentRequest extends RpcAcsRequest<DeleteTransitRouterPeerAttachmentResponse> {
private Long resourceOwnerId;
private String clientToken;
private Boolean dryRun;
private String resourceOwnerAccount;
private String ownerAccount;
private Long ownerId;
private String transitRouterAttachmentId;
private Boolean force;
public DeleteTransitRouterPeerAttachmentRequest() {
super("Cbn", "2017-09-12", "DeleteTransitRouterPeerAttachment", "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 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 Boolean getForce() {
return this.force;
}
public void setForce(Boolean force) {
this.force = force;
if(force != null){
putQueryParameter("Force", force.toString());
}
}
@Override
public Class<DeleteTransitRouterPeerAttachmentResponse> getResponseClass() {
return DeleteTransitRouterPeerAttachmentResponse.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/DeleteTransitRouterPeerAttachmentResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS 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.DeleteTransitRouterPeerAttachmentResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DeleteTransitRouterPeerAttachmentResponse extends AcsResponse {
private String requestId;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
@Override
public DeleteTransitRouterPeerAttachmentResponse getInstance(UnmarshallerContext context) {
return DeleteTransitRouterPeerAttachmentResponseUnmarshaller.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/DeleteTransitRouterPrefixListAssociationRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS 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 DeleteTransitRouterPrefixListAssociationRequest extends RpcAcsRequest<DeleteTransitRouterPrefixListAssociationResponse> {
private Long resourceOwnerId;
private String clientToken;
private String prefixListId;
private String nextHopType;
private Boolean dryRun;
private String resourceOwnerAccount;
private String ownerAccount;
private Long ownerId;
private String transitRouterId;
private String transitRouterTableId;
private String nextHop;
public DeleteTransitRouterPrefixListAssociationRequest() {
super("Cbn", "2017-09-12", "DeleteTransitRouterPrefixListAssociation", "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 getPrefixListId() {
return this.prefixListId;
}
public void setPrefixListId(String prefixListId) {
this.prefixListId = prefixListId;
if(prefixListId != null){
putQueryParameter("PrefixListId", prefixListId);
}
}
public String getNextHopType() {
return this.nextHopType;
}
public void setNextHopType(String nextHopType) {
this.nextHopType = nextHopType;
if(nextHopType != null){
putQueryParameter("NextHopType", nextHopType);
}
}
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 getTransitRouterTableId() {
return this.transitRouterTableId;
}
public void setTransitRouterTableId(String transitRouterTableId) {
this.transitRouterTableId = transitRouterTableId;
if(transitRouterTableId != null){
putQueryParameter("TransitRouterTableId", transitRouterTableId);
}
}
public String getNextHop() {
return this.nextHop;
}
public void setNextHop(String nextHop) {
this.nextHop = nextHop;
if(nextHop != null){
putQueryParameter("NextHop", nextHop);
}
}
@Override
public Class<DeleteTransitRouterPrefixListAssociationResponse> getResponseClass() {
return DeleteTransitRouterPrefixListAssociationResponse.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/DeleteTransitRouterPrefixListAssociationResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS 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.DeleteTransitRouterPrefixListAssociationResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DeleteTransitRouterPrefixListAssociationResponse extends AcsResponse {
private String requestId;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
@Override
public DeleteTransitRouterPrefixListAssociationResponse getInstance(UnmarshallerContext context) {
return DeleteTransitRouterPrefixListAssociationResponseUnmarshaller.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/DeleteTransitRouterRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS 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 DeleteTransitRouterRequest extends RpcAcsRequest<DeleteTransitRouterResponse> {
private Long resourceOwnerId;
private String clientToken;
private Boolean dryRun;
private String resourceOwnerAccount;
private String ownerAccount;
private Long ownerId;
private String transitRouterId;
public DeleteTransitRouterRequest() {
super("Cbn", "2017-09-12", "DeleteTransitRouter", "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 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);
}
}
@Override
public Class<DeleteTransitRouterResponse> getResponseClass() {
return DeleteTransitRouterResponse.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/DeleteTransitRouterResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS 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.DeleteTransitRouterResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DeleteTransitRouterResponse extends AcsResponse {
private String requestId;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
@Override
public DeleteTransitRouterResponse getInstance(UnmarshallerContext context) {
return DeleteTransitRouterResponseUnmarshaller.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/DeleteTransitRouterRouteEntryRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS 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 DeleteTransitRouterRouteEntryRequest extends RpcAcsRequest<DeleteTransitRouterRouteEntryResponse> {
private String transitRouterRouteEntryId;
private Long resourceOwnerId;
private String clientToken;
private String transitRouterRouteEntryNextHopType;
private String transitRouterRouteEntryDestinationCidrBlock;
private String transitRouterRouteTableId;
private String transitRouterRouteEntryNextHopId;
private Boolean dryRun;
private String resourceOwnerAccount;
private String ownerAccount;
private Long ownerId;
public DeleteTransitRouterRouteEntryRequest() {
super("Cbn", "2017-09-12", "DeleteTransitRouterRouteEntry", "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 getTransitRouterRouteEntryNextHopType() {
return this.transitRouterRouteEntryNextHopType;
}
public void setTransitRouterRouteEntryNextHopType(String transitRouterRouteEntryNextHopType) {
this.transitRouterRouteEntryNextHopType = transitRouterRouteEntryNextHopType;
if(transitRouterRouteEntryNextHopType != null){
putQueryParameter("TransitRouterRouteEntryNextHopType", transitRouterRouteEntryNextHopType);
}
}
public String getTransitRouterRouteEntryDestinationCidrBlock() {
return this.transitRouterRouteEntryDestinationCidrBlock;
}
public void setTransitRouterRouteEntryDestinationCidrBlock(String transitRouterRouteEntryDestinationCidrBlock) {
this.transitRouterRouteEntryDestinationCidrBlock = transitRouterRouteEntryDestinationCidrBlock;
if(transitRouterRouteEntryDestinationCidrBlock != null){
putQueryParameter("TransitRouterRouteEntryDestinationCidrBlock", transitRouterRouteEntryDestinationCidrBlock);
}
}
public String getTransitRouterRouteTableId() {
return this.transitRouterRouteTableId;
}
public void setTransitRouterRouteTableId(String transitRouterRouteTableId) {
this.transitRouterRouteTableId = transitRouterRouteTableId;
if(transitRouterRouteTableId != null){
putQueryParameter("TransitRouterRouteTableId", transitRouterRouteTableId);
}
}
public String getTransitRouterRouteEntryNextHopId() {
return this.transitRouterRouteEntryNextHopId;
}
public void setTransitRouterRouteEntryNextHopId(String transitRouterRouteEntryNextHopId) {
this.transitRouterRouteEntryNextHopId = transitRouterRouteEntryNextHopId;
if(transitRouterRouteEntryNextHopId != null){
putQueryParameter("TransitRouterRouteEntryNextHopId", transitRouterRouteEntryNextHopId);
}
}
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());
}
}
@Override
public Class<DeleteTransitRouterRouteEntryResponse> getResponseClass() {
return DeleteTransitRouterRouteEntryResponse.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/DeleteTransitRouterRouteEntryResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS 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.DeleteTransitRouterRouteEntryResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DeleteTransitRouterRouteEntryResponse extends AcsResponse {
private String requestId;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
@Override
public DeleteTransitRouterRouteEntryResponse getInstance(UnmarshallerContext context) {
return DeleteTransitRouterRouteEntryResponseUnmarshaller.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/DeleteTransitRouterRouteTableRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS 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 DeleteTransitRouterRouteTableRequest extends RpcAcsRequest<DeleteTransitRouterRouteTableResponse> {
private Long resourceOwnerId;
private String clientToken;
private String transitRouterRouteTableId;
private Boolean dryRun;
private String resourceOwnerAccount;
private String ownerAccount;
private Long ownerId;
public DeleteTransitRouterRouteTableRequest() {
super("Cbn", "2017-09-12", "DeleteTransitRouterRouteTable", "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 getTransitRouterRouteTableId() {
return this.transitRouterRouteTableId;
}
public void setTransitRouterRouteTableId(String transitRouterRouteTableId) {
this.transitRouterRouteTableId = transitRouterRouteTableId;
if(transitRouterRouteTableId != null){
putQueryParameter("TransitRouterRouteTableId", transitRouterRouteTableId);
}
}
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());
}
}
@Override
public Class<DeleteTransitRouterRouteTableResponse> getResponseClass() {
return DeleteTransitRouterRouteTableResponse.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/DeleteTransitRouterRouteTableResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS 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.DeleteTransitRouterRouteTableResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DeleteTransitRouterRouteTableResponse extends AcsResponse {
private String requestId;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
@Override
public DeleteTransitRouterRouteTableResponse getInstance(UnmarshallerContext context) {
return DeleteTransitRouterRouteTableResponseUnmarshaller.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/DeleteTransitRouterVbrAttachmentRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS 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 DeleteTransitRouterVbrAttachmentRequest extends RpcAcsRequest<DeleteTransitRouterVbrAttachmentResponse> {
private Long resourceOwnerId;
private String clientToken;
private Boolean dryRun;
private String resourceOwnerAccount;
private String ownerAccount;
private Long ownerId;
private String transitRouterAttachmentId;
private Boolean force;
public DeleteTransitRouterVbrAttachmentRequest() {
super("Cbn", "2017-09-12", "DeleteTransitRouterVbrAttachment", "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 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 Boolean getForce() {
return this.force;
}
public void setForce(Boolean force) {
this.force = force;
if(force != null){
putQueryParameter("Force", force.toString());
}
}
@Override
public Class<DeleteTransitRouterVbrAttachmentResponse> getResponseClass() {
return DeleteTransitRouterVbrAttachmentResponse.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/DeleteTransitRouterVbrAttachmentResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS 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.DeleteTransitRouterVbrAttachmentResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DeleteTransitRouterVbrAttachmentResponse extends AcsResponse {
private String requestId;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
@Override
public DeleteTransitRouterVbrAttachmentResponse getInstance(UnmarshallerContext context) {
return DeleteTransitRouterVbrAttachmentResponseUnmarshaller.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/DeleteTransitRouterVpcAttachmentRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS 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 DeleteTransitRouterVpcAttachmentRequest extends RpcAcsRequest<DeleteTransitRouterVpcAttachmentResponse> {
private Long resourceOwnerId;
private String clientToken;
private Boolean dryRun;
private String resourceOwnerAccount;
private String ownerAccount;
private Long ownerId;
private String transitRouterAttachmentId;
private Boolean force;
public DeleteTransitRouterVpcAttachmentRequest() {
super("Cbn", "2017-09-12", "DeleteTransitRouterVpcAttachment", "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 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 Boolean getForce() {
return this.force;
}
public void setForce(Boolean force) {
this.force = force;
if(force != null){
putQueryParameter("Force", force.toString());
}
}
@Override
public Class<DeleteTransitRouterVpcAttachmentResponse> getResponseClass() {
return DeleteTransitRouterVpcAttachmentResponse.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/DeleteTransitRouterVpcAttachmentResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS 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.DeleteTransitRouterVpcAttachmentResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DeleteTransitRouterVpcAttachmentResponse extends AcsResponse {
private String requestId;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
@Override
public DeleteTransitRouterVpcAttachmentResponse getInstance(UnmarshallerContext context) {
return DeleteTransitRouterVpcAttachmentResponseUnmarshaller.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/DeleteTransitRouterVpnAttachmentRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS 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 DeleteTransitRouterVpnAttachmentRequest extends RpcAcsRequest<DeleteTransitRouterVpnAttachmentResponse> {
private Long resourceOwnerId;
private String clientToken;
private Boolean dryRun;
private String resourceOwnerAccount;
private String ownerAccount;
private Long ownerId;
private String transitRouterAttachmentId;
private Boolean force;
public DeleteTransitRouterVpnAttachmentRequest() {
super("Cbn", "2017-09-12", "DeleteTransitRouterVpnAttachment", "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 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 Boolean getForce() {
return this.force;
}
public void setForce(Boolean force) {
this.force = force;
if(force != null){
putQueryParameter("Force", force.toString());
}
}
@Override
public Class<DeleteTransitRouterVpnAttachmentResponse> getResponseClass() {
return DeleteTransitRouterVpnAttachmentResponse.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/DeleteTransitRouterVpnAttachmentResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS 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.DeleteTransitRouterVpnAttachmentResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DeleteTransitRouterVpnAttachmentResponse extends AcsResponse {
private String requestId;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
@Override
public DeleteTransitRouterVpnAttachmentResponse getInstance(UnmarshallerContext context) {
return DeleteTransitRouterVpnAttachmentResponseUnmarshaller.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/DeregisterTransitRouterMulticastGroupMembersRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS 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 DeregisterTransitRouterMulticastGroupMembersRequest extends RpcAcsRequest<DeregisterTransitRouterMulticastGroupMembersResponse> {
private Long resourceOwnerId;
private String clientToken;
private List<String> networkInterfaceIdss;
private String transitRouterMulticastDomainId;
private String groupIpAddress;
private Boolean dryRun;
private String resourceOwnerAccount;
private String ownerAccount;
private List<String> peerTransitRouterMulticastDomainss;
private Long ownerId;
public DeregisterTransitRouterMulticastGroupMembersRequest() {
super("Cbn", "2017-09-12", "DeregisterTransitRouterMulticastGroupMembers", "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<String> getNetworkInterfaceIdss() {
return this.networkInterfaceIdss;
}
public void setNetworkInterfaceIdss(List<String> networkInterfaceIdss) {
this.networkInterfaceIdss = networkInterfaceIdss;
if (networkInterfaceIdss != null) {
for (int i = 0; i < networkInterfaceIdss.size(); i++) {
putQueryParameter("NetworkInterfaceIds." + (i + 1) , networkInterfaceIdss.get(i));
}
}
}
public String getTransitRouterMulticastDomainId() {
return this.transitRouterMulticastDomainId;
}
public void setTransitRouterMulticastDomainId(String transitRouterMulticastDomainId) {
this.transitRouterMulticastDomainId = transitRouterMulticastDomainId;
if(transitRouterMulticastDomainId != null){
putQueryParameter("TransitRouterMulticastDomainId", transitRouterMulticastDomainId);
}
}
public String getGroupIpAddress() {
return this.groupIpAddress;
}
public void setGroupIpAddress(String groupIpAddress) {
this.groupIpAddress = groupIpAddress;
if(groupIpAddress != null){
putQueryParameter("GroupIpAddress", groupIpAddress);
}
}
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 List<String> getPeerTransitRouterMulticastDomainss() {
return this.peerTransitRouterMulticastDomainss;
}
public void setPeerTransitRouterMulticastDomainss(List<String> peerTransitRouterMulticastDomainss) {
this.peerTransitRouterMulticastDomainss = peerTransitRouterMulticastDomainss;
if (peerTransitRouterMulticastDomainss != null) {
for (int i = 0; i < peerTransitRouterMulticastDomainss.size(); i++) {
putQueryParameter("PeerTransitRouterMulticastDomains." + (i + 1) , peerTransitRouterMulticastDomainss.get(i));
}
}
}
public Long getOwnerId() {
return this.ownerId;
}
public void setOwnerId(Long ownerId) {
this.ownerId = ownerId;
if(ownerId != null){
putQueryParameter("OwnerId", ownerId.toString());
}
}
@Override
public Class<DeregisterTransitRouterMulticastGroupMembersResponse> getResponseClass() {
return DeregisterTransitRouterMulticastGroupMembersResponse.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/DeregisterTransitRouterMulticastGroupMembersResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS 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.DeregisterTransitRouterMulticastGroupMembersResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DeregisterTransitRouterMulticastGroupMembersResponse extends AcsResponse {
private String requestId;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
@Override
public DeregisterTransitRouterMulticastGroupMembersResponse getInstance(UnmarshallerContext context) {
return DeregisterTransitRouterMulticastGroupMembersResponseUnmarshaller.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/DeregisterTransitRouterMulticastGroupSourcesRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS 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 DeregisterTransitRouterMulticastGroupSourcesRequest extends RpcAcsRequest<DeregisterTransitRouterMulticastGroupSourcesResponse> {
private Long resourceOwnerId;
private String clientToken;
private List<String> networkInterfaceIdss;
private String transitRouterMulticastDomainId;
private String groupIpAddress;
private Boolean dryRun;
private String resourceOwnerAccount;
private String ownerAccount;
private Long ownerId;
public DeregisterTransitRouterMulticastGroupSourcesRequest() {
super("Cbn", "2017-09-12", "DeregisterTransitRouterMulticastGroupSources", "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<String> getNetworkInterfaceIdss() {
return this.networkInterfaceIdss;
}
public void setNetworkInterfaceIdss(List<String> networkInterfaceIdss) {
this.networkInterfaceIdss = networkInterfaceIdss;
if (networkInterfaceIdss != null) {
for (int i = 0; i < networkInterfaceIdss.size(); i++) {
putQueryParameter("NetworkInterfaceIds." + (i + 1) , networkInterfaceIdss.get(i));
}
}
}
public String getTransitRouterMulticastDomainId() {
return this.transitRouterMulticastDomainId;
}
public void setTransitRouterMulticastDomainId(String transitRouterMulticastDomainId) {
this.transitRouterMulticastDomainId = transitRouterMulticastDomainId;
if(transitRouterMulticastDomainId != null){
putQueryParameter("TransitRouterMulticastDomainId", transitRouterMulticastDomainId);
}
}
public String getGroupIpAddress() {
return this.groupIpAddress;
}
public void setGroupIpAddress(String groupIpAddress) {
this.groupIpAddress = groupIpAddress;
if(groupIpAddress != null){
putQueryParameter("GroupIpAddress", groupIpAddress);
}
}
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());
}
}
@Override
public Class<DeregisterTransitRouterMulticastGroupSourcesResponse> getResponseClass() {
return DeregisterTransitRouterMulticastGroupSourcesResponse.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/DeregisterTransitRouterMulticastGroupSourcesResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS 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.DeregisterTransitRouterMulticastGroupSourcesResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DeregisterTransitRouterMulticastGroupSourcesResponse extends AcsResponse {
private String requestId;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
@Override
public DeregisterTransitRouterMulticastGroupSourcesResponse getInstance(UnmarshallerContext context) {
return DeregisterTransitRouterMulticastGroupSourcesResponseUnmarshaller.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/DescribeCenAttachedChildInstanceAttributeRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS 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 DescribeCenAttachedChildInstanceAttributeRequest extends RpcAcsRequest<DescribeCenAttachedChildInstanceAttributeResponse> {
private Long resourceOwnerId;
private String cenId;
private String childInstanceRegionId;
private String resourceOwnerAccount;
private String ownerAccount;
private Long ownerId;
private String childInstanceType;
private String childInstanceId;
public DescribeCenAttachedChildInstanceAttributeRequest() {
super("Cbn", "2017-09-12", "DescribeCenAttachedChildInstanceAttribute", "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 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 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);
}
}
@Override
public Class<DescribeCenAttachedChildInstanceAttributeResponse> getResponseClass() {
return DescribeCenAttachedChildInstanceAttributeResponse.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/DescribeCenAttachedChildInstanceAttributeResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS 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 java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.cbn.transform.v20170912.DescribeCenAttachedChildInstanceAttributeResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeCenAttachedChildInstanceAttributeResponse extends AcsResponse {
private String status;
private String childInstanceType;
private String childInstanceRegionId;
private String requestId;
private Long childInstanceOwnerId;
private String childInstanceId;
private String cenId;
private String childInstanceName;
private String ipv6StatusInCen;
private String childInstanceAttachTime;
private List<ChildInstanceRouteTable> childInstanceRouteTables;
private ChildInstanceAttributes childInstanceAttributes;
public String getStatus() {
return this.status;
}
public void setStatus(String status) {
this.status = status;
}
public String getChildInstanceType() {
return this.childInstanceType;
}
public void setChildInstanceType(String childInstanceType) {
this.childInstanceType = childInstanceType;
}
public String getChildInstanceRegionId() {
return this.childInstanceRegionId;
}
public void setChildInstanceRegionId(String childInstanceRegionId) {
this.childInstanceRegionId = childInstanceRegionId;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public Long getChildInstanceOwnerId() {
return this.childInstanceOwnerId;
}
public void setChildInstanceOwnerId(Long childInstanceOwnerId) {
this.childInstanceOwnerId = childInstanceOwnerId;
}
public String getChildInstanceId() {
return this.childInstanceId;
}
public void setChildInstanceId(String childInstanceId) {
this.childInstanceId = childInstanceId;
}
public String getCenId() {
return this.cenId;
}
public void setCenId(String cenId) {
this.cenId = cenId;
}
public String getChildInstanceName() {
return this.childInstanceName;
}
public void setChildInstanceName(String childInstanceName) {
this.childInstanceName = childInstanceName;
}
public String getIpv6StatusInCen() {
return this.ipv6StatusInCen;
}
public void setIpv6StatusInCen(String ipv6StatusInCen) {
this.ipv6StatusInCen = ipv6StatusInCen;
}
public String getChildInstanceAttachTime() {
return this.childInstanceAttachTime;
}
public void setChildInstanceAttachTime(String childInstanceAttachTime) {
this.childInstanceAttachTime = childInstanceAttachTime;
}
public List<ChildInstanceRouteTable> getChildInstanceRouteTables() {
return this.childInstanceRouteTables;
}
public void setChildInstanceRouteTables(List<ChildInstanceRouteTable> childInstanceRouteTables) {
this.childInstanceRouteTables = childInstanceRouteTables;
}
public ChildInstanceAttributes getChildInstanceAttributes() {
return this.childInstanceAttributes;
}
public void setChildInstanceAttributes(ChildInstanceAttributes childInstanceAttributes) {
this.childInstanceAttributes = childInstanceAttributes;
}
public static class ChildInstanceRouteTable {
private String routeTableId;
private String routeTableType;
public String getRouteTableId() {
return this.routeTableId;
}
public void setRouteTableId(String routeTableId) {
this.routeTableId = routeTableId;
}
public String getRouteTableType() {
return this.routeTableType;
}
public void setRouteTableType(String routeTableType) {
this.routeTableType = routeTableType;
}
}
public static class ChildInstanceAttributes {
private String cidrBlock;
private String ipv6CidrBlock;
private List<Ipv6CidrBlock> ipv6CidrBlocks;
private List<String> secondaryCidrBlocks;
public String getCidrBlock() {
return this.cidrBlock;
}
public void setCidrBlock(String cidrBlock) {
this.cidrBlock = cidrBlock;
}
public String getIpv6CidrBlock() {
return this.ipv6CidrBlock;
}
public void setIpv6CidrBlock(String ipv6CidrBlock) {
this.ipv6CidrBlock = ipv6CidrBlock;
}
public List<Ipv6CidrBlock> getIpv6CidrBlocks() {
return this.ipv6CidrBlocks;
}
public void setIpv6CidrBlocks(List<Ipv6CidrBlock> ipv6CidrBlocks) {
this.ipv6CidrBlocks = ipv6CidrBlocks;
}
public List<String> getSecondaryCidrBlocks() {
return this.secondaryCidrBlocks;
}
public void setSecondaryCidrBlocks(List<String> secondaryCidrBlocks) {
this.secondaryCidrBlocks = secondaryCidrBlocks;
}
public static class Ipv6CidrBlock {
private String ipv6Isp;
private String ipv6CidrBlock;
public String getIpv6Isp() {
return this.ipv6Isp;
}
public void setIpv6Isp(String ipv6Isp) {
this.ipv6Isp = ipv6Isp;
}
public String getIpv6CidrBlock() {
return this.ipv6CidrBlock;
}
public void setIpv6CidrBlock(String ipv6CidrBlock) {
this.ipv6CidrBlock = ipv6CidrBlock;
}
}
}
@Override
public DescribeCenAttachedChildInstanceAttributeResponse getInstance(UnmarshallerContext context) {
return DescribeCenAttachedChildInstanceAttributeResponseUnmarshaller.unmarshall(this, context);
}
}
|
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/DescribeCenAttachedChildInstancesRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS 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 DescribeCenAttachedChildInstancesRequest extends RpcAcsRequest<DescribeCenAttachedChildInstancesResponse> {
private Long resourceOwnerId;
private String cenId;
private Integer pageNumber;
private Integer pageSize;
private String childInstanceRegionId;
private String resourceOwnerAccount;
private String ownerAccount;
private Long ownerId;
private String childInstanceType;
public DescribeCenAttachedChildInstancesRequest() {
super("Cbn", "2017-09-12", "DescribeCenAttachedChildInstances", "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 Integer getPageNumber() {
return this.pageNumber;
}
public void setPageNumber(Integer pageNumber) {
this.pageNumber = pageNumber;
if(pageNumber != null){
putQueryParameter("PageNumber", pageNumber.toString());
}
}
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
if(pageSize != null){
putQueryParameter("PageSize", pageSize.toString());
}
}
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 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 getChildInstanceType() {
return this.childInstanceType;
}
public void setChildInstanceType(String childInstanceType) {
this.childInstanceType = childInstanceType;
if(childInstanceType != null){
putQueryParameter("ChildInstanceType", childInstanceType);
}
}
@Override
public Class<DescribeCenAttachedChildInstancesResponse> getResponseClass() {
return DescribeCenAttachedChildInstancesResponse.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/DescribeCenAttachedChildInstancesResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS 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 java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.cbn.transform.v20170912.DescribeCenAttachedChildInstancesResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeCenAttachedChildInstancesResponse extends AcsResponse {
private Integer pageSize;
private String requestId;
private Integer pageNumber;
private Integer totalCount;
private List<ChildInstance> childInstances;
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public Integer getPageNumber() {
return this.pageNumber;
}
public void setPageNumber(Integer pageNumber) {
this.pageNumber = pageNumber;
}
public Integer getTotalCount() {
return this.totalCount;
}
public void setTotalCount(Integer totalCount) {
this.totalCount = totalCount;
}
public List<ChildInstance> getChildInstances() {
return this.childInstances;
}
public void setChildInstances(List<ChildInstance> childInstances) {
this.childInstances = childInstances;
}
public static class ChildInstance {
private String childInstanceType;
private String status;
private String childInstanceRegionId;
private Long childInstanceOwnerId;
private String childInstanceId;
private String cenId;
private String childInstanceAttachTime;
public String getChildInstanceType() {
return this.childInstanceType;
}
public void setChildInstanceType(String childInstanceType) {
this.childInstanceType = childInstanceType;
}
public String getStatus() {
return this.status;
}
public void setStatus(String status) {
this.status = status;
}
public String getChildInstanceRegionId() {
return this.childInstanceRegionId;
}
public void setChildInstanceRegionId(String childInstanceRegionId) {
this.childInstanceRegionId = childInstanceRegionId;
}
public Long getChildInstanceOwnerId() {
return this.childInstanceOwnerId;
}
public void setChildInstanceOwnerId(Long childInstanceOwnerId) {
this.childInstanceOwnerId = childInstanceOwnerId;
}
public String getChildInstanceId() {
return this.childInstanceId;
}
public void setChildInstanceId(String childInstanceId) {
this.childInstanceId = childInstanceId;
}
public String getCenId() {
return this.cenId;
}
public void setCenId(String cenId) {
this.cenId = cenId;
}
public String getChildInstanceAttachTime() {
return this.childInstanceAttachTime;
}
public void setChildInstanceAttachTime(String childInstanceAttachTime) {
this.childInstanceAttachTime = childInstanceAttachTime;
}
}
@Override
public DescribeCenAttachedChildInstancesResponse getInstance(UnmarshallerContext context) {
return DescribeCenAttachedChildInstancesResponseUnmarshaller.unmarshall(this, context);
}
}
|
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/DescribeCenBandwidthPackagesRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS 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 DescribeCenBandwidthPackagesRequest extends RpcAcsRequest<DescribeCenBandwidthPackagesResponse> {
private Long resourceOwnerId;
private Boolean includeReservationData;
private Integer pageNumber;
private Boolean isOrKey;
private String resourceGroupId;
private Integer pageSize;
private List<Tag> tags;
private String resourceOwnerAccount;
private String ownerAccount;
private Long ownerId;
private List<Filter> filters;
public DescribeCenBandwidthPackagesRequest() {
super("Cbn", "2017-09-12", "DescribeCenBandwidthPackages", "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 Boolean getIncludeReservationData() {
return this.includeReservationData;
}
public void setIncludeReservationData(Boolean includeReservationData) {
this.includeReservationData = includeReservationData;
if(includeReservationData != null){
putQueryParameter("IncludeReservationData", includeReservationData.toString());
}
}
public Integer getPageNumber() {
return this.pageNumber;
}
public void setPageNumber(Integer pageNumber) {
this.pageNumber = pageNumber;
if(pageNumber != null){
putQueryParameter("PageNumber", pageNumber.toString());
}
}
public Boolean getIsOrKey() {
return this.isOrKey;
}
public void setIsOrKey(Boolean isOrKey) {
this.isOrKey = isOrKey;
if(isOrKey != null){
putQueryParameter("IsOrKey", isOrKey.toString());
}
}
public String getResourceGroupId() {
return this.resourceGroupId;
}
public void setResourceGroupId(String resourceGroupId) {
this.resourceGroupId = resourceGroupId;
if(resourceGroupId != null){
putQueryParameter("ResourceGroupId", resourceGroupId);
}
}
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
if(pageSize != null){
putQueryParameter("PageSize", pageSize.toString());
}
}
public List<Tag> getTags() {
return this.tags;
}
public void setTags(List<Tag> tags) {
this.tags = tags;
if (tags != null) {
for (int depth1 = 0; depth1 < tags.size(); depth1++) {
putQueryParameter("Tag." + (depth1 + 1) + ".Value" , tags.get(depth1).getValue());
putQueryParameter("Tag." + (depth1 + 1) + ".Key" , tags.get(depth1).getKey());
}
}
}
public String 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<Filter> getFilters() {
return this.filters;
}
public void setFilters(List<Filter> filters) {
this.filters = filters;
if (filters != null) {
for (int depth1 = 0; depth1 < filters.size(); depth1++) {
if (filters.get(depth1).getValues() != null) {
for (int i = 0; i < filters.get(depth1).getValues().size(); i++) {
putQueryParameter("Filter." + (depth1 + 1) + ".Value." + (i + 1) , filters.get(depth1).getValues().get(i));
}
}
putQueryParameter("Filter." + (depth1 + 1) + ".Key" , filters.get(depth1).getKey());
}
}
}
public static class Tag {
private String value;
private String key;
public String getValue() {
return this.value;
}
public void setValue(String value) {
this.value = value;
}
public String getKey() {
return this.key;
}
public void setKey(String key) {
this.key = key;
}
}
public static class Filter {
private List<String> values;
private String key;
public List<String> getValues() {
return this.values;
}
public void setValues(List<String> values) {
this.values = values;
}
public String getKey() {
return this.key;
}
public void setKey(String key) {
this.key = key;
}
}
@Override
public Class<DescribeCenBandwidthPackagesResponse> getResponseClass() {
return DescribeCenBandwidthPackagesResponse.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/DescribeCenBandwidthPackagesResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS 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 java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.cbn.transform.v20170912.DescribeCenBandwidthPackagesResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeCenBandwidthPackagesResponse extends AcsResponse {
private Integer pageSize;
private String requestId;
private Integer pageNumber;
private Integer totalCount;
private List<CenBandwidthPackage> cenBandwidthPackages;
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public Integer getPageNumber() {
return this.pageNumber;
}
public void setPageNumber(Integer pageNumber) {
this.pageNumber = pageNumber;
}
public Integer getTotalCount() {
return this.totalCount;
}
public void setTotalCount(Integer totalCount) {
this.totalCount = totalCount;
}
public List<CenBandwidthPackage> getCenBandwidthPackages() {
return this.cenBandwidthPackages;
}
public void setCenBandwidthPackages(List<CenBandwidthPackage> cenBandwidthPackages) {
this.cenBandwidthPackages = cenBandwidthPackages;
}
public static class CenBandwidthPackage {
private String reservationActiveTime;
private String status;
private String creationTime;
private String reservationOrderType;
private String bandwidthPackageChargeType;
private String cenBandwidthPackageId;
private String reservationInternetChargeType;
private String ratio;
private String geographicRegionAId;
private String typeFor95;
private Long bandwidth;
private String description;
private String expiredTime;
private String reservationBandwidth;
private String geographicSpanId;
private String geographicRegionBId;
private String resourceGroupId;
private Boolean isCrossBorder;
private String businessStatus;
private String name;
private String hasReservationData;
private String serviceType;
private List<OrginInterRegionBandwidthLimit> orginInterRegionBandwidthLimits;
private List<Tag> tags;
private List<String> cenIds;
public String getReservationActiveTime() {
return this.reservationActiveTime;
}
public void setReservationActiveTime(String reservationActiveTime) {
this.reservationActiveTime = reservationActiveTime;
}
public String getStatus() {
return this.status;
}
public void setStatus(String status) {
this.status = status;
}
public String getCreationTime() {
return this.creationTime;
}
public void setCreationTime(String creationTime) {
this.creationTime = creationTime;
}
public String getReservationOrderType() {
return this.reservationOrderType;
}
public void setReservationOrderType(String reservationOrderType) {
this.reservationOrderType = reservationOrderType;
}
public String getBandwidthPackageChargeType() {
return this.bandwidthPackageChargeType;
}
public void setBandwidthPackageChargeType(String bandwidthPackageChargeType) {
this.bandwidthPackageChargeType = bandwidthPackageChargeType;
}
public String getCenBandwidthPackageId() {
return this.cenBandwidthPackageId;
}
public void setCenBandwidthPackageId(String cenBandwidthPackageId) {
this.cenBandwidthPackageId = cenBandwidthPackageId;
}
public String getReservationInternetChargeType() {
return this.reservationInternetChargeType;
}
public void setReservationInternetChargeType(String reservationInternetChargeType) {
this.reservationInternetChargeType = reservationInternetChargeType;
}
public String getRatio() {
return this.ratio;
}
public void setRatio(String ratio) {
this.ratio = ratio;
}
public String getGeographicRegionAId() {
return this.geographicRegionAId;
}
public void setGeographicRegionAId(String geographicRegionAId) {
this.geographicRegionAId = geographicRegionAId;
}
public String getTypeFor95() {
return this.typeFor95;
}
public void setTypeFor95(String typeFor95) {
this.typeFor95 = typeFor95;
}
public Long getBandwidth() {
return this.bandwidth;
}
public void setBandwidth(Long bandwidth) {
this.bandwidth = bandwidth;
}
public String getDescription() {
return this.description;
}
public void setDescription(String description) {
this.description = description;
}
public String getExpiredTime() {
return this.expiredTime;
}
public void setExpiredTime(String expiredTime) {
this.expiredTime = expiredTime;
}
public String getReservationBandwidth() {
return this.reservationBandwidth;
}
public void setReservationBandwidth(String reservationBandwidth) {
this.reservationBandwidth = reservationBandwidth;
}
public String getGeographicSpanId() {
return this.geographicSpanId;
}
public void setGeographicSpanId(String geographicSpanId) {
this.geographicSpanId = geographicSpanId;
}
public String getGeographicRegionBId() {
return this.geographicRegionBId;
}
public void setGeographicRegionBId(String geographicRegionBId) {
this.geographicRegionBId = geographicRegionBId;
}
public String getResourceGroupId() {
return this.resourceGroupId;
}
public void setResourceGroupId(String resourceGroupId) {
this.resourceGroupId = resourceGroupId;
}
public Boolean getIsCrossBorder() {
return this.isCrossBorder;
}
public void setIsCrossBorder(Boolean isCrossBorder) {
this.isCrossBorder = isCrossBorder;
}
public String getBusinessStatus() {
return this.businessStatus;
}
public void setBusinessStatus(String businessStatus) {
this.businessStatus = businessStatus;
}
public String getName() {
return this.name;
}
public void setName(String name) {
this.name = name;
}
public String getHasReservationData() {
return this.hasReservationData;
}
public void setHasReservationData(String hasReservationData) {
this.hasReservationData = hasReservationData;
}
public String getServiceType() {
return this.serviceType;
}
public void setServiceType(String serviceType) {
this.serviceType = serviceType;
}
public List<OrginInterRegionBandwidthLimit> getOrginInterRegionBandwidthLimits() {
return this.orginInterRegionBandwidthLimits;
}
public void setOrginInterRegionBandwidthLimits(List<OrginInterRegionBandwidthLimit> orginInterRegionBandwidthLimits) {
this.orginInterRegionBandwidthLimits = orginInterRegionBandwidthLimits;
}
public List<Tag> getTags() {
return this.tags;
}
public void setTags(List<Tag> tags) {
this.tags = tags;
}
public List<String> getCenIds() {
return this.cenIds;
}
public void setCenIds(List<String> cenIds) {
this.cenIds = cenIds;
}
public static class OrginInterRegionBandwidthLimit {
private String bandwidthLimit;
private String oppositeRegionId;
private String geographicSpanId;
private String localRegionId;
public String getBandwidthLimit() {
return this.bandwidthLimit;
}
public void setBandwidthLimit(String bandwidthLimit) {
this.bandwidthLimit = bandwidthLimit;
}
public String getOppositeRegionId() {
return this.oppositeRegionId;
}
public void setOppositeRegionId(String oppositeRegionId) {
this.oppositeRegionId = oppositeRegionId;
}
public String getGeographicSpanId() {
return this.geographicSpanId;
}
public void setGeographicSpanId(String geographicSpanId) {
this.geographicSpanId = geographicSpanId;
}
public String getLocalRegionId() {
return this.localRegionId;
}
public void setLocalRegionId(String localRegionId) {
this.localRegionId = localRegionId;
}
}
public static class Tag {
private String key;
private String value;
public String getKey() {
return this.key;
}
public void setKey(String key) {
this.key = key;
}
public String getValue() {
return this.value;
}
public void setValue(String value) {
this.value = value;
}
}
}
@Override
public DescribeCenBandwidthPackagesResponse getInstance(UnmarshallerContext context) {
return DescribeCenBandwidthPackagesResponseUnmarshaller.unmarshall(this, context);
}
}
|
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/DescribeCenChildInstanceRouteEntriesRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS 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 DescribeCenChildInstanceRouteEntriesRequest extends RpcAcsRequest<DescribeCenChildInstanceRouteEntriesResponse> {
private Long resourceOwnerId;
private String cenId;
private Integer pageNumber;
private Integer pageSize;
private String childInstanceRegionId;
private String resourceOwnerAccount;
private String ownerAccount;
private Long ownerId;
private String childInstanceType;
private String childInstanceId;
private String childInstanceRouteTableId;
private String status;
public DescribeCenChildInstanceRouteEntriesRequest() {
super("Cbn", "2017-09-12", "DescribeCenChildInstanceRouteEntries", "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 Integer getPageNumber() {
return this.pageNumber;
}
public void setPageNumber(Integer pageNumber) {
this.pageNumber = pageNumber;
if(pageNumber != null){
putQueryParameter("PageNumber", pageNumber.toString());
}
}
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
if(pageSize != null){
putQueryParameter("PageSize", pageSize.toString());
}
}
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 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 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);
}
}
public String getStatus() {
return this.status;
}
public void setStatus(String status) {
this.status = status;
if(status != null){
putQueryParameter("Status", status);
}
}
@Override
public Class<DescribeCenChildInstanceRouteEntriesResponse> getResponseClass() {
return DescribeCenChildInstanceRouteEntriesResponse.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/DescribeCenChildInstanceRouteEntriesResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS 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 java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.cbn.transform.v20170912.DescribeCenChildInstanceRouteEntriesResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeCenChildInstanceRouteEntriesResponse extends AcsResponse {
private Integer pageSize;
private String requestId;
private Integer pageNumber;
private Integer totalCount;
private List<CenRouteEntry> cenRouteEntries;
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public Integer getPageNumber() {
return this.pageNumber;
}
public void setPageNumber(Integer pageNumber) {
this.pageNumber = pageNumber;
}
public Integer getTotalCount() {
return this.totalCount;
}
public void setTotalCount(Integer totalCount) {
this.totalCount = totalCount;
}
public List<CenRouteEntry> getCenRouteEntries() {
return this.cenRouteEntries;
}
public void setCenRouteEntries(List<CenRouteEntry> cenRouteEntries) {
this.cenRouteEntries = cenRouteEntries;
}
public static class CenRouteEntry {
private String status;
private String type;
private String publishStatus;
private String nextHopType;
private Boolean operationalMode;
private String nextHopRegionId;
private String nextHopInstanceId;
private String destinationCidrBlock;
private String routeTableId;
private List<CenRouteMapRecord> cenRouteMapRecords;
private List<Conflict> conflicts;
private List<String> communities;
private List<String> asPaths;
public String getStatus() {
return this.status;
}
public void setStatus(String status) {
this.status = status;
}
public String getType() {
return this.type;
}
public void setType(String type) {
this.type = type;
}
public String getPublishStatus() {
return this.publishStatus;
}
public void setPublishStatus(String publishStatus) {
this.publishStatus = publishStatus;
}
public String getNextHopType() {
return this.nextHopType;
}
public void setNextHopType(String nextHopType) {
this.nextHopType = nextHopType;
}
public Boolean getOperationalMode() {
return this.operationalMode;
}
public void setOperationalMode(Boolean operationalMode) {
this.operationalMode = operationalMode;
}
public String getNextHopRegionId() {
return this.nextHopRegionId;
}
public void setNextHopRegionId(String nextHopRegionId) {
this.nextHopRegionId = nextHopRegionId;
}
public String getNextHopInstanceId() {
return this.nextHopInstanceId;
}
public void setNextHopInstanceId(String nextHopInstanceId) {
this.nextHopInstanceId = nextHopInstanceId;
}
public String getDestinationCidrBlock() {
return this.destinationCidrBlock;
}
public void setDestinationCidrBlock(String destinationCidrBlock) {
this.destinationCidrBlock = destinationCidrBlock;
}
public String getRouteTableId() {
return this.routeTableId;
}
public void setRouteTableId(String routeTableId) {
this.routeTableId = routeTableId;
}
public List<CenRouteMapRecord> getCenRouteMapRecords() {
return this.cenRouteMapRecords;
}
public void setCenRouteMapRecords(List<CenRouteMapRecord> cenRouteMapRecords) {
this.cenRouteMapRecords = cenRouteMapRecords;
}
public List<Conflict> getConflicts() {
return this.conflicts;
}
public void setConflicts(List<Conflict> conflicts) {
this.conflicts = conflicts;
}
public List<String> getCommunities() {
return this.communities;
}
public void setCommunities(List<String> communities) {
this.communities = communities;
}
public List<String> getAsPaths() {
return this.asPaths;
}
public void setAsPaths(List<String> asPaths) {
this.asPaths = asPaths;
}
public static class CenRouteMapRecord {
private String routeMapId;
private String regionId;
public String getRouteMapId() {
return this.routeMapId;
}
public void setRouteMapId(String routeMapId) {
this.routeMapId = routeMapId;
}
public String getRegionId() {
return this.regionId;
}
public void setRegionId(String regionId) {
this.regionId = regionId;
}
}
public static class Conflict {
private String status;
private String destinationCidrBlock;
private String instanceId;
private String instanceType;
private String regionId;
public String getStatus() {
return this.status;
}
public void setStatus(String status) {
this.status = status;
}
public String getDestinationCidrBlock() {
return this.destinationCidrBlock;
}
public void setDestinationCidrBlock(String destinationCidrBlock) {
this.destinationCidrBlock = destinationCidrBlock;
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
}
public String getInstanceType() {
return this.instanceType;
}
public void setInstanceType(String instanceType) {
this.instanceType = instanceType;
}
public String getRegionId() {
return this.regionId;
}
public void setRegionId(String regionId) {
this.regionId = regionId;
}
}
}
@Override
public DescribeCenChildInstanceRouteEntriesResponse getInstance(UnmarshallerContext context) {
return DescribeCenChildInstanceRouteEntriesResponseUnmarshaller.unmarshall(this, context);
}
}
|
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/DescribeCenGeographicSpanRemainingBandwidthRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS 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 DescribeCenGeographicSpanRemainingBandwidthRequest extends RpcAcsRequest<DescribeCenGeographicSpanRemainingBandwidthResponse> {
private Long resourceOwnerId;
private String cenId;
private Integer pageNumber;
private Integer pageSize;
private String geographicRegionBId;
private String geographicRegionAId;
private String resourceOwnerAccount;
private String ownerAccount;
private Long ownerId;
public DescribeCenGeographicSpanRemainingBandwidthRequest() {
super("Cbn", "2017-09-12", "DescribeCenGeographicSpanRemainingBandwidth", "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 Integer getPageNumber() {
return this.pageNumber;
}
public void setPageNumber(Integer pageNumber) {
this.pageNumber = pageNumber;
if(pageNumber != null){
putQueryParameter("PageNumber", pageNumber.toString());
}
}
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
if(pageSize != null){
putQueryParameter("PageSize", pageSize.toString());
}
}
public String getGeographicRegionBId() {
return this.geographicRegionBId;
}
public void setGeographicRegionBId(String geographicRegionBId) {
this.geographicRegionBId = geographicRegionBId;
if(geographicRegionBId != null){
putQueryParameter("GeographicRegionBId", geographicRegionBId);
}
}
public String getGeographicRegionAId() {
return this.geographicRegionAId;
}
public void setGeographicRegionAId(String geographicRegionAId) {
this.geographicRegionAId = geographicRegionAId;
if(geographicRegionAId != null){
putQueryParameter("GeographicRegionAId", geographicRegionAId);
}
}
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());
}
}
@Override
public Class<DescribeCenGeographicSpanRemainingBandwidthResponse> getResponseClass() {
return DescribeCenGeographicSpanRemainingBandwidthResponse.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/DescribeCenGeographicSpanRemainingBandwidthResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS 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.DescribeCenGeographicSpanRemainingBandwidthResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeCenGeographicSpanRemainingBandwidthResponse extends AcsResponse {
private Long remainingBandwidth;
private String requestId;
public Long getRemainingBandwidth() {
return this.remainingBandwidth;
}
public void setRemainingBandwidth(Long remainingBandwidth) {
this.remainingBandwidth = remainingBandwidth;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
@Override
public DescribeCenGeographicSpanRemainingBandwidthResponse getInstance(UnmarshallerContext context) {
return DescribeCenGeographicSpanRemainingBandwidthResponseUnmarshaller.unmarshall(this, context);
}
}
|
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/DescribeCenGeographicSpansRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS 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 DescribeCenGeographicSpansRequest extends RpcAcsRequest<DescribeCenGeographicSpansResponse> {
private Long resourceOwnerId;
private Integer pageNumber;
private String geographicSpanId;
private Integer pageSize;
private String resourceOwnerAccount;
private String ownerAccount;
private Long ownerId;
public DescribeCenGeographicSpansRequest() {
super("Cbn", "2017-09-12", "DescribeCenGeographicSpans", "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 Integer getPageNumber() {
return this.pageNumber;
}
public void setPageNumber(Integer pageNumber) {
this.pageNumber = pageNumber;
if(pageNumber != null){
putQueryParameter("PageNumber", pageNumber.toString());
}
}
public String getGeographicSpanId() {
return this.geographicSpanId;
}
public void setGeographicSpanId(String geographicSpanId) {
this.geographicSpanId = geographicSpanId;
if(geographicSpanId != null){
putQueryParameter("GeographicSpanId", geographicSpanId);
}
}
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
if(pageSize != null){
putQueryParameter("PageSize", pageSize.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());
}
}
@Override
public Class<DescribeCenGeographicSpansResponse> getResponseClass() {
return DescribeCenGeographicSpansResponse.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/DescribeCenGeographicSpansResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS 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 java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.cbn.transform.v20170912.DescribeCenGeographicSpansResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeCenGeographicSpansResponse extends AcsResponse {
private Integer pageSize;
private String requestId;
private Integer pageNumber;
private Integer totalCount;
private List<GeographicSpanModel> geographicSpanModels;
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public Integer getPageNumber() {
return this.pageNumber;
}
public void setPageNumber(Integer pageNumber) {
this.pageNumber = pageNumber;
}
public Integer getTotalCount() {
return this.totalCount;
}
public void setTotalCount(Integer totalCount) {
this.totalCount = totalCount;
}
public List<GeographicSpanModel> getGeographicSpanModels() {
return this.geographicSpanModels;
}
public void setGeographicSpanModels(List<GeographicSpanModel> geographicSpanModels) {
this.geographicSpanModels = geographicSpanModels;
}
public static class GeographicSpanModel {
private String localGeoRegionId;
private String geographicSpanId;
private String oppositeGeoRegionId;
public String getLocalGeoRegionId() {
return this.localGeoRegionId;
}
public void setLocalGeoRegionId(String localGeoRegionId) {
this.localGeoRegionId = localGeoRegionId;
}
public String getGeographicSpanId() {
return this.geographicSpanId;
}
public void setGeographicSpanId(String geographicSpanId) {
this.geographicSpanId = geographicSpanId;
}
public String getOppositeGeoRegionId() {
return this.oppositeGeoRegionId;
}
public void setOppositeGeoRegionId(String oppositeGeoRegionId) {
this.oppositeGeoRegionId = oppositeGeoRegionId;
}
}
@Override
public DescribeCenGeographicSpansResponse getInstance(UnmarshallerContext context) {
return DescribeCenGeographicSpansResponseUnmarshaller.unmarshall(this, context);
}
}
|
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/DescribeCenInterRegionBandwidthLimitsRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS 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 DescribeCenInterRegionBandwidthLimitsRequest extends RpcAcsRequest<DescribeCenInterRegionBandwidthLimitsResponse> {
private Long resourceOwnerId;
private String cenId;
private Integer pageNumber;
private String trRegionId;
private Integer pageSize;
private String resourceOwnerAccount;
private String ownerAccount;
private Long ownerId;
public DescribeCenInterRegionBandwidthLimitsRequest() {
super("Cbn", "2017-09-12", "DescribeCenInterRegionBandwidthLimits", "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 Integer getPageNumber() {
return this.pageNumber;
}
public void setPageNumber(Integer pageNumber) {
this.pageNumber = pageNumber;
if(pageNumber != null){
putQueryParameter("PageNumber", pageNumber.toString());
}
}
public String getTrRegionId() {
return this.trRegionId;
}
public void setTrRegionId(String trRegionId) {
this.trRegionId = trRegionId;
if(trRegionId != null){
putQueryParameter("TrRegionId", trRegionId);
}
}
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
if(pageSize != null){
putQueryParameter("PageSize", pageSize.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());
}
}
@Override
public Class<DescribeCenInterRegionBandwidthLimitsResponse> getResponseClass() {
return DescribeCenInterRegionBandwidthLimitsResponse.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/DescribeCenInterRegionBandwidthLimitsResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS 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 java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.cbn.transform.v20170912.DescribeCenInterRegionBandwidthLimitsResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeCenInterRegionBandwidthLimitsResponse extends AcsResponse {
private Integer pageSize;
private String requestId;
private Integer pageNumber;
private Integer totalCount;
private List<CenInterRegionBandwidthLimit> cenInterRegionBandwidthLimits;
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public Integer getPageNumber() {
return this.pageNumber;
}
public void setPageNumber(Integer pageNumber) {
this.pageNumber = pageNumber;
}
public Integer getTotalCount() {
return this.totalCount;
}
public void setTotalCount(Integer totalCount) {
this.totalCount = totalCount;
}
public List<CenInterRegionBandwidthLimit> getCenInterRegionBandwidthLimits() {
return this.cenInterRegionBandwidthLimits;
}
public void setCenInterRegionBandwidthLimits(List<CenInterRegionBandwidthLimit> cenInterRegionBandwidthLimits) {
this.cenInterRegionBandwidthLimits = cenInterRegionBandwidthLimits;
}
public static class CenInterRegionBandwidthLimit {
private String transitRouterAttachmentId;
private String status;
private String bandwidthPackageId;
private String oppositeRegionId;
private String geographicSpanId;
private String cenId;
private String localRegionId;
private Long bandwidthLimit;
public String getTransitRouterAttachmentId() {
return this.transitRouterAttachmentId;
}
public void setTransitRouterAttachmentId(String transitRouterAttachmentId) {
this.transitRouterAttachmentId = transitRouterAttachmentId;
}
public String getStatus() {
return this.status;
}
public void setStatus(String status) {
this.status = status;
}
public String getBandwidthPackageId() {
return this.bandwidthPackageId;
}
public void setBandwidthPackageId(String bandwidthPackageId) {
this.bandwidthPackageId = bandwidthPackageId;
}
public String getOppositeRegionId() {
return this.oppositeRegionId;
}
public void setOppositeRegionId(String oppositeRegionId) {
this.oppositeRegionId = oppositeRegionId;
}
public String getGeographicSpanId() {
return this.geographicSpanId;
}
public void setGeographicSpanId(String geographicSpanId) {
this.geographicSpanId = geographicSpanId;
}
public String getCenId() {
return this.cenId;
}
public void setCenId(String cenId) {
this.cenId = cenId;
}
public String getLocalRegionId() {
return this.localRegionId;
}
public void setLocalRegionId(String localRegionId) {
this.localRegionId = localRegionId;
}
public Long getBandwidthLimit() {
return this.bandwidthLimit;
}
public void setBandwidthLimit(Long bandwidthLimit) {
this.bandwidthLimit = bandwidthLimit;
}
}
@Override
public DescribeCenInterRegionBandwidthLimitsResponse getInstance(UnmarshallerContext context) {
return DescribeCenInterRegionBandwidthLimitsResponseUnmarshaller.unmarshall(this, context);
}
}
|
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/DescribeCenPrivateZoneRoutesRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS 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 DescribeCenPrivateZoneRoutesRequest extends RpcAcsRequest<DescribeCenPrivateZoneRoutesResponse> {
private Long resourceOwnerId;
private String cenId;
private String accessRegionId;
private Integer pageNumber;
private Integer pageSize;
private String hostRegionId;
private String resourceOwnerAccount;
public DescribeCenPrivateZoneRoutesRequest() {
super("Cbn", "2017-09-12", "DescribeCenPrivateZoneRoutes", "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 getAccessRegionId() {
return this.accessRegionId;
}
public void setAccessRegionId(String accessRegionId) {
this.accessRegionId = accessRegionId;
if(accessRegionId != null){
putQueryParameter("AccessRegionId", accessRegionId);
}
}
public Integer getPageNumber() {
return this.pageNumber;
}
public void setPageNumber(Integer pageNumber) {
this.pageNumber = pageNumber;
if(pageNumber != null){
putQueryParameter("PageNumber", pageNumber.toString());
}
}
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
if(pageSize != null){
putQueryParameter("PageSize", pageSize.toString());
}
}
public String getHostRegionId() {
return this.hostRegionId;
}
public void setHostRegionId(String hostRegionId) {
this.hostRegionId = hostRegionId;
if(hostRegionId != null){
putQueryParameter("HostRegionId", hostRegionId);
}
}
public String getResourceOwnerAccount() {
return this.resourceOwnerAccount;
}
public void setResourceOwnerAccount(String resourceOwnerAccount) {
this.resourceOwnerAccount = resourceOwnerAccount;
if(resourceOwnerAccount != null){
putQueryParameter("ResourceOwnerAccount", resourceOwnerAccount);
}
}
@Override
public Class<DescribeCenPrivateZoneRoutesResponse> getResponseClass() {
return DescribeCenPrivateZoneRoutesResponse.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/DescribeCenPrivateZoneRoutesResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS 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 java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.cbn.transform.v20170912.DescribeCenPrivateZoneRoutesResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeCenPrivateZoneRoutesResponse extends AcsResponse {
private String requestId;
private String privateZoneDnsServers;
private String cenId;
private Integer pageNumber;
private Integer pageSize;
private Integer totalCount;
private List<PrivateZoneInfo> privateZoneInfos;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public String getPrivateZoneDnsServers() {
return this.privateZoneDnsServers;
}
public void setPrivateZoneDnsServers(String privateZoneDnsServers) {
this.privateZoneDnsServers = privateZoneDnsServers;
}
public String getCenId() {
return this.cenId;
}
public void setCenId(String cenId) {
this.cenId = cenId;
}
public Integer getPageNumber() {
return this.pageNumber;
}
public void setPageNumber(Integer pageNumber) {
this.pageNumber = pageNumber;
}
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
}
public Integer getTotalCount() {
return this.totalCount;
}
public void setTotalCount(Integer totalCount) {
this.totalCount = totalCount;
}
public List<PrivateZoneInfo> getPrivateZoneInfos() {
return this.privateZoneInfos;
}
public void setPrivateZoneInfos(List<PrivateZoneInfo> privateZoneInfos) {
this.privateZoneInfos = privateZoneInfos;
}
public static class PrivateZoneInfo {
private String status;
private String accessRegionId;
private String hostRegionId;
private String hostVpcId;
public String getStatus() {
return this.status;
}
public void setStatus(String status) {
this.status = status;
}
public String getAccessRegionId() {
return this.accessRegionId;
}
public void setAccessRegionId(String accessRegionId) {
this.accessRegionId = accessRegionId;
}
public String getHostRegionId() {
return this.hostRegionId;
}
public void setHostRegionId(String hostRegionId) {
this.hostRegionId = hostRegionId;
}
public String getHostVpcId() {
return this.hostVpcId;
}
public void setHostVpcId(String hostVpcId) {
this.hostVpcId = hostVpcId;
}
}
@Override
public DescribeCenPrivateZoneRoutesResponse getInstance(UnmarshallerContext context) {
return DescribeCenPrivateZoneRoutesResponseUnmarshaller.unmarshall(this, context);
}
}
|
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/DescribeCenRegionDomainRouteEntriesRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS 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 DescribeCenRegionDomainRouteEntriesRequest extends RpcAcsRequest<DescribeCenRegionDomainRouteEntriesResponse> {
private Long resourceOwnerId;
private String cenId;
private Integer pageNumber;
private Integer pageSize;
private String resourceOwnerAccount;
private String ownerAccount;
private Long ownerId;
private String cenRegionId;
private String status;
public DescribeCenRegionDomainRouteEntriesRequest() {
super("Cbn", "2017-09-12", "DescribeCenRegionDomainRouteEntries", "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 Integer getPageNumber() {
return this.pageNumber;
}
public void setPageNumber(Integer pageNumber) {
this.pageNumber = pageNumber;
if(pageNumber != null){
putQueryParameter("PageNumber", pageNumber.toString());
}
}
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
if(pageSize != null){
putQueryParameter("PageSize", pageSize.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 getCenRegionId() {
return this.cenRegionId;
}
public void setCenRegionId(String cenRegionId) {
this.cenRegionId = cenRegionId;
if(cenRegionId != null){
putQueryParameter("CenRegionId", cenRegionId);
}
}
public String getStatus() {
return this.status;
}
public void setStatus(String status) {
this.status = status;
if(status != null){
putQueryParameter("Status", status);
}
}
@Override
public Class<DescribeCenRegionDomainRouteEntriesResponse> getResponseClass() {
return DescribeCenRegionDomainRouteEntriesResponse.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/DescribeCenRegionDomainRouteEntriesResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS 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 java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.cbn.transform.v20170912.DescribeCenRegionDomainRouteEntriesResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeCenRegionDomainRouteEntriesResponse extends AcsResponse {
private Integer pageSize;
private String requestId;
private Integer pageNumber;
private Integer totalCount;
private List<CenRouteEntry> cenRouteEntries;
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public Integer getPageNumber() {
return this.pageNumber;
}
public void setPageNumber(Integer pageNumber) {
this.pageNumber = pageNumber;
}
public Integer getTotalCount() {
return this.totalCount;
}
public void setTotalCount(Integer totalCount) {
this.totalCount = totalCount;
}
public List<CenRouteEntry> getCenRouteEntries() {
return this.cenRouteEntries;
}
public void setCenRouteEntries(List<CenRouteEntry> cenRouteEntries) {
this.cenRouteEntries = cenRouteEntries;
}
public static class CenRouteEntry {
private String toOtherRegionStatus;
private String type;
private String status;
private String nextHopType;
private String nextHopInstanceId;
private String nextHopRegionId;
private String destinationCidrBlock;
private Integer preference;
private List<CenRouteMapRecord> cenRouteMapRecords;
private List<CenOutRouteMapRecord> cenOutRouteMapRecords;
private List<String> communities;
private List<String> asPaths;
public String getToOtherRegionStatus() {
return this.toOtherRegionStatus;
}
public void setToOtherRegionStatus(String toOtherRegionStatus) {
this.toOtherRegionStatus = toOtherRegionStatus;
}
public String getType() {
return this.type;
}
public void setType(String type) {
this.type = type;
}
public String getStatus() {
return this.status;
}
public void setStatus(String status) {
this.status = status;
}
public String getNextHopType() {
return this.nextHopType;
}
public void setNextHopType(String nextHopType) {
this.nextHopType = nextHopType;
}
public String getNextHopInstanceId() {
return this.nextHopInstanceId;
}
public void setNextHopInstanceId(String nextHopInstanceId) {
this.nextHopInstanceId = nextHopInstanceId;
}
public String getNextHopRegionId() {
return this.nextHopRegionId;
}
public void setNextHopRegionId(String nextHopRegionId) {
this.nextHopRegionId = nextHopRegionId;
}
public String getDestinationCidrBlock() {
return this.destinationCidrBlock;
}
public void setDestinationCidrBlock(String destinationCidrBlock) {
this.destinationCidrBlock = destinationCidrBlock;
}
public Integer getPreference() {
return this.preference;
}
public void setPreference(Integer preference) {
this.preference = preference;
}
public List<CenRouteMapRecord> getCenRouteMapRecords() {
return this.cenRouteMapRecords;
}
public void setCenRouteMapRecords(List<CenRouteMapRecord> cenRouteMapRecords) {
this.cenRouteMapRecords = cenRouteMapRecords;
}
public List<CenOutRouteMapRecord> getCenOutRouteMapRecords() {
return this.cenOutRouteMapRecords;
}
public void setCenOutRouteMapRecords(List<CenOutRouteMapRecord> cenOutRouteMapRecords) {
this.cenOutRouteMapRecords = cenOutRouteMapRecords;
}
public List<String> getCommunities() {
return this.communities;
}
public void setCommunities(List<String> communities) {
this.communities = communities;
}
public List<String> getAsPaths() {
return this.asPaths;
}
public void setAsPaths(List<String> asPaths) {
this.asPaths = asPaths;
}
public static class CenRouteMapRecord {
private String routeMapId;
private String regionId;
public String getRouteMapId() {
return this.routeMapId;
}
public void setRouteMapId(String routeMapId) {
this.routeMapId = routeMapId;
}
public String getRegionId() {
return this.regionId;
}
public void setRegionId(String regionId) {
this.regionId = regionId;
}
}
public static class CenOutRouteMapRecord {
private String routeMapId;
private String regionId;
public String getRouteMapId() {
return this.routeMapId;
}
public void setRouteMapId(String routeMapId) {
this.routeMapId = routeMapId;
}
public String getRegionId() {
return this.regionId;
}
public void setRegionId(String regionId) {
this.regionId = regionId;
}
}
}
@Override
public DescribeCenRegionDomainRouteEntriesResponse getInstance(UnmarshallerContext context) {
return DescribeCenRegionDomainRouteEntriesResponseUnmarshaller.unmarshall(this, context);
}
}
|
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/DescribeCenRouteMapsRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS 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 DescribeCenRouteMapsRequest extends RpcAcsRequest<DescribeCenRouteMapsResponse> {
private Long resourceOwnerId;
private String cenId;
private Integer pageNumber;
private String transitRouterRouteTableId;
private Integer pageSize;
private String transmitDirection;
private String resourceOwnerAccount;
private String ownerAccount;
private String routeMapId;
private Long ownerId;
private String cenRegionId;
public DescribeCenRouteMapsRequest() {
super("Cbn", "2017-09-12", "DescribeCenRouteMaps", "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 Integer getPageNumber() {
return this.pageNumber;
}
public void setPageNumber(Integer pageNumber) {
this.pageNumber = pageNumber;
if(pageNumber != null){
putQueryParameter("PageNumber", pageNumber.toString());
}
}
public String getTransitRouterRouteTableId() {
return this.transitRouterRouteTableId;
}
public void setTransitRouterRouteTableId(String transitRouterRouteTableId) {
this.transitRouterRouteTableId = transitRouterRouteTableId;
if(transitRouterRouteTableId != null){
putQueryParameter("TransitRouterRouteTableId", transitRouterRouteTableId);
}
}
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
if(pageSize != null){
putQueryParameter("PageSize", pageSize.toString());
}
}
public String getTransmitDirection() {
return this.transmitDirection;
}
public void setTransmitDirection(String transmitDirection) {
this.transmitDirection = transmitDirection;
if(transmitDirection != null){
putQueryParameter("TransmitDirection", transmitDirection);
}
}
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 String getRouteMapId() {
return this.routeMapId;
}
public void setRouteMapId(String routeMapId) {
this.routeMapId = routeMapId;
if(routeMapId != null){
putQueryParameter("RouteMapId", routeMapId);
}
}
public Long getOwnerId() {
return this.ownerId;
}
public void setOwnerId(Long ownerId) {
this.ownerId = ownerId;
if(ownerId != null){
putQueryParameter("OwnerId", ownerId.toString());
}
}
public String getCenRegionId() {
return this.cenRegionId;
}
public void setCenRegionId(String cenRegionId) {
this.cenRegionId = cenRegionId;
if(cenRegionId != null){
putQueryParameter("CenRegionId", cenRegionId);
}
}
@Override
public Class<DescribeCenRouteMapsResponse> getResponseClass() {
return DescribeCenRouteMapsResponse.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/DescribeCenRouteMapsResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS 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 java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.cbn.transform.v20170912.DescribeCenRouteMapsResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeCenRouteMapsResponse extends AcsResponse {
private Integer pageSize;
private String requestId;
private Integer pageNumber;
private Integer totalCount;
private List<RouteMap> routeMaps;
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public Integer getPageNumber() {
return this.pageNumber;
}
public void setPageNumber(Integer pageNumber) {
this.pageNumber = pageNumber;
}
public Integer getTotalCount() {
return this.totalCount;
}
public void setTotalCount(Integer totalCount) {
this.totalCount = totalCount;
}
public List<RouteMap> getRouteMaps() {
return this.routeMaps;
}
public void setRouteMaps(List<RouteMap> routeMaps) {
this.routeMaps = routeMaps;
}
public static class RouteMap {
private String routeMapId;
private String status;
private String transmitDirection;
private Boolean sourceInstanceIdsReverseMatch;
private String cenRegionId;
private String cenId;
private Integer priority;
private String transitRouterRouteTableId;
private String communityOperateMode;
private String mapResult;
private String communityMatchMode;
private String description;
private String asPathMatchMode;
private Integer preference;
private Boolean destinationInstanceIdsReverseMatch;
private String cidrMatchMode;
private Integer nextPriority;
private String matchAddressType;
private String gatewayZoneId;
private String gatewayRegionId;
private List<String> sourceRegionIds;
private List<String> sourceChildInstanceTypes;
private List<String> destinationRouteTableIds;
private List<String> sourceInstanceIds;
private List<String> destinationCidrBlocks;
private List<String> destinationRegionIds;
private List<String> sourceRouteTableIds;
private List<String> matchCommunitySet;
private List<String> prependAsPath;
private List<String> routeTypes;
private List<String> originalRouteTableIds;
private List<String> destinationChildInstanceTypes;
private List<String> destinationInstanceIds;
private List<String> matchAsns;
private List<String> operateCommunitySet;
private List<String> srcZoneIds;
public String getRouteMapId() {
return this.routeMapId;
}
public void setRouteMapId(String routeMapId) {
this.routeMapId = routeMapId;
}
public String getStatus() {
return this.status;
}
public void setStatus(String status) {
this.status = status;
}
public String getTransmitDirection() {
return this.transmitDirection;
}
public void setTransmitDirection(String transmitDirection) {
this.transmitDirection = transmitDirection;
}
public Boolean getSourceInstanceIdsReverseMatch() {
return this.sourceInstanceIdsReverseMatch;
}
public void setSourceInstanceIdsReverseMatch(Boolean sourceInstanceIdsReverseMatch) {
this.sourceInstanceIdsReverseMatch = sourceInstanceIdsReverseMatch;
}
public String getCenRegionId() {
return this.cenRegionId;
}
public void setCenRegionId(String cenRegionId) {
this.cenRegionId = cenRegionId;
}
public String getCenId() {
return this.cenId;
}
public void setCenId(String cenId) {
this.cenId = cenId;
}
public Integer getPriority() {
return this.priority;
}
public void setPriority(Integer priority) {
this.priority = priority;
}
public String getTransitRouterRouteTableId() {
return this.transitRouterRouteTableId;
}
public void setTransitRouterRouteTableId(String transitRouterRouteTableId) {
this.transitRouterRouteTableId = transitRouterRouteTableId;
}
public String getCommunityOperateMode() {
return this.communityOperateMode;
}
public void setCommunityOperateMode(String communityOperateMode) {
this.communityOperateMode = communityOperateMode;
}
public String getMapResult() {
return this.mapResult;
}
public void setMapResult(String mapResult) {
this.mapResult = mapResult;
}
public String getCommunityMatchMode() {
return this.communityMatchMode;
}
public void setCommunityMatchMode(String communityMatchMode) {
this.communityMatchMode = communityMatchMode;
}
public String getDescription() {
return this.description;
}
public void setDescription(String description) {
this.description = description;
}
public String getAsPathMatchMode() {
return this.asPathMatchMode;
}
public void setAsPathMatchMode(String asPathMatchMode) {
this.asPathMatchMode = asPathMatchMode;
}
public Integer getPreference() {
return this.preference;
}
public void setPreference(Integer preference) {
this.preference = preference;
}
public Boolean getDestinationInstanceIdsReverseMatch() {
return this.destinationInstanceIdsReverseMatch;
}
public void setDestinationInstanceIdsReverseMatch(Boolean destinationInstanceIdsReverseMatch) {
this.destinationInstanceIdsReverseMatch = destinationInstanceIdsReverseMatch;
}
public String getCidrMatchMode() {
return this.cidrMatchMode;
}
public void setCidrMatchMode(String cidrMatchMode) {
this.cidrMatchMode = cidrMatchMode;
}
public Integer getNextPriority() {
return this.nextPriority;
}
public void setNextPriority(Integer nextPriority) {
this.nextPriority = nextPriority;
}
public String getMatchAddressType() {
return this.matchAddressType;
}
public void setMatchAddressType(String matchAddressType) {
this.matchAddressType = matchAddressType;
}
public String getGatewayZoneId() {
return this.gatewayZoneId;
}
public void setGatewayZoneId(String gatewayZoneId) {
this.gatewayZoneId = gatewayZoneId;
}
public String getGatewayRegionId() {
return this.gatewayRegionId;
}
public void setGatewayRegionId(String gatewayRegionId) {
this.gatewayRegionId = gatewayRegionId;
}
public List<String> getSourceRegionIds() {
return this.sourceRegionIds;
}
public void setSourceRegionIds(List<String> sourceRegionIds) {
this.sourceRegionIds = sourceRegionIds;
}
public List<String> getSourceChildInstanceTypes() {
return this.sourceChildInstanceTypes;
}
public void setSourceChildInstanceTypes(List<String> sourceChildInstanceTypes) {
this.sourceChildInstanceTypes = sourceChildInstanceTypes;
}
public List<String> getDestinationRouteTableIds() {
return this.destinationRouteTableIds;
}
public void setDestinationRouteTableIds(List<String> destinationRouteTableIds) {
this.destinationRouteTableIds = destinationRouteTableIds;
}
public List<String> getSourceInstanceIds() {
return this.sourceInstanceIds;
}
public void setSourceInstanceIds(List<String> sourceInstanceIds) {
this.sourceInstanceIds = sourceInstanceIds;
}
public List<String> getDestinationCidrBlocks() {
return this.destinationCidrBlocks;
}
public void setDestinationCidrBlocks(List<String> destinationCidrBlocks) {
this.destinationCidrBlocks = destinationCidrBlocks;
}
public List<String> getDestinationRegionIds() {
return this.destinationRegionIds;
}
public void setDestinationRegionIds(List<String> destinationRegionIds) {
this.destinationRegionIds = destinationRegionIds;
}
public List<String> getSourceRouteTableIds() {
return this.sourceRouteTableIds;
}
public void setSourceRouteTableIds(List<String> sourceRouteTableIds) {
this.sourceRouteTableIds = sourceRouteTableIds;
}
public List<String> getMatchCommunitySet() {
return this.matchCommunitySet;
}
public void setMatchCommunitySet(List<String> matchCommunitySet) {
this.matchCommunitySet = matchCommunitySet;
}
public List<String> getPrependAsPath() {
return this.prependAsPath;
}
public void setPrependAsPath(List<String> prependAsPath) {
this.prependAsPath = prependAsPath;
}
public List<String> getRouteTypes() {
return this.routeTypes;
}
public void setRouteTypes(List<String> routeTypes) {
this.routeTypes = routeTypes;
}
public List<String> getOriginalRouteTableIds() {
return this.originalRouteTableIds;
}
public void setOriginalRouteTableIds(List<String> originalRouteTableIds) {
this.originalRouteTableIds = originalRouteTableIds;
}
public List<String> getDestinationChildInstanceTypes() {
return this.destinationChildInstanceTypes;
}
public void setDestinationChildInstanceTypes(List<String> destinationChildInstanceTypes) {
this.destinationChildInstanceTypes = destinationChildInstanceTypes;
}
public List<String> getDestinationInstanceIds() {
return this.destinationInstanceIds;
}
public void setDestinationInstanceIds(List<String> destinationInstanceIds) {
this.destinationInstanceIds = destinationInstanceIds;
}
public List<String> getMatchAsns() {
return this.matchAsns;
}
public void setMatchAsns(List<String> matchAsns) {
this.matchAsns = matchAsns;
}
public List<String> getOperateCommunitySet() {
return this.operateCommunitySet;
}
public void setOperateCommunitySet(List<String> operateCommunitySet) {
this.operateCommunitySet = operateCommunitySet;
}
public List<String> getSrcZoneIds() {
return this.srcZoneIds;
}
public void setSrcZoneIds(List<String> srcZoneIds) {
this.srcZoneIds = srcZoneIds;
}
}
@Override
public DescribeCenRouteMapsResponse getInstance(UnmarshallerContext context) {
return DescribeCenRouteMapsResponseUnmarshaller.unmarshall(this, context);
}
}
|
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/DescribeCenVbrHealthCheckRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS 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 DescribeCenVbrHealthCheckRequest extends RpcAcsRequest<DescribeCenVbrHealthCheckResponse> {
private Long resourceOwnerId;
private String cenId;
private Integer pageNumber;
private Long vbrInstanceOwnerId;
private Integer pageSize;
private String vbrInstanceRegionId;
private String resourceOwnerAccount;
private String ownerAccount;
private Long ownerId;
private String vbrInstanceId;
public DescribeCenVbrHealthCheckRequest() {
super("Cbn", "2017-09-12", "DescribeCenVbrHealthCheck", "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 Integer getPageNumber() {
return this.pageNumber;
}
public void setPageNumber(Integer pageNumber) {
this.pageNumber = pageNumber;
if(pageNumber != null){
putQueryParameter("PageNumber", pageNumber.toString());
}
}
public Long getVbrInstanceOwnerId() {
return this.vbrInstanceOwnerId;
}
public void setVbrInstanceOwnerId(Long vbrInstanceOwnerId) {
this.vbrInstanceOwnerId = vbrInstanceOwnerId;
if(vbrInstanceOwnerId != null){
putQueryParameter("VbrInstanceOwnerId", vbrInstanceOwnerId.toString());
}
}
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
if(pageSize != null){
putQueryParameter("PageSize", pageSize.toString());
}
}
public String getVbrInstanceRegionId() {
return this.vbrInstanceRegionId;
}
public void setVbrInstanceRegionId(String vbrInstanceRegionId) {
this.vbrInstanceRegionId = vbrInstanceRegionId;
if(vbrInstanceRegionId != null){
putQueryParameter("VbrInstanceRegionId", vbrInstanceRegionId);
}
}
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 getVbrInstanceId() {
return this.vbrInstanceId;
}
public void setVbrInstanceId(String vbrInstanceId) {
this.vbrInstanceId = vbrInstanceId;
if(vbrInstanceId != null){
putQueryParameter("VbrInstanceId", vbrInstanceId);
}
}
@Override
public Class<DescribeCenVbrHealthCheckResponse> getResponseClass() {
return DescribeCenVbrHealthCheckResponse.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/DescribeCenVbrHealthCheckResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS 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 java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.cbn.transform.v20170912.DescribeCenVbrHealthCheckResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeCenVbrHealthCheckResponse extends AcsResponse {
private Integer pageSize;
private String requestId;
private Integer pageNumber;
private Integer totalCount;
private List<VbrHealthCheck> vbrHealthChecks;
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public Integer getPageNumber() {
return this.pageNumber;
}
public void setPageNumber(Integer pageNumber) {
this.pageNumber = pageNumber;
}
public Integer getTotalCount() {
return this.totalCount;
}
public void setTotalCount(Integer totalCount) {
this.totalCount = totalCount;
}
public List<VbrHealthCheck> getVbrHealthChecks() {
return this.vbrHealthChecks;
}
public void setVbrHealthChecks(List<VbrHealthCheck> vbrHealthChecks) {
this.vbrHealthChecks = vbrHealthChecks;
}
public static class VbrHealthCheck {
private String healthCheckTargetIp;
private String vbrInstanceId;
private String vbrInstanceRegionId;
private Long delay;
private String linkStatus;
private String cenId;
private Integer healthyThreshold;
private Integer healthCheckInterval;
private String healthCheckSourceIp;
private Long packetLoss;
private Boolean healthCheckOnly;
private String description;
public String getHealthCheckTargetIp() {
return this.healthCheckTargetIp;
}
public void setHealthCheckTargetIp(String healthCheckTargetIp) {
this.healthCheckTargetIp = healthCheckTargetIp;
}
public String getVbrInstanceId() {
return this.vbrInstanceId;
}
public void setVbrInstanceId(String vbrInstanceId) {
this.vbrInstanceId = vbrInstanceId;
}
public String getVbrInstanceRegionId() {
return this.vbrInstanceRegionId;
}
public void setVbrInstanceRegionId(String vbrInstanceRegionId) {
this.vbrInstanceRegionId = vbrInstanceRegionId;
}
public Long getDelay() {
return this.delay;
}
public void setDelay(Long delay) {
this.delay = delay;
}
public String getLinkStatus() {
return this.linkStatus;
}
public void setLinkStatus(String linkStatus) {
this.linkStatus = linkStatus;
}
public String getCenId() {
return this.cenId;
}
public void setCenId(String cenId) {
this.cenId = cenId;
}
public Integer getHealthyThreshold() {
return this.healthyThreshold;
}
public void setHealthyThreshold(Integer healthyThreshold) {
this.healthyThreshold = healthyThreshold;
}
public Integer getHealthCheckInterval() {
return this.healthCheckInterval;
}
public void setHealthCheckInterval(Integer healthCheckInterval) {
this.healthCheckInterval = healthCheckInterval;
}
public String getHealthCheckSourceIp() {
return this.healthCheckSourceIp;
}
public void setHealthCheckSourceIp(String healthCheckSourceIp) {
this.healthCheckSourceIp = healthCheckSourceIp;
}
public Long getPacketLoss() {
return this.packetLoss;
}
public void setPacketLoss(Long packetLoss) {
this.packetLoss = packetLoss;
}
public Boolean getHealthCheckOnly() {
return this.healthCheckOnly;
}
public void setHealthCheckOnly(Boolean healthCheckOnly) {
this.healthCheckOnly = healthCheckOnly;
}
public String getDescription() {
return this.description;
}
public void setDescription(String description) {
this.description = description;
}
}
@Override
public DescribeCenVbrHealthCheckResponse getInstance(UnmarshallerContext context) {
return DescribeCenVbrHealthCheckResponseUnmarshaller.unmarshall(this, context);
}
}
|
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/DescribeCensRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS 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 DescribeCensRequest extends RpcAcsRequest<DescribeCensResponse> {
private Long resourceOwnerId;
private Integer pageNumber;
private String resourceGroupId;
private Integer pageSize;
private List<Tag> tags;
private String resourceOwnerAccount;
private String ownerAccount;
private Long ownerId;
private List<Filter> filters;
public DescribeCensRequest() {
super("Cbn", "2017-09-12", "DescribeCens", "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 Integer getPageNumber() {
return this.pageNumber;
}
public void setPageNumber(Integer pageNumber) {
this.pageNumber = pageNumber;
if(pageNumber != null){
putQueryParameter("PageNumber", pageNumber.toString());
}
}
public String getResourceGroupId() {
return this.resourceGroupId;
}
public void setResourceGroupId(String resourceGroupId) {
this.resourceGroupId = resourceGroupId;
if(resourceGroupId != null){
putQueryParameter("ResourceGroupId", resourceGroupId);
}
}
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
if(pageSize != null){
putQueryParameter("PageSize", pageSize.toString());
}
}
public List<Tag> getTags() {
return this.tags;
}
public void setTags(List<Tag> tags) {
this.tags = tags;
if (tags != null) {
for (int depth1 = 0; depth1 < tags.size(); depth1++) {
putQueryParameter("Tag." + (depth1 + 1) + ".Value" , tags.get(depth1).getValue());
putQueryParameter("Tag." + (depth1 + 1) + ".Key" , tags.get(depth1).getKey());
}
}
}
public String 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<Filter> getFilters() {
return this.filters;
}
public void setFilters(List<Filter> filters) {
this.filters = filters;
if (filters != null) {
for (int depth1 = 0; depth1 < filters.size(); depth1++) {
if (filters.get(depth1).getValues() != null) {
for (int i = 0; i < filters.get(depth1).getValues().size(); i++) {
putQueryParameter("Filter." + (depth1 + 1) + ".Value." + (i + 1) , filters.get(depth1).getValues().get(i));
}
}
putQueryParameter("Filter." + (depth1 + 1) + ".Key" , filters.get(depth1).getKey());
}
}
}
public static class Tag {
private String value;
private String key;
public String getValue() {
return this.value;
}
public void setValue(String value) {
this.value = value;
}
public String getKey() {
return this.key;
}
public void setKey(String key) {
this.key = key;
}
}
public static class Filter {
private List<String> values;
private String key;
public List<String> getValues() {
return this.values;
}
public void setValues(List<String> values) {
this.values = values;
}
public String getKey() {
return this.key;
}
public void setKey(String key) {
this.key = key;
}
}
@Override
public Class<DescribeCensResponse> getResponseClass() {
return DescribeCensResponse.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/DescribeCensResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS 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 java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.cbn.transform.v20170912.DescribeCensResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeCensResponse extends AcsResponse {
private Integer pageSize;
private String requestId;
private Integer pageNumber;
private Integer totalCount;
private List<Cen> cens;
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public Integer getPageNumber() {
return this.pageNumber;
}
public void setPageNumber(Integer pageNumber) {
this.pageNumber = pageNumber;
}
public Integer getTotalCount() {
return this.totalCount;
}
public void setTotalCount(Integer totalCount) {
this.totalCount = totalCount;
}
public List<Cen> getCens() {
return this.cens;
}
public void setCens(List<Cen> cens) {
this.cens = cens;
}
public static class Cen {
private String status;
private String creationTime;
private String ipv6Level;
private String description;
private String resourceGroupId;
private String cenId;
private String protectionLevel;
private String name;
private List<Tag> tags;
private List<String> cenBandwidthPackageIds;
public String getStatus() {
return this.status;
}
public void setStatus(String status) {
this.status = status;
}
public String getCreationTime() {
return this.creationTime;
}
public void setCreationTime(String creationTime) {
this.creationTime = creationTime;
}
public String getIpv6Level() {
return this.ipv6Level;
}
public void setIpv6Level(String ipv6Level) {
this.ipv6Level = ipv6Level;
}
public String getDescription() {
return this.description;
}
public void setDescription(String description) {
this.description = description;
}
public String getResourceGroupId() {
return this.resourceGroupId;
}
public void setResourceGroupId(String resourceGroupId) {
this.resourceGroupId = resourceGroupId;
}
public String getCenId() {
return this.cenId;
}
public void setCenId(String cenId) {
this.cenId = cenId;
}
public String getProtectionLevel() {
return this.protectionLevel;
}
public void setProtectionLevel(String protectionLevel) {
this.protectionLevel = protectionLevel;
}
public String getName() {
return this.name;
}
public void setName(String name) {
this.name = name;
}
public List<Tag> getTags() {
return this.tags;
}
public void setTags(List<Tag> tags) {
this.tags = tags;
}
public List<String> getCenBandwidthPackageIds() {
return this.cenBandwidthPackageIds;
}
public void setCenBandwidthPackageIds(List<String> cenBandwidthPackageIds) {
this.cenBandwidthPackageIds = cenBandwidthPackageIds;
}
public static class Tag {
private String key;
private String value;
public String getKey() {
return this.key;
}
public void setKey(String key) {
this.key = key;
}
public String getValue() {
return this.value;
}
public void setValue(String value) {
this.value = value;
}
}
}
@Override
public DescribeCensResponse getInstance(UnmarshallerContext context) {
return DescribeCensResponseUnmarshaller.unmarshall(this, context);
}
}
|
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/DescribeChildInstanceRegionsRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS 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 DescribeChildInstanceRegionsRequest extends RpcAcsRequest<DescribeChildInstanceRegionsResponse> {
private Long resourceOwnerId;
private String productType;
private String resourceOwnerAccount;
private String ownerAccount;
private Long ownerId;
private String acceptLanguage;
public DescribeChildInstanceRegionsRequest() {
super("Cbn", "2017-09-12", "DescribeChildInstanceRegions", "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 getProductType() {
return this.productType;
}
public void setProductType(String productType) {
this.productType = productType;
if(productType != null){
putQueryParameter("ProductType", productType);
}
}
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 getAcceptLanguage() {
return this.acceptLanguage;
}
public void setAcceptLanguage(String acceptLanguage) {
this.acceptLanguage = acceptLanguage;
if(acceptLanguage != null){
putQueryParameter("AcceptLanguage", acceptLanguage);
}
}
@Override
public Class<DescribeChildInstanceRegionsResponse> getResponseClass() {
return DescribeChildInstanceRegionsResponse.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/DescribeChildInstanceRegionsResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS 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 java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.cbn.transform.v20170912.DescribeChildInstanceRegionsResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeChildInstanceRegionsResponse extends AcsResponse {
private String requestId;
private List<Region> regions;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public List<Region> getRegions() {
return this.regions;
}
public void setRegions(List<Region> regions) {
this.regions = regions;
}
public static class Region {
private String localName;
private String regionId;
public String getLocalName() {
return this.localName;
}
public void setLocalName(String localName) {
this.localName = localName;
}
public String getRegionId() {
return this.regionId;
}
public void setRegionId(String regionId) {
this.regionId = regionId;
}
}
@Override
public DescribeChildInstanceRegionsResponse getInstance(UnmarshallerContext context) {
return DescribeChildInstanceRegionsResponseUnmarshaller.unmarshall(this, context);
}
}
|
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/DescribeFlowlogsRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS 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 DescribeFlowlogsRequest extends RpcAcsRequest<DescribeFlowlogsResponse> {
private Long resourceOwnerId;
private String clientToken;
private String cenId;
private String description;
private Integer pageNumber;
private Integer pageSize;
private List<Tag> tags;
private String projectName;
private String logStoreName;
private String resourceOwnerAccount;
private String ownerAccount;
private Long ownerId;
private String transitRouterAttachmentId;
private String flowLogId;
private String flowLogName;
private String status;
public DescribeFlowlogsRequest() {
super("Cbn", "2017-09-12", "DescribeFlowlogs", "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 getCenId() {
return this.cenId;
}
public void setCenId(String cenId) {
this.cenId = cenId;
if(cenId != null){
putQueryParameter("CenId", cenId);
}
}
public String getDescription() {
return this.description;
}
public void setDescription(String description) {
this.description = description;
if(description != null){
putQueryParameter("Description", description);
}
}
public Integer getPageNumber() {
return this.pageNumber;
}
public void setPageNumber(Integer pageNumber) {
this.pageNumber = pageNumber;
if(pageNumber != null){
putQueryParameter("PageNumber", pageNumber.toString());
}
}
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
if(pageSize != null){
putQueryParameter("PageSize", pageSize.toString());
}
}
public List<Tag> getTags() {
return this.tags;
}
public void setTags(List<Tag> tags) {
this.tags = tags;
if (tags != null) {
for (int depth1 = 0; depth1 < tags.size(); depth1++) {
putQueryParameter("Tag." + (depth1 + 1) + ".Value" , tags.get(depth1).getValue());
putQueryParameter("Tag." + (depth1 + 1) + ".Key" , tags.get(depth1).getKey());
}
}
}
public String getProjectName() {
return this.projectName;
}
public void setProjectName(String projectName) {
this.projectName = projectName;
if(projectName != null){
putQueryParameter("ProjectName", projectName);
}
}
public String getLogStoreName() {
return this.logStoreName;
}
public void setLogStoreName(String logStoreName) {
this.logStoreName = logStoreName;
if(logStoreName != null){
putQueryParameter("LogStoreName", logStoreName);
}
}
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 getFlowLogId() {
return this.flowLogId;
}
public void setFlowLogId(String flowLogId) {
this.flowLogId = flowLogId;
if(flowLogId != null){
putQueryParameter("FlowLogId", flowLogId);
}
}
public String getFlowLogName() {
return this.flowLogName;
}
public void setFlowLogName(String flowLogName) {
this.flowLogName = flowLogName;
if(flowLogName != null){
putQueryParameter("FlowLogName", flowLogName);
}
}
public String getStatus() {
return this.status;
}
public void setStatus(String status) {
this.status = status;
if(status != null){
putQueryParameter("Status", status);
}
}
public static class Tag {
private String value;
private String key;
public String getValue() {
return this.value;
}
public void setValue(String value) {
this.value = value;
}
public String getKey() {
return this.key;
}
public void setKey(String key) {
this.key = key;
}
}
@Override
public Class<DescribeFlowlogsResponse> getResponseClass() {
return DescribeFlowlogsResponse.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/DescribeFlowlogsResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS 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 java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.cbn.transform.v20170912.DescribeFlowlogsResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeFlowlogsResponse extends AcsResponse {
private String pageSize;
private String pageNumber;
private String requestId;
private String totalCount;
private String success;
private List<FlowLog> flowLogs;
public String getPageSize() {
return this.pageSize;
}
public void setPageSize(String pageSize) {
this.pageSize = pageSize;
}
public String getPageNumber() {
return this.pageNumber;
}
public void setPageNumber(String pageNumber) {
this.pageNumber = pageNumber;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public String getTotalCount() {
return this.totalCount;
}
public void setTotalCount(String totalCount) {
this.totalCount = totalCount;
}
public String getSuccess() {
return this.success;
}
public void setSuccess(String success) {
this.success = success;
}
public List<FlowLog> getFlowLogs() {
return this.flowLogs;
}
public void setFlowLogs(List<FlowLog> flowLogs) {
this.flowLogs = flowLogs;
}
public static class FlowLog {
private String status;
private String creationTime;
private String flowLogName;
private String description;
private String projectName;
private String cenId;
private String logStoreName;
private String regionId;
private String flowLogId;
private String peerRegionId;
private String transitRouterAttachmentId;
private Long interval;
private List<Tag> tags;
public String getStatus() {
return this.status;
}
public void setStatus(String status) {
this.status = status;
}
public String getCreationTime() {
return this.creationTime;
}
public void setCreationTime(String creationTime) {
this.creationTime = creationTime;
}
public String getFlowLogName() {
return this.flowLogName;
}
public void setFlowLogName(String flowLogName) {
this.flowLogName = flowLogName;
}
public String getDescription() {
return this.description;
}
public void setDescription(String description) {
this.description = description;
}
public String getProjectName() {
return this.projectName;
}
public void setProjectName(String projectName) {
this.projectName = projectName;
}
public String getCenId() {
return this.cenId;
}
public void setCenId(String cenId) {
this.cenId = cenId;
}
public String getLogStoreName() {
return this.logStoreName;
}
public void setLogStoreName(String logStoreName) {
this.logStoreName = logStoreName;
}
public String getRegionId() {
return this.regionId;
}
public void setRegionId(String regionId) {
this.regionId = regionId;
}
public String getFlowLogId() {
return this.flowLogId;
}
public void setFlowLogId(String flowLogId) {
this.flowLogId = flowLogId;
}
public String getPeerRegionId() {
return this.peerRegionId;
}
public void setPeerRegionId(String peerRegionId) {
this.peerRegionId = peerRegionId;
}
public String getTransitRouterAttachmentId() {
return this.transitRouterAttachmentId;
}
public void setTransitRouterAttachmentId(String transitRouterAttachmentId) {
this.transitRouterAttachmentId = transitRouterAttachmentId;
}
public Long getInterval() {
return this.interval;
}
public void setInterval(Long interval) {
this.interval = interval;
}
public List<Tag> getTags() {
return this.tags;
}
public void setTags(List<Tag> tags) {
this.tags = tags;
}
public static class Tag {
private String key;
private String value;
public String getKey() {
return this.key;
}
public void setKey(String key) {
this.key = key;
}
public String getValue() {
return this.value;
}
public void setValue(String value) {
this.value = value;
}
}
}
@Override
public DescribeFlowlogsResponse getInstance(UnmarshallerContext context) {
return DescribeFlowlogsResponseUnmarshaller.unmarshall(this, context);
}
}
|
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/DescribeGeographicRegionMembershipRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS 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 DescribeGeographicRegionMembershipRequest extends RpcAcsRequest<DescribeGeographicRegionMembershipResponse> {
private Long resourceOwnerId;
private Integer pageNumber;
private Integer pageSize;
private String resourceOwnerAccount;
private String ownerAccount;
private Long ownerId;
private String geographicRegionId;
public DescribeGeographicRegionMembershipRequest() {
super("Cbn", "2017-09-12", "DescribeGeographicRegionMembership", "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 Integer getPageNumber() {
return this.pageNumber;
}
public void setPageNumber(Integer pageNumber) {
this.pageNumber = pageNumber;
if(pageNumber != null){
putQueryParameter("PageNumber", pageNumber.toString());
}
}
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
if(pageSize != null){
putQueryParameter("PageSize", pageSize.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 getGeographicRegionId() {
return this.geographicRegionId;
}
public void setGeographicRegionId(String geographicRegionId) {
this.geographicRegionId = geographicRegionId;
if(geographicRegionId != null){
putQueryParameter("GeographicRegionId", geographicRegionId);
}
}
@Override
public Class<DescribeGeographicRegionMembershipResponse> getResponseClass() {
return DescribeGeographicRegionMembershipResponse.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/DescribeGeographicRegionMembershipResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS 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 java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.cbn.transform.v20170912.DescribeGeographicRegionMembershipResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeGeographicRegionMembershipResponse extends AcsResponse {
private Integer pageSize;
private String requestId;
private Integer pageNumber;
private Integer totalCount;
private List<RegionId> regionIds;
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public Integer getPageNumber() {
return this.pageNumber;
}
public void setPageNumber(Integer pageNumber) {
this.pageNumber = pageNumber;
}
public Integer getTotalCount() {
return this.totalCount;
}
public void setTotalCount(Integer totalCount) {
this.totalCount = totalCount;
}
public List<RegionId> getRegionIds() {
return this.regionIds;
}
public void setRegionIds(List<RegionId> regionIds) {
this.regionIds = regionIds;
}
public static class RegionId {
private String regionId;
public String getRegionId() {
return this.regionId;
}
public void setRegionId(String regionId) {
this.regionId = regionId;
}
}
@Override
public DescribeGeographicRegionMembershipResponse getInstance(UnmarshallerContext context) {
return DescribeGeographicRegionMembershipResponseUnmarshaller.unmarshall(this, context);
}
}
|
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/DescribeGrantRulesToCenRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS 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 DescribeGrantRulesToCenRequest extends RpcAcsRequest<DescribeGrantRulesToCenResponse> {
private Long resourceOwnerId;
private String cenId;
private String productType;
private String nextToken;
private String resourceOwnerAccount;
private String ownerAccount;
private Long ownerId;
private Long childInstanceOwnerId;
private String childInstanceId;
private Long maxResults;
public DescribeGrantRulesToCenRequest() {
super("Cbn", "2017-09-12", "DescribeGrantRulesToCen", "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 getProductType() {
return this.productType;
}
public void setProductType(String productType) {
this.productType = productType;
if(productType != null){
putQueryParameter("ProductType", productType);
}
}
public String getNextToken() {
return this.nextToken;
}
public void setNextToken(String nextToken) {
this.nextToken = nextToken;
if(nextToken != null){
putQueryParameter("NextToken", nextToken);
}
}
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 Long getChildInstanceOwnerId() {
return this.childInstanceOwnerId;
}
public void setChildInstanceOwnerId(Long childInstanceOwnerId) {
this.childInstanceOwnerId = childInstanceOwnerId;
if(childInstanceOwnerId != null){
putQueryParameter("ChildInstanceOwnerId", childInstanceOwnerId.toString());
}
}
public String getChildInstanceId() {
return this.childInstanceId;
}
public void setChildInstanceId(String childInstanceId) {
this.childInstanceId = childInstanceId;
if(childInstanceId != null){
putQueryParameter("ChildInstanceId", childInstanceId);
}
}
public Long getMaxResults() {
return this.maxResults;
}
public void setMaxResults(Long maxResults) {
this.maxResults = maxResults;
if(maxResults != null){
putQueryParameter("MaxResults", maxResults.toString());
}
}
@Override
public Class<DescribeGrantRulesToCenResponse> getResponseClass() {
return DescribeGrantRulesToCenResponse.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/DescribeGrantRulesToCenResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS 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 java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.cbn.transform.v20170912.DescribeGrantRulesToCenResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeGrantRulesToCenResponse extends AcsResponse {
private String requestId;
private Long totalCount;
private Long maxResults;
private String nextToken;
private List<GrantRule> grantRules;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public Long getTotalCount() {
return this.totalCount;
}
public void setTotalCount(Long totalCount) {
this.totalCount = totalCount;
}
public Long getMaxResults() {
return this.maxResults;
}
public void setMaxResults(Long maxResults) {
this.maxResults = maxResults;
}
public String getNextToken() {
return this.nextToken;
}
public void setNextToken(String nextToken) {
this.nextToken = nextToken;
}
public List<GrantRule> getGrantRules() {
return this.grantRules;
}
public void setGrantRules(List<GrantRule> grantRules) {
this.grantRules = grantRules;
}
public static class GrantRule {
private String childInstanceType;
private String childInstanceRegionId;
private Long childInstanceOwnerId;
private String childInstanceId;
private String cenId;
private String orderType;
private Long cenOwnerId;
private Long createTime;
public String getChildInstanceType() {
return this.childInstanceType;
}
public void setChildInstanceType(String childInstanceType) {
this.childInstanceType = childInstanceType;
}
public String getChildInstanceRegionId() {
return this.childInstanceRegionId;
}
public void setChildInstanceRegionId(String childInstanceRegionId) {
this.childInstanceRegionId = childInstanceRegionId;
}
public Long getChildInstanceOwnerId() {
return this.childInstanceOwnerId;
}
public void setChildInstanceOwnerId(Long childInstanceOwnerId) {
this.childInstanceOwnerId = childInstanceOwnerId;
}
public String getChildInstanceId() {
return this.childInstanceId;
}
public void setChildInstanceId(String childInstanceId) {
this.childInstanceId = childInstanceId;
}
public String getCenId() {
return this.cenId;
}
public void setCenId(String cenId) {
this.cenId = cenId;
}
public String getOrderType() {
return this.orderType;
}
public void setOrderType(String orderType) {
this.orderType = orderType;
}
public Long getCenOwnerId() {
return this.cenOwnerId;
}
public void setCenOwnerId(Long cenOwnerId) {
this.cenOwnerId = cenOwnerId;
}
public Long getCreateTime() {
return this.createTime;
}
public void setCreateTime(Long createTime) {
this.createTime = createTime;
}
}
@Override
public DescribeGrantRulesToCenResponse getInstance(UnmarshallerContext context) {
return DescribeGrantRulesToCenResponseUnmarshaller.unmarshall(this, context);
}
}
|
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/DescribeGrantRulesToResourceRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS 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 DescribeGrantRulesToResourceRequest extends RpcAcsRequest<DescribeGrantRulesToResourceResponse> {
private Long resourceOwnerId;
private String productType;
private String nextToken;
private String resourceId;
private String resourceOwnerAccount;
private String ownerAccount;
private Long ownerId;
private Integer maxResults;
public DescribeGrantRulesToResourceRequest() {
super("Cbn", "2017-09-12", "DescribeGrantRulesToResource", "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 getProductType() {
return this.productType;
}
public void setProductType(String productType) {
this.productType = productType;
if(productType != null){
putQueryParameter("ProductType", productType);
}
}
public String getNextToken() {
return this.nextToken;
}
public void setNextToken(String nextToken) {
this.nextToken = nextToken;
if(nextToken != null){
putQueryParameter("NextToken", nextToken);
}
}
public String getResourceId() {
return this.resourceId;
}
public void setResourceId(String resourceId) {
this.resourceId = resourceId;
if(resourceId != null){
putQueryParameter("ResourceId", resourceId);
}
}
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 Integer getMaxResults() {
return this.maxResults;
}
public void setMaxResults(Integer maxResults) {
this.maxResults = maxResults;
if(maxResults != null){
putQueryParameter("MaxResults", maxResults.toString());
}
}
@Override
public Class<DescribeGrantRulesToResourceResponse> getResponseClass() {
return DescribeGrantRulesToResourceResponse.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/DescribeGrantRulesToResourceResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS 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 java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.cbn.transform.v20170912.DescribeGrantRulesToResourceResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeGrantRulesToResourceResponse extends AcsResponse {
private String nextToken;
private String requestId;
private Integer totalCount;
private Integer maxResults;
private List<GrantRule> grantRules;
public String getNextToken() {
return this.nextToken;
}
public void setNextToken(String nextToken) {
this.nextToken = nextToken;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public Integer getTotalCount() {
return this.totalCount;
}
public void setTotalCount(Integer totalCount) {
this.totalCount = totalCount;
}
public Integer getMaxResults() {
return this.maxResults;
}
public void setMaxResults(Integer maxResults) {
this.maxResults = maxResults;
}
public List<GrantRule> getGrantRules() {
return this.grantRules;
}
public void setGrantRules(List<GrantRule> grantRules) {
this.grantRules = grantRules;
}
public static class GrantRule {
private Long cenOwnerId;
private String orderType;
private String cenId;
private String createTime;
public Long getCenOwnerId() {
return this.cenOwnerId;
}
public void setCenOwnerId(Long cenOwnerId) {
this.cenOwnerId = cenOwnerId;
}
public String getOrderType() {
return this.orderType;
}
public void setOrderType(String orderType) {
this.orderType = orderType;
}
public String getCenId() {
return this.cenId;
}
public void setCenId(String cenId) {
this.cenId = cenId;
}
public String getCreateTime() {
return this.createTime;
}
public void setCreateTime(String createTime) {
this.createTime = createTime;
}
}
@Override
public DescribeGrantRulesToResourceResponse getInstance(UnmarshallerContext context) {
return DescribeGrantRulesToResourceResponseUnmarshaller.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/DescribePublishedRouteEntriesRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS 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 DescribePublishedRouteEntriesRequest extends RpcAcsRequest<DescribePublishedRouteEntriesResponse> {
private Long resourceOwnerId;
private String cenId;
private Integer pageNumber;
private Integer pageSize;
private String childInstanceRegionId;
private String resourceOwnerAccount;
private String destinationCidrBlock;
private String childInstanceType;
private String childInstanceId;
private String childInstanceRouteTableId;
public DescribePublishedRouteEntriesRequest() {
super("Cbn", "2017-09-12", "DescribePublishedRouteEntries", "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 Integer getPageNumber() {
return this.pageNumber;
}
public void setPageNumber(Integer pageNumber) {
this.pageNumber = pageNumber;
if(pageNumber != null){
putQueryParameter("PageNumber", pageNumber.toString());
}
}
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
if(pageSize != null){
putQueryParameter("PageSize", pageSize.toString());
}
}
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<DescribePublishedRouteEntriesResponse> getResponseClass() {
return DescribePublishedRouteEntriesResponse.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/DescribePublishedRouteEntriesResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS 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 java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.cbn.transform.v20170912.DescribePublishedRouteEntriesResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribePublishedRouteEntriesResponse extends AcsResponse {
private Integer pageSize;
private String requestId;
private Integer pageNumber;
private Integer totalCount;
private List<PublishedRouteEntry> publishedRouteEntries;
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public Integer getPageNumber() {
return this.pageNumber;
}
public void setPageNumber(Integer pageNumber) {
this.pageNumber = pageNumber;
}
public Integer getTotalCount() {
return this.totalCount;
}
public void setTotalCount(Integer totalCount) {
this.totalCount = totalCount;
}
public List<PublishedRouteEntry> getPublishedRouteEntries() {
return this.publishedRouteEntries;
}
public void setPublishedRouteEntries(List<PublishedRouteEntry> publishedRouteEntries) {
this.publishedRouteEntries = publishedRouteEntries;
}
public static class PublishedRouteEntry {
private String nextHopId;
private String publishStatus;
private String childInstanceRouteTableId;
private String nextHopType;
private Boolean operationalMode;
private String destinationCidrBlock;
private String routeType;
private List<Conflict> conflicts;
public String getNextHopId() {
return this.nextHopId;
}
public void setNextHopId(String nextHopId) {
this.nextHopId = nextHopId;
}
public String getPublishStatus() {
return this.publishStatus;
}
public void setPublishStatus(String publishStatus) {
this.publishStatus = publishStatus;
}
public String getChildInstanceRouteTableId() {
return this.childInstanceRouteTableId;
}
public void setChildInstanceRouteTableId(String childInstanceRouteTableId) {
this.childInstanceRouteTableId = childInstanceRouteTableId;
}
public String getNextHopType() {
return this.nextHopType;
}
public void setNextHopType(String nextHopType) {
this.nextHopType = nextHopType;
}
public Boolean getOperationalMode() {
return this.operationalMode;
}
public void setOperationalMode(Boolean operationalMode) {
this.operationalMode = operationalMode;
}
public String getDestinationCidrBlock() {
return this.destinationCidrBlock;
}
public void setDestinationCidrBlock(String destinationCidrBlock) {
this.destinationCidrBlock = destinationCidrBlock;
}
public String getRouteType() {
return this.routeType;
}
public void setRouteType(String routeType) {
this.routeType = routeType;
}
public List<Conflict> getConflicts() {
return this.conflicts;
}
public void setConflicts(List<Conflict> conflicts) {
this.conflicts = conflicts;
}
public static class Conflict {
private String status;
private String destinationCidrBlock;
private String instanceId;
private String instanceType;
private String regionId;
public String getStatus() {
return this.status;
}
public void setStatus(String status) {
this.status = status;
}
public String getDestinationCidrBlock() {
return this.destinationCidrBlock;
}
public void setDestinationCidrBlock(String destinationCidrBlock) {
this.destinationCidrBlock = destinationCidrBlock;
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
}
public String getInstanceType() {
return this.instanceType;
}
public void setInstanceType(String instanceType) {
this.instanceType = instanceType;
}
public String getRegionId() {
return this.regionId;
}
public void setRegionId(String regionId) {
this.regionId = regionId;
}
}
}
@Override
public DescribePublishedRouteEntriesResponse getInstance(UnmarshallerContext context) {
return DescribePublishedRouteEntriesResponseUnmarshaller.unmarshall(this, context);
}
}
|
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/DescribeRouteConflictRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS 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 DescribeRouteConflictRequest extends RpcAcsRequest<DescribeRouteConflictResponse> {
private Long resourceOwnerId;
private Integer pageNumber;
private Integer pageSize;
private String childInstanceRegionId;
private String resourceOwnerAccount;
private String ownerAccount;
private String destinationCidrBlock;
private Long ownerId;
private String childInstanceType;
private String childInstanceId;
private String childInstanceRouteTableId;
public DescribeRouteConflictRequest() {
super("Cbn", "2017-09-12", "DescribeRouteConflict", "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 Integer getPageNumber() {
return this.pageNumber;
}
public void setPageNumber(Integer pageNumber) {
this.pageNumber = pageNumber;
if(pageNumber != null){
putQueryParameter("PageNumber", pageNumber.toString());
}
}
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
if(pageSize != null){
putQueryParameter("PageSize", pageSize.toString());
}
}
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 getOwnerAccount() {
return this.ownerAccount;
}
public void setOwnerAccount(String ownerAccount) {
this.ownerAccount = ownerAccount;
if(ownerAccount != null){
putQueryParameter("OwnerAccount", ownerAccount);
}
}
public String getDestinationCidrBlock() {
return this.destinationCidrBlock;
}
public void setDestinationCidrBlock(String destinationCidrBlock) {
this.destinationCidrBlock = destinationCidrBlock;
if(destinationCidrBlock != null){
putQueryParameter("DestinationCidrBlock", destinationCidrBlock);
}
}
public Long getOwnerId() {
return this.ownerId;
}
public void setOwnerId(Long ownerId) {
this.ownerId = ownerId;
if(ownerId != null){
putQueryParameter("OwnerId", ownerId.toString());
}
}
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<DescribeRouteConflictResponse> getResponseClass() {
return DescribeRouteConflictResponse.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/DescribeRouteConflictResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS 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 java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.cbn.transform.v20170912.DescribeRouteConflictResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeRouteConflictResponse extends AcsResponse {
private Integer pageSize;
private String requestId;
private Integer pageNumber;
private Integer totalCount;
private List<RouteConflict> routeConflicts;
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public Integer getPageNumber() {
return this.pageNumber;
}
public void setPageNumber(Integer pageNumber) {
this.pageNumber = pageNumber;
}
public Integer getTotalCount() {
return this.totalCount;
}
public void setTotalCount(Integer totalCount) {
this.totalCount = totalCount;
}
public List<RouteConflict> getRouteConflicts() {
return this.routeConflicts;
}
public void setRouteConflicts(List<RouteConflict> routeConflicts) {
this.routeConflicts = routeConflicts;
}
public static class RouteConflict {
private String status;
private String destinationCidrBlock;
private String instanceId;
private String instanceType;
private String regionId;
public String getStatus() {
return this.status;
}
public void setStatus(String status) {
this.status = status;
}
public String getDestinationCidrBlock() {
return this.destinationCidrBlock;
}
public void setDestinationCidrBlock(String destinationCidrBlock) {
this.destinationCidrBlock = destinationCidrBlock;
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
}
public String getInstanceType() {
return this.instanceType;
}
public void setInstanceType(String instanceType) {
this.instanceType = instanceType;
}
public String getRegionId() {
return this.regionId;
}
public void setRegionId(String regionId) {
this.regionId = regionId;
}
}
@Override
public DescribeRouteConflictResponse getInstance(UnmarshallerContext context) {
return DescribeRouteConflictResponseUnmarshaller.unmarshall(this, context);
}
}
|
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/DescribeRouteServicesInCenRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS 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 DescribeRouteServicesInCenRequest extends RpcAcsRequest<DescribeRouteServicesInCenResponse> {
private Long resourceOwnerId;
private String cenId;
private String accessRegionId;
private Integer pageNumber;
private Integer pageSize;
private String host;
private String hostRegionId;
private String hostVpcId;
private String resourceOwnerAccount;
private String ownerAccount;
private Long ownerId;
public DescribeRouteServicesInCenRequest() {
super("Cbn", "2017-09-12", "DescribeRouteServicesInCen", "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 getAccessRegionId() {
return this.accessRegionId;
}
public void setAccessRegionId(String accessRegionId) {
this.accessRegionId = accessRegionId;
if(accessRegionId != null){
putQueryParameter("AccessRegionId", accessRegionId);
}
}
public Integer getPageNumber() {
return this.pageNumber;
}
public void setPageNumber(Integer pageNumber) {
this.pageNumber = pageNumber;
if(pageNumber != null){
putQueryParameter("PageNumber", pageNumber.toString());
}
}
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
if(pageSize != null){
putQueryParameter("PageSize", pageSize.toString());
}
}
public String getHost() {
return this.host;
}
public void setHost(String host) {
this.host = host;
if(host != null){
putQueryParameter("Host", host);
}
}
public String getHostRegionId() {
return this.hostRegionId;
}
public void setHostRegionId(String hostRegionId) {
this.hostRegionId = hostRegionId;
if(hostRegionId != null){
putQueryParameter("HostRegionId", hostRegionId);
}
}
public String getHostVpcId() {
return this.hostVpcId;
}
public void setHostVpcId(String hostVpcId) {
this.hostVpcId = hostVpcId;
if(hostVpcId != null){
putQueryParameter("HostVpcId", hostVpcId);
}
}
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());
}
}
@Override
public Class<DescribeRouteServicesInCenResponse> getResponseClass() {
return DescribeRouteServicesInCenResponse.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/DescribeRouteServicesInCenResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS 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 java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.cbn.transform.v20170912.DescribeRouteServicesInCenResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeRouteServicesInCenResponse extends AcsResponse {
private Integer pageSize;
private String requestId;
private Integer pageNumber;
private Integer totalCount;
private List<RouteServiceEntry> routeServiceEntries;
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public Integer getPageNumber() {
return this.pageNumber;
}
public void setPageNumber(Integer pageNumber) {
this.pageNumber = pageNumber;
}
public Integer getTotalCount() {
return this.totalCount;
}
public void setTotalCount(Integer totalCount) {
this.totalCount = totalCount;
}
public List<RouteServiceEntry> getRouteServiceEntries() {
return this.routeServiceEntries;
}
public void setRouteServiceEntries(List<RouteServiceEntry> routeServiceEntries) {
this.routeServiceEntries = routeServiceEntries;
}
public static class RouteServiceEntry {
private String status;
private String host;
private String description;
private String hostVpcId;
private String cenId;
private String accessRegionId;
private String hostRegionId;
private String updateInterval;
private List<String> cidrs;
public String getStatus() {
return this.status;
}
public void setStatus(String status) {
this.status = status;
}
public String getHost() {
return this.host;
}
public void setHost(String host) {
this.host = host;
}
public String getDescription() {
return this.description;
}
public void setDescription(String description) {
this.description = description;
}
public String getHostVpcId() {
return this.hostVpcId;
}
public void setHostVpcId(String hostVpcId) {
this.hostVpcId = hostVpcId;
}
public String getCenId() {
return this.cenId;
}
public void setCenId(String cenId) {
this.cenId = cenId;
}
public String getAccessRegionId() {
return this.accessRegionId;
}
public void setAccessRegionId(String accessRegionId) {
this.accessRegionId = accessRegionId;
}
public String getHostRegionId() {
return this.hostRegionId;
}
public void setHostRegionId(String hostRegionId) {
this.hostRegionId = hostRegionId;
}
public String getUpdateInterval() {
return this.updateInterval;
}
public void setUpdateInterval(String updateInterval) {
this.updateInterval = updateInterval;
}
public List<String> getCidrs() {
return this.cidrs;
}
public void setCidrs(List<String> cidrs) {
this.cidrs = cidrs;
}
}
@Override
public DescribeRouteServicesInCenResponse getInstance(UnmarshallerContext context) {
return DescribeRouteServicesInCenResponseUnmarshaller.unmarshall(this, context);
}
}
|
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/DescribeTransitRouteTableAggregationDetailRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS 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 DescribeTransitRouteTableAggregationDetailRequest extends RpcAcsRequest<DescribeTransitRouteTableAggregationDetailResponse> {
private Long resourceOwnerId;
private String clientToken;
private String resourceOwnerAccount;
private String ownerAccount;
private Long ownerId;
private String transitRouteTableId;
private String transitRouteTableAggregationCidr;
public DescribeTransitRouteTableAggregationDetailRequest() {
super("Cbn", "2017-09-12", "DescribeTransitRouteTableAggregationDetail", "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 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 getTransitRouteTableId() {
return this.transitRouteTableId;
}
public void setTransitRouteTableId(String transitRouteTableId) {
this.transitRouteTableId = transitRouteTableId;
if(transitRouteTableId != null){
putQueryParameter("TransitRouteTableId", transitRouteTableId);
}
}
public String getTransitRouteTableAggregationCidr() {
return this.transitRouteTableAggregationCidr;
}
public void setTransitRouteTableAggregationCidr(String transitRouteTableAggregationCidr) {
this.transitRouteTableAggregationCidr = transitRouteTableAggregationCidr;
if(transitRouteTableAggregationCidr != null){
putQueryParameter("TransitRouteTableAggregationCidr", transitRouteTableAggregationCidr);
}
}
@Override
public Class<DescribeTransitRouteTableAggregationDetailResponse> getResponseClass() {
return DescribeTransitRouteTableAggregationDetailResponse.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/DescribeTransitRouteTableAggregationDetailResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS 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 java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.cbn.transform.v20170912.DescribeTransitRouteTableAggregationDetailResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeTransitRouteTableAggregationDetailResponse extends AcsResponse {
private Integer count;
private String nextToken;
private Integer total;
private String requestId;
private List<DataItem> data;
public Integer getCount() {
return this.count;
}
public void setCount(Integer count) {
this.count = count;
}
public String getNextToken() {
return this.nextToken;
}
public void setNextToken(String nextToken) {
this.nextToken = nextToken;
}
public Integer getTotal() {
return this.total;
}
public void setTotal(Integer total) {
this.total = total;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public List<DataItem> getData() {
return this.data;
}
public void setData(List<DataItem> data) {
this.data = data;
}
public static class DataItem {
private String instanceId;
private String description;
private String status;
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
}
public String getDescription() {
return this.description;
}
public void setDescription(String description) {
this.description = description;
}
public String getStatus() {
return this.status;
}
public void setStatus(String status) {
this.status = status;
}
}
@Override
public DescribeTransitRouteTableAggregationDetailResponse getInstance(UnmarshallerContext context) {
return DescribeTransitRouteTableAggregationDetailResponseUnmarshaller.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/DescribeTransitRouteTableAggregationRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS 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 DescribeTransitRouteTableAggregationRequest extends RpcAcsRequest<DescribeTransitRouteTableAggregationResponse> {
private Long resourceOwnerId;
private String clientToken;
private String nextToken;
private String resourceOwnerAccount;
private String ownerAccount;
private Long ownerId;
private String transitRouteTableId;
private String transitRouteTableAggregationCidr;
private Long maxResults;
public DescribeTransitRouteTableAggregationRequest() {
super("Cbn", "2017-09-12", "DescribeTransitRouteTableAggregation", "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 getNextToken() {
return this.nextToken;
}
public void setNextToken(String nextToken) {
this.nextToken = nextToken;
if(nextToken != null){
putQueryParameter("NextToken", nextToken);
}
}
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 getTransitRouteTableId() {
return this.transitRouteTableId;
}
public void setTransitRouteTableId(String transitRouteTableId) {
this.transitRouteTableId = transitRouteTableId;
if(transitRouteTableId != null){
putQueryParameter("TransitRouteTableId", transitRouteTableId);
}
}
public String getTransitRouteTableAggregationCidr() {
return this.transitRouteTableAggregationCidr;
}
public void setTransitRouteTableAggregationCidr(String transitRouteTableAggregationCidr) {
this.transitRouteTableAggregationCidr = transitRouteTableAggregationCidr;
if(transitRouteTableAggregationCidr != null){
putQueryParameter("TransitRouteTableAggregationCidr", transitRouteTableAggregationCidr);
}
}
public Long getMaxResults() {
return this.maxResults;
}
public void setMaxResults(Long maxResults) {
this.maxResults = maxResults;
if(maxResults != null){
putQueryParameter("MaxResults", maxResults.toString());
}
}
@Override
public Class<DescribeTransitRouteTableAggregationResponse> getResponseClass() {
return DescribeTransitRouteTableAggregationResponse.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/DescribeTransitRouteTableAggregationResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS 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 java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.cbn.transform.v20170912.DescribeTransitRouteTableAggregationResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeTransitRouteTableAggregationResponse extends AcsResponse {
private Integer count;
private String nextToken;
private Integer total;
private String requestId;
private List<DataItem> data;
public Integer getCount() {
return this.count;
}
public void setCount(Integer count) {
this.count = count;
}
public String getNextToken() {
return this.nextToken;
}
public void setNextToken(String nextToken) {
this.nextToken = nextToken;
}
public Integer getTotal() {
return this.total;
}
public void setTotal(Integer total) {
this.total = total;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public List<DataItem> getData() {
return this.data;
}
public void setData(List<DataItem> data) {
this.data = data;
}
public static class DataItem {
private String name;
private String transitRouteTableAggregationCidr;
private String scope;
private String nexthop;
private String routeType;
private String description;
private String trRouteTableId;
private String status;
public String getName() {
return this.name;
}
public void setName(String name) {
this.name = name;
}
public String getTransitRouteTableAggregationCidr() {
return this.transitRouteTableAggregationCidr;
}
public void setTransitRouteTableAggregationCidr(String transitRouteTableAggregationCidr) {
this.transitRouteTableAggregationCidr = transitRouteTableAggregationCidr;
}
public String getScope() {
return this.scope;
}
public void setScope(String scope) {
this.scope = scope;
}
public String getNexthop() {
return this.nexthop;
}
public void setNexthop(String nexthop) {
this.nexthop = nexthop;
}
public String getRouteType() {
return this.routeType;
}
public void setRouteType(String routeType) {
this.routeType = routeType;
}
public String getDescription() {
return this.description;
}
public void setDescription(String description) {
this.description = description;
}
public String getTrRouteTableId() {
return this.trRouteTableId;
}
public void setTrRouteTableId(String trRouteTableId) {
this.trRouteTableId = trRouteTableId;
}
public String getStatus() {
return this.status;
}
public void setStatus(String status) {
this.status = status;
}
}
@Override
public DescribeTransitRouteTableAggregationResponse getInstance(UnmarshallerContext context) {
return DescribeTransitRouteTableAggregationResponseUnmarshaller.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/DetachCenChildInstanceRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS 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 DetachCenChildInstanceRequest extends RpcAcsRequest<DetachCenChildInstanceResponse> {
private Long resourceOwnerId;
private String cenId;
private Long cenOwnerId;
private String childInstanceRegionId;
private String resourceOwnerAccount;
private String ownerAccount;
private Long ownerId;
private String childInstanceType;
private Long childInstanceOwnerId;
private String childInstanceId;
public DetachCenChildInstanceRequest() {
super("Cbn", "2017-09-12", "DetachCenChildInstance", "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 Long getCenOwnerId() {
return this.cenOwnerId;
}
public void setCenOwnerId(Long cenOwnerId) {
this.cenOwnerId = cenOwnerId;
if(cenOwnerId != null){
putQueryParameter("CenOwnerId", cenOwnerId.toString());
}
}
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 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 getChildInstanceType() {
return this.childInstanceType;
}
public void setChildInstanceType(String childInstanceType) {
this.childInstanceType = childInstanceType;
if(childInstanceType != null){
putQueryParameter("ChildInstanceType", childInstanceType);
}
}
public Long getChildInstanceOwnerId() {
return this.childInstanceOwnerId;
}
public void setChildInstanceOwnerId(Long childInstanceOwnerId) {
this.childInstanceOwnerId = childInstanceOwnerId;
if(childInstanceOwnerId != null){
putQueryParameter("ChildInstanceOwnerId", childInstanceOwnerId.toString());
}
}
public String getChildInstanceId() {
return this.childInstanceId;
}
public void setChildInstanceId(String childInstanceId) {
this.childInstanceId = childInstanceId;
if(childInstanceId != null){
putQueryParameter("ChildInstanceId", childInstanceId);
}
}
@Override
public Class<DetachCenChildInstanceResponse> getResponseClass() {
return DetachCenChildInstanceResponse.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/DetachCenChildInstanceResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS 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.DetachCenChildInstanceResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DetachCenChildInstanceResponse extends AcsResponse {
private String requestId;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
@Override
public DetachCenChildInstanceResponse getInstance(UnmarshallerContext context) {
return DetachCenChildInstanceResponseUnmarshaller.unmarshall(this, context);
}
}
|
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/DisableCenVbrHealthCheckRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS 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 DisableCenVbrHealthCheckRequest extends RpcAcsRequest<DisableCenVbrHealthCheckResponse> {
private Long resourceOwnerId;
private String cenId;
private Long vbrInstanceOwnerId;
private String vbrInstanceRegionId;
private String resourceOwnerAccount;
private String ownerAccount;
private Long ownerId;
private String vbrInstanceId;
public DisableCenVbrHealthCheckRequest() {
super("Cbn", "2017-09-12", "DisableCenVbrHealthCheck", "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 Long getVbrInstanceOwnerId() {
return this.vbrInstanceOwnerId;
}
public void setVbrInstanceOwnerId(Long vbrInstanceOwnerId) {
this.vbrInstanceOwnerId = vbrInstanceOwnerId;
if(vbrInstanceOwnerId != null){
putQueryParameter("VbrInstanceOwnerId", vbrInstanceOwnerId.toString());
}
}
public String getVbrInstanceRegionId() {
return this.vbrInstanceRegionId;
}
public void setVbrInstanceRegionId(String vbrInstanceRegionId) {
this.vbrInstanceRegionId = vbrInstanceRegionId;
if(vbrInstanceRegionId != null){
putQueryParameter("VbrInstanceRegionId", vbrInstanceRegionId);
}
}
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 getVbrInstanceId() {
return this.vbrInstanceId;
}
public void setVbrInstanceId(String vbrInstanceId) {
this.vbrInstanceId = vbrInstanceId;
if(vbrInstanceId != null){
putQueryParameter("VbrInstanceId", vbrInstanceId);
}
}
@Override
public Class<DisableCenVbrHealthCheckResponse> getResponseClass() {
return DisableCenVbrHealthCheckResponse.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/DisableCenVbrHealthCheckResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS 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.DisableCenVbrHealthCheckResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DisableCenVbrHealthCheckResponse extends AcsResponse {
private String requestId;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
@Override
public DisableCenVbrHealthCheckResponse getInstance(UnmarshallerContext context) {
return DisableCenVbrHealthCheckResponseUnmarshaller.unmarshall(this, context);
}
}
|
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/DisableTransitRouterRouteTablePropagationRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS 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 DisableTransitRouterRouteTablePropagationRequest extends RpcAcsRequest<DisableTransitRouterRouteTablePropagationResponse> {
private Long resourceOwnerId;
private String clientToken;
private String transitRouterRouteTableId;
private Boolean dryRun;
private String resourceOwnerAccount;
private String ownerAccount;
private Long ownerId;
private String transitRouterAttachmentId;
public DisableTransitRouterRouteTablePropagationRequest() {
super("Cbn", "2017-09-12", "DisableTransitRouterRouteTablePropagation", "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 getTransitRouterRouteTableId() {
return this.transitRouterRouteTableId;
}
public void setTransitRouterRouteTableId(String transitRouterRouteTableId) {
this.transitRouterRouteTableId = transitRouterRouteTableId;
if(transitRouterRouteTableId != null){
putQueryParameter("TransitRouterRouteTableId", transitRouterRouteTableId);
}
}
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);
}
}
@Override
public Class<DisableTransitRouterRouteTablePropagationResponse> getResponseClass() {
return DisableTransitRouterRouteTablePropagationResponse.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/DisableTransitRouterRouteTablePropagationResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS 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.DisableTransitRouterRouteTablePropagationResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DisableTransitRouterRouteTablePropagationResponse extends AcsResponse {
private String requestId;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
@Override
public DisableTransitRouterRouteTablePropagationResponse getInstance(UnmarshallerContext context) {
return DisableTransitRouterRouteTablePropagationResponseUnmarshaller.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/DisassociateTransitRouterMulticastDomainRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS 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 DisassociateTransitRouterMulticastDomainRequest extends RpcAcsRequest<DisassociateTransitRouterMulticastDomainResponse> {
private Long resourceOwnerId;
private String clientToken;
private List<String> vSwitchIdss;
private String transitRouterMulticastDomainId;
private Boolean dryRun;
private String resourceOwnerAccount;
private String ownerAccount;
private Long ownerId;
private String transitRouterAttachmentId;
public DisassociateTransitRouterMulticastDomainRequest() {
super("Cbn", "2017-09-12", "DisassociateTransitRouterMulticastDomain", "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<String> getVSwitchIdss() {
return this.vSwitchIdss;
}
public void setVSwitchIdss(List<String> vSwitchIdss) {
this.vSwitchIdss = vSwitchIdss;
if (vSwitchIdss != null) {
for (int i = 0; i < vSwitchIdss.size(); i++) {
putQueryParameter("VSwitchIds." + (i + 1) , vSwitchIdss.get(i));
}
}
}
public String getTransitRouterMulticastDomainId() {
return this.transitRouterMulticastDomainId;
}
public void setTransitRouterMulticastDomainId(String transitRouterMulticastDomainId) {
this.transitRouterMulticastDomainId = transitRouterMulticastDomainId;
if(transitRouterMulticastDomainId != null){
putQueryParameter("TransitRouterMulticastDomainId", transitRouterMulticastDomainId);
}
}
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);
}
}
@Override
public Class<DisassociateTransitRouterMulticastDomainResponse> getResponseClass() {
return DisassociateTransitRouterMulticastDomainResponse.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/DisassociateTransitRouterMulticastDomainResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS 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.DisassociateTransitRouterMulticastDomainResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DisassociateTransitRouterMulticastDomainResponse extends AcsResponse {
private String requestId;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
@Override
public DisassociateTransitRouterMulticastDomainResponse getInstance(UnmarshallerContext context) {
return DisassociateTransitRouterMulticastDomainResponseUnmarshaller.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/DissociateTransitRouterAttachmentFromRouteTableRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS 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 DissociateTransitRouterAttachmentFromRouteTableRequest extends RpcAcsRequest<DissociateTransitRouterAttachmentFromRouteTableResponse> {
private Long resourceOwnerId;
private String clientToken;
private String transitRouterRouteTableId;
private Boolean dryRun;
private String resourceOwnerAccount;
private String ownerAccount;
private Long ownerId;
private String transitRouterAttachmentId;
public DissociateTransitRouterAttachmentFromRouteTableRequest() {
super("Cbn", "2017-09-12", "DissociateTransitRouterAttachmentFromRouteTable", "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 getTransitRouterRouteTableId() {
return this.transitRouterRouteTableId;
}
public void setTransitRouterRouteTableId(String transitRouterRouteTableId) {
this.transitRouterRouteTableId = transitRouterRouteTableId;
if(transitRouterRouteTableId != null){
putQueryParameter("TransitRouterRouteTableId", transitRouterRouteTableId);
}
}
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);
}
}
@Override
public Class<DissociateTransitRouterAttachmentFromRouteTableResponse> getResponseClass() {
return DissociateTransitRouterAttachmentFromRouteTableResponse.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/DissociateTransitRouterAttachmentFromRouteTableResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS 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.DissociateTransitRouterAttachmentFromRouteTableResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DissociateTransitRouterAttachmentFromRouteTableResponse extends AcsResponse {
private String requestId;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
@Override
public DissociateTransitRouterAttachmentFromRouteTableResponse getInstance(UnmarshallerContext context) {
return DissociateTransitRouterAttachmentFromRouteTableResponseUnmarshaller.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/EnableCenVbrHealthCheckRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS 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 EnableCenVbrHealthCheckRequest extends RpcAcsRequest<EnableCenVbrHealthCheckResponse> {
private Long resourceOwnerId;
private String cenId;
private String healthCheckTargetIp;
private String description;
private Integer healthyThreshold;
private Long vbrInstanceOwnerId;
private Boolean healthCheckOnly;
private String vbrInstanceRegionId;
private String resourceOwnerAccount;
private String ownerAccount;
private Long ownerId;
private String healthCheckSourceIp;
private Integer healthCheckInterval;
private String vbrInstanceId;
public EnableCenVbrHealthCheckRequest() {
super("Cbn", "2017-09-12", "EnableCenVbrHealthCheck", "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 getHealthCheckTargetIp() {
return this.healthCheckTargetIp;
}
public void setHealthCheckTargetIp(String healthCheckTargetIp) {
this.healthCheckTargetIp = healthCheckTargetIp;
if(healthCheckTargetIp != null){
putQueryParameter("HealthCheckTargetIp", healthCheckTargetIp);
}
}
public String getDescription() {
return this.description;
}
public void setDescription(String description) {
this.description = description;
if(description != null){
putQueryParameter("Description", description);
}
}
public Integer getHealthyThreshold() {
return this.healthyThreshold;
}
public void setHealthyThreshold(Integer healthyThreshold) {
this.healthyThreshold = healthyThreshold;
if(healthyThreshold != null){
putQueryParameter("HealthyThreshold", healthyThreshold.toString());
}
}
public Long getVbrInstanceOwnerId() {
return this.vbrInstanceOwnerId;
}
public void setVbrInstanceOwnerId(Long vbrInstanceOwnerId) {
this.vbrInstanceOwnerId = vbrInstanceOwnerId;
if(vbrInstanceOwnerId != null){
putQueryParameter("VbrInstanceOwnerId", vbrInstanceOwnerId.toString());
}
}
public Boolean getHealthCheckOnly() {
return this.healthCheckOnly;
}
public void setHealthCheckOnly(Boolean healthCheckOnly) {
this.healthCheckOnly = healthCheckOnly;
if(healthCheckOnly != null){
putQueryParameter("HealthCheckOnly", healthCheckOnly.toString());
}
}
public String getVbrInstanceRegionId() {
return this.vbrInstanceRegionId;
}
public void setVbrInstanceRegionId(String vbrInstanceRegionId) {
this.vbrInstanceRegionId = vbrInstanceRegionId;
if(vbrInstanceRegionId != null){
putQueryParameter("VbrInstanceRegionId", vbrInstanceRegionId);
}
}
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 getHealthCheckSourceIp() {
return this.healthCheckSourceIp;
}
public void setHealthCheckSourceIp(String healthCheckSourceIp) {
this.healthCheckSourceIp = healthCheckSourceIp;
if(healthCheckSourceIp != null){
putQueryParameter("HealthCheckSourceIp", healthCheckSourceIp);
}
}
public Integer getHealthCheckInterval() {
return this.healthCheckInterval;
}
public void setHealthCheckInterval(Integer healthCheckInterval) {
this.healthCheckInterval = healthCheckInterval;
if(healthCheckInterval != null){
putQueryParameter("HealthCheckInterval", healthCheckInterval.toString());
}
}
public String getVbrInstanceId() {
return this.vbrInstanceId;
}
public void setVbrInstanceId(String vbrInstanceId) {
this.vbrInstanceId = vbrInstanceId;
if(vbrInstanceId != null){
putQueryParameter("VbrInstanceId", vbrInstanceId);
}
}
@Override
public Class<EnableCenVbrHealthCheckResponse> getResponseClass() {
return EnableCenVbrHealthCheckResponse.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/EnableCenVbrHealthCheckResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS 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.EnableCenVbrHealthCheckResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class EnableCenVbrHealthCheckResponse extends AcsResponse {
private String requestId;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
@Override
public EnableCenVbrHealthCheckResponse getInstance(UnmarshallerContext context) {
return EnableCenVbrHealthCheckResponseUnmarshaller.unmarshall(this, context);
}
}
|
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/EnableTransitRouterRouteTablePropagationRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS 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 EnableTransitRouterRouteTablePropagationRequest extends RpcAcsRequest<EnableTransitRouterRouteTablePropagationResponse> {
private Long resourceOwnerId;
private String clientToken;
private String transitRouterRouteTableId;
private Boolean dryRun;
private String resourceOwnerAccount;
private String ownerAccount;
private Long ownerId;
private String transitRouterAttachmentId;
public EnableTransitRouterRouteTablePropagationRequest() {
super("Cbn", "2017-09-12", "EnableTransitRouterRouteTablePropagation", "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 getTransitRouterRouteTableId() {
return this.transitRouterRouteTableId;
}
public void setTransitRouterRouteTableId(String transitRouterRouteTableId) {
this.transitRouterRouteTableId = transitRouterRouteTableId;
if(transitRouterRouteTableId != null){
putQueryParameter("TransitRouterRouteTableId", transitRouterRouteTableId);
}
}
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);
}
}
@Override
public Class<EnableTransitRouterRouteTablePropagationResponse> getResponseClass() {
return EnableTransitRouterRouteTablePropagationResponse.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/EnableTransitRouterRouteTablePropagationResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS 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.EnableTransitRouterRouteTablePropagationResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class EnableTransitRouterRouteTablePropagationResponse extends AcsResponse {
private String requestId;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
@Override
public EnableTransitRouterRouteTablePropagationResponse getInstance(UnmarshallerContext context) {
return EnableTransitRouterRouteTablePropagationResponseUnmarshaller.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/GrantInstanceToTransitRouterRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS 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 GrantInstanceToTransitRouterRequest extends RpcAcsRequest<GrantInstanceToTransitRouterResponse> {
private Long resourceOwnerId;
private String cenId;
private Long cenOwnerId;
private String instanceType;
private String resourceOwnerAccount;
private String ownerAccount;
private Long ownerId;
private String instanceId;
private String orderType;
public GrantInstanceToTransitRouterRequest() {
super("Cbn", "2017-09-12", "GrantInstanceToTransitRouter", "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 Long getCenOwnerId() {
return this.cenOwnerId;
}
public void setCenOwnerId(Long cenOwnerId) {
this.cenOwnerId = cenOwnerId;
if(cenOwnerId != null){
putQueryParameter("CenOwnerId", cenOwnerId.toString());
}
}
public String getInstanceType() {
return this.instanceType;
}
public void setInstanceType(String instanceType) {
this.instanceType = instanceType;
if(instanceType != null){
putQueryParameter("InstanceType", instanceType);
}
}
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 getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putQueryParameter("InstanceId", instanceId);
}
}
public String getOrderType() {
return this.orderType;
}
public void setOrderType(String orderType) {
this.orderType = orderType;
if(orderType != null){
putQueryParameter("OrderType", orderType);
}
}
@Override
public Class<GrantInstanceToTransitRouterResponse> getResponseClass() {
return GrantInstanceToTransitRouterResponse.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/GrantInstanceToTransitRouterResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS 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.GrantInstanceToTransitRouterResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class GrantInstanceToTransitRouterResponse extends AcsResponse {
private String requestId;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
@Override
public GrantInstanceToTransitRouterResponse getInstance(UnmarshallerContext context) {
return GrantInstanceToTransitRouterResponseUnmarshaller.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/ListCenChildInstanceRouteEntriesToAttachmentRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS 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 ListCenChildInstanceRouteEntriesToAttachmentRequest extends RpcAcsRequest<ListCenChildInstanceRouteEntriesToAttachmentResponse> {
private Long resourceOwnerId;
private String cenId;
private String nextToken;
private List<RouteFilter> routeFilters;
private String resourceOwnerAccount;
private String ownerAccount;
private Long ownerId;
private String transitRouterAttachmentId;
private String serviceType;
private Integer maxResults;
private String childInstanceRouteTableId;
public ListCenChildInstanceRouteEntriesToAttachmentRequest() {
super("Cbn", "2017-09-12", "ListCenChildInstanceRouteEntriesToAttachment", "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 getNextToken() {
return this.nextToken;
}
public void setNextToken(String nextToken) {
this.nextToken = nextToken;
if(nextToken != null){
putQueryParameter("NextToken", nextToken);
}
}
public List<RouteFilter> getRouteFilters() {
return this.routeFilters;
}
public void setRouteFilters(List<RouteFilter> routeFilters) {
this.routeFilters = routeFilters;
if (routeFilters != null) {
for (int depth1 = 0; depth1 < routeFilters.size(); depth1++) {
if (routeFilters.get(depth1).getValues() != null) {
for (int i = 0; i < routeFilters.get(depth1).getValues().size(); i++) {
putQueryParameter("RouteFilter." + (depth1 + 1) + ".Value." + (i + 1) , routeFilters.get(depth1).getValues().get(i));
}
}
putQueryParameter("RouteFilter." + (depth1 + 1) + ".Key" , routeFilters.get(depth1).getKey());
}
}
}
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 getServiceType() {
return this.serviceType;
}
public void setServiceType(String serviceType) {
this.serviceType = serviceType;
if(serviceType != null){
putQueryParameter("ServiceType", serviceType);
}
}
public Integer getMaxResults() {
return this.maxResults;
}
public void setMaxResults(Integer maxResults) {
this.maxResults = maxResults;
if(maxResults != null){
putQueryParameter("MaxResults", maxResults.toString());
}
}
public String getChildInstanceRouteTableId() {
return this.childInstanceRouteTableId;
}
public void setChildInstanceRouteTableId(String childInstanceRouteTableId) {
this.childInstanceRouteTableId = childInstanceRouteTableId;
if(childInstanceRouteTableId != null){
putQueryParameter("ChildInstanceRouteTableId", childInstanceRouteTableId);
}
}
public static class RouteFilter {
private List<String> values;
private String key;
public List<String> getValues() {
return this.values;
}
public void setValues(List<String> values) {
this.values = values;
}
public String getKey() {
return this.key;
}
public void setKey(String key) {
this.key = key;
}
}
@Override
public Class<ListCenChildInstanceRouteEntriesToAttachmentResponse> getResponseClass() {
return ListCenChildInstanceRouteEntriesToAttachmentResponse.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/ListCenChildInstanceRouteEntriesToAttachmentResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS 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 java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.cbn.transform.v20170912.ListCenChildInstanceRouteEntriesToAttachmentResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class ListCenChildInstanceRouteEntriesToAttachmentResponse extends AcsResponse {
private String nextToken;
private String requestId;
private List<TransitRouterAssociation> routeEntry;
public String getNextToken() {
return this.nextToken;
}
public void setNextToken(String nextToken) {
this.nextToken = nextToken;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public List<TransitRouterAssociation> getRouteEntry() {
return this.routeEntry;
}
public void setRouteEntry(List<TransitRouterAssociation> routeEntry) {
this.routeEntry = routeEntry;
}
public static class TransitRouterAssociation {
private String cenId;
private String transitRouterAttachmentId;
private String status;
private String serviceType;
private String destinationCidrBlock;
private String childInstanceRouteTableId;
public String getCenId() {
return this.cenId;
}
public void setCenId(String cenId) {
this.cenId = cenId;
}
public String getTransitRouterAttachmentId() {
return this.transitRouterAttachmentId;
}
public void setTransitRouterAttachmentId(String transitRouterAttachmentId) {
this.transitRouterAttachmentId = transitRouterAttachmentId;
}
public String getStatus() {
return this.status;
}
public void setStatus(String status) {
this.status = status;
}
public String getServiceType() {
return this.serviceType;
}
public void setServiceType(String serviceType) {
this.serviceType = serviceType;
}
public String getDestinationCidrBlock() {
return this.destinationCidrBlock;
}
public void setDestinationCidrBlock(String destinationCidrBlock) {
this.destinationCidrBlock = destinationCidrBlock;
}
public String getChildInstanceRouteTableId() {
return this.childInstanceRouteTableId;
}
public void setChildInstanceRouteTableId(String childInstanceRouteTableId) {
this.childInstanceRouteTableId = childInstanceRouteTableId;
}
}
@Override
public ListCenChildInstanceRouteEntriesToAttachmentResponse getInstance(UnmarshallerContext context) {
return ListCenChildInstanceRouteEntriesToAttachmentResponseUnmarshaller.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/ListCenInterRegionTrafficQosPoliciesRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS 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 ListCenInterRegionTrafficQosPoliciesRequest extends RpcAcsRequest<ListCenInterRegionTrafficQosPoliciesResponse> {
private Long resourceOwnerId;
private String nextToken;
private String trafficQosPolicyName;
private String trafficQosPolicyId;
private String resourceOwnerAccount;
private String ownerAccount;
private String trafficQosPolicyDescription;
private Long ownerId;
private String transitRouterId;
private String transitRouterAttachmentId;
private Integer maxResults;
public ListCenInterRegionTrafficQosPoliciesRequest() {
super("Cbn", "2017-09-12", "ListCenInterRegionTrafficQosPolicies", "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 getNextToken() {
return this.nextToken;
}
public void setNextToken(String nextToken) {
this.nextToken = nextToken;
if(nextToken != null){
putQueryParameter("NextToken", nextToken);
}
}
public String getTrafficQosPolicyName() {
return this.trafficQosPolicyName;
}
public void setTrafficQosPolicyName(String trafficQosPolicyName) {
this.trafficQosPolicyName = trafficQosPolicyName;
if(trafficQosPolicyName != null){
putQueryParameter("TrafficQosPolicyName", trafficQosPolicyName);
}
}
public String getTrafficQosPolicyId() {
return this.trafficQosPolicyId;
}
public void setTrafficQosPolicyId(String trafficQosPolicyId) {
this.trafficQosPolicyId = trafficQosPolicyId;
if(trafficQosPolicyId != null){
putQueryParameter("TrafficQosPolicyId", trafficQosPolicyId);
}
}
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 String getTrafficQosPolicyDescription() {
return this.trafficQosPolicyDescription;
}
public void setTrafficQosPolicyDescription(String trafficQosPolicyDescription) {
this.trafficQosPolicyDescription = trafficQosPolicyDescription;
if(trafficQosPolicyDescription != null){
putQueryParameter("TrafficQosPolicyDescription", trafficQosPolicyDescription);
}
}
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 getTransitRouterAttachmentId() {
return this.transitRouterAttachmentId;
}
public void setTransitRouterAttachmentId(String transitRouterAttachmentId) {
this.transitRouterAttachmentId = transitRouterAttachmentId;
if(transitRouterAttachmentId != null){
putQueryParameter("TransitRouterAttachmentId", transitRouterAttachmentId);
}
}
public Integer getMaxResults() {
return this.maxResults;
}
public void setMaxResults(Integer maxResults) {
this.maxResults = maxResults;
if(maxResults != null){
putQueryParameter("MaxResults", maxResults.toString());
}
}
@Override
public Class<ListCenInterRegionTrafficQosPoliciesResponse> getResponseClass() {
return ListCenInterRegionTrafficQosPoliciesResponse.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/ListCenInterRegionTrafficQosPoliciesResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS 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 java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.cbn.transform.v20170912.ListCenInterRegionTrafficQosPoliciesResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class ListCenInterRegionTrafficQosPoliciesResponse extends AcsResponse {
private String nextToken;
private String requestId;
private Integer totalCount;
private Integer maxResults;
private List<TrafficQosPolicy> trafficQosPolicies;
public String getNextToken() {
return this.nextToken;
}
public void setNextToken(String nextToken) {
this.nextToken = nextToken;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public Integer getTotalCount() {
return this.totalCount;
}
public void setTotalCount(Integer totalCount) {
this.totalCount = totalCount;
}
public Integer getMaxResults() {
return this.maxResults;
}
public void setMaxResults(Integer maxResults) {
this.maxResults = maxResults;
}
public List<TrafficQosPolicy> getTrafficQosPolicies() {
return this.trafficQosPolicies;
}
public void setTrafficQosPolicies(List<TrafficQosPolicy> trafficQosPolicies) {
this.trafficQosPolicies = trafficQosPolicies;
}
public static class TrafficQosPolicy {
private String trafficQosPolicyName;
private String trafficQosPolicyStatus;
private String trafficQosPolicyId;
private String trafficQosPolicyDescription;
private String transitRouterId;
private String transitRouterAttachmentId;
private List<TrafficQosQueue> trafficQosQueues;
public String getTrafficQosPolicyName() {
return this.trafficQosPolicyName;
}
public void setTrafficQosPolicyName(String trafficQosPolicyName) {
this.trafficQosPolicyName = trafficQosPolicyName;
}
public String getTrafficQosPolicyStatus() {
return this.trafficQosPolicyStatus;
}
public void setTrafficQosPolicyStatus(String trafficQosPolicyStatus) {
this.trafficQosPolicyStatus = trafficQosPolicyStatus;
}
public String getTrafficQosPolicyId() {
return this.trafficQosPolicyId;
}
public void setTrafficQosPolicyId(String trafficQosPolicyId) {
this.trafficQosPolicyId = trafficQosPolicyId;
}
public String getTrafficQosPolicyDescription() {
return this.trafficQosPolicyDescription;
}
public void setTrafficQosPolicyDescription(String trafficQosPolicyDescription) {
this.trafficQosPolicyDescription = trafficQosPolicyDescription;
}
public String getTransitRouterId() {
return this.transitRouterId;
}
public void setTransitRouterId(String transitRouterId) {
this.transitRouterId = transitRouterId;
}
public String getTransitRouterAttachmentId() {
return this.transitRouterAttachmentId;
}
public void setTransitRouterAttachmentId(String transitRouterAttachmentId) {
this.transitRouterAttachmentId = transitRouterAttachmentId;
}
public List<TrafficQosQueue> getTrafficQosQueues() {
return this.trafficQosQueues;
}
public void setTrafficQosQueues(List<TrafficQosQueue> trafficQosQueues) {
this.trafficQosQueues = trafficQosQueues;
}
public static class TrafficQosQueue {
private String qosQueueName;
private Integer remainBandwidthPercent;
private String qosQueueId;
private String qosQueueDescription;
private List<Integer> dscps;
public String getQosQueueName() {
return this.qosQueueName;
}
public void setQosQueueName(String qosQueueName) {
this.qosQueueName = qosQueueName;
}
public Integer getRemainBandwidthPercent() {
return this.remainBandwidthPercent;
}
public void setRemainBandwidthPercent(Integer remainBandwidthPercent) {
this.remainBandwidthPercent = remainBandwidthPercent;
}
public String getQosQueueId() {
return this.qosQueueId;
}
public void setQosQueueId(String qosQueueId) {
this.qosQueueId = qosQueueId;
}
public String getQosQueueDescription() {
return this.qosQueueDescription;
}
public void setQosQueueDescription(String qosQueueDescription) {
this.qosQueueDescription = qosQueueDescription;
}
public List<Integer> getDscps() {
return this.dscps;
}
public void setDscps(List<Integer> dscps) {
this.dscps = dscps;
}
}
}
@Override
public ListCenInterRegionTrafficQosPoliciesResponse getInstance(UnmarshallerContext context) {
return ListCenInterRegionTrafficQosPoliciesResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.