All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.aliyuncs.csas.model.v20230120.GetDynamicRouteResponse Maven / Gradle / Ivy

/*
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package com.aliyuncs.csas.model.v20230120;

import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.csas.transform.v20230120.GetDynamicRouteResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;

/**
 * @author auto create
 * @version 
 */
public class GetDynamicRouteResponse extends AcsResponse {

	private String requestId;

	private DynamicRoute dynamicRoute;

	public String getRequestId() {
		return this.requestId;
	}

	public void setRequestId(String requestId) {
		this.requestId = requestId;
	}

	public DynamicRoute getDynamicRoute() {
		return this.dynamicRoute;
	}

	public void setDynamicRoute(DynamicRoute dynamicRoute) {
		this.dynamicRoute = dynamicRoute;
	}

	public static class DynamicRoute {

		private String dynamicRouteId;

		private String name;

		private String description;

		private String status;

		private Integer priority;

		private String applicationType;

		private String dynamicRouteType;

		private String nextHop;

		private String createTime;

		private List regionIds;

		private List applicationIds;

		private List tagIds;

		public String getDynamicRouteId() {
			return this.dynamicRouteId;
		}

		public void setDynamicRouteId(String dynamicRouteId) {
			this.dynamicRouteId = dynamicRouteId;
		}

		public String getName() {
			return this.name;
		}

		public void setName(String name) {
			this.name = name;
		}

		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;
		}

		public Integer getPriority() {
			return this.priority;
		}

		public void setPriority(Integer priority) {
			this.priority = priority;
		}

		public String getApplicationType() {
			return this.applicationType;
		}

		public void setApplicationType(String applicationType) {
			this.applicationType = applicationType;
		}

		public String getDynamicRouteType() {
			return this.dynamicRouteType;
		}

		public void setDynamicRouteType(String dynamicRouteType) {
			this.dynamicRouteType = dynamicRouteType;
		}

		public String getNextHop() {
			return this.nextHop;
		}

		public void setNextHop(String nextHop) {
			this.nextHop = nextHop;
		}

		public String getCreateTime() {
			return this.createTime;
		}

		public void setCreateTime(String createTime) {
			this.createTime = createTime;
		}

		public List getRegionIds() {
			return this.regionIds;
		}

		public void setRegionIds(List regionIds) {
			this.regionIds = regionIds;
		}

		public List getApplicationIds() {
			return this.applicationIds;
		}

		public void setApplicationIds(List applicationIds) {
			this.applicationIds = applicationIds;
		}

		public List getTagIds() {
			return this.tagIds;
		}

		public void setTagIds(List tagIds) {
			this.tagIds = tagIds;
		}
	}

	@Override
	public GetDynamicRouteResponse getInstance(UnmarshallerContext context) {
		return	GetDynamicRouteResponseUnmarshaller.unmarshall(this, context);
	}

	@Override
	public boolean checkShowJsonItemName() {
		return false;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy