com.aliyuncs.cbn.model.v20170912.ListCenInterRegionTrafficQosPoliciesResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aliyun-java-sdk-cbn Show documentation
Show all versions of aliyun-java-sdk-cbn Show documentation
Aliyun Open API SDK for Java
Copyright (C) Alibaba Cloud Computing
All rights reserved.
版权所有 (C)阿里云计算有限公司
http://www.aliyun.com
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS 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 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 getTrafficQosPolicies() {
return this.trafficQosPolicies;
}
public void setTrafficQosPolicies(List 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 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 getTrafficQosQueues() {
return this.trafficQosQueues;
}
public void setTrafficQosQueues(List trafficQosQueues) {
this.trafficQosQueues = trafficQosQueues;
}
public static class TrafficQosQueue {
private String qosQueueName;
private Integer remainBandwidthPercent;
private String qosQueueId;
private String qosQueueDescription;
private List 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 getDscps() {
return this.dscps;
}
public void setDscps(List dscps) {
this.dscps = dscps;
}
}
}
@Override
public ListCenInterRegionTrafficQosPoliciesResponse getInstance(UnmarshallerContext context) {
return ListCenInterRegionTrafficQosPoliciesResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy