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

com.aliyuncs.arms.model.v20190808.GetMultipleTraceResponse Maven / Gradle / Ivy

Go to download

Aliyun Open API SDK for Java Copyright (C) Alibaba Cloud Computing All rights reserved. 版权所有 (C)阿里云计算有限公司 http://www.aliyun.com

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

package com.aliyuncs.arms.model.v20190808;

import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.arms.transform.v20190808.GetMultipleTraceResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;

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

	private String requestId;

	private List multiCallChainInfos;

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

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

	public List getMultiCallChainInfos() {
		return this.multiCallChainInfos;
	}

	public void setMultiCallChainInfos(List multiCallChainInfos) {
		this.multiCallChainInfos = multiCallChainInfos;
	}

	public static class MultiCallChainInfo {

		private String traceID;

		private List spans;

		public String getTraceID() {
			return this.traceID;
		}

		public void setTraceID(String traceID) {
			this.traceID = traceID;
		}

		public List getSpans() {
			return this.spans;
		}

		public void setSpans(List spans) {
			this.spans = spans;
		}

		public static class Span {

			private String traceID;

			private String operationName;

			private Long duration;

			private String serviceName;

			private String serviceIp;

			private Long timestamp;

			private String rpcId;

			private String resultCode;

			private Boolean haveStack;

			private Integer rpcType;

			private List tagEntryList;

			private List logEventList;

			public String getTraceID() {
				return this.traceID;
			}

			public void setTraceID(String traceID) {
				this.traceID = traceID;
			}

			public String getOperationName() {
				return this.operationName;
			}

			public void setOperationName(String operationName) {
				this.operationName = operationName;
			}

			public Long getDuration() {
				return this.duration;
			}

			public void setDuration(Long duration) {
				this.duration = duration;
			}

			public String getServiceName() {
				return this.serviceName;
			}

			public void setServiceName(String serviceName) {
				this.serviceName = serviceName;
			}

			public String getServiceIp() {
				return this.serviceIp;
			}

			public void setServiceIp(String serviceIp) {
				this.serviceIp = serviceIp;
			}

			public Long getTimestamp() {
				return this.timestamp;
			}

			public void setTimestamp(Long timestamp) {
				this.timestamp = timestamp;
			}

			public String getRpcId() {
				return this.rpcId;
			}

			public void setRpcId(String rpcId) {
				this.rpcId = rpcId;
			}

			public String getResultCode() {
				return this.resultCode;
			}

			public void setResultCode(String resultCode) {
				this.resultCode = resultCode;
			}

			public Boolean getHaveStack() {
				return this.haveStack;
			}

			public void setHaveStack(Boolean haveStack) {
				this.haveStack = haveStack;
			}

			public Integer getRpcType() {
				return this.rpcType;
			}

			public void setRpcType(Integer rpcType) {
				this.rpcType = rpcType;
			}

			public List getTagEntryList() {
				return this.tagEntryList;
			}

			public void setTagEntryList(List tagEntryList) {
				this.tagEntryList = tagEntryList;
			}

			public List getLogEventList() {
				return this.logEventList;
			}

			public void setLogEventList(List logEventList) {
				this.logEventList = logEventList;
			}

			public static class TagEntry {

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

			public static class LogEvent {

				private Long timestamp;

				private List tagEntryList1;

				public Long getTimestamp() {
					return this.timestamp;
				}

				public void setTimestamp(Long timestamp) {
					this.timestamp = timestamp;
				}

				public List getTagEntryList1() {
					return this.tagEntryList1;
				}

				public void setTagEntryList1(List tagEntryList1) {
					this.tagEntryList1 = tagEntryList1;
				}

				public static class TagEntry2 {

					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 GetMultipleTraceResponse getInstance(UnmarshallerContext context) {
		return	GetMultipleTraceResponseUnmarshaller.unmarshall(this, context);
	}

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy