
com.tencentcloudapi.cls.v20201016.models.LogContextInfo Maven / Gradle / Ivy
/*
* Copyright (c) 2017-2018 THL A29 Limited, a Tencent company. All Rights Reserved.
*
* 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.tencentcloudapi.cls.v20201016.models;
import com.tencentcloudapi.common.AbstractModel;
import com.google.gson.annotations.SerializedName;
import com.google.gson.annotations.Expose;
import java.util.HashMap;
public class LogContextInfo extends AbstractModel{
/**
* 日志来源设备
*/
@SerializedName("Source")
@Expose
private String Source;
/**
* 采集路径
*/
@SerializedName("Filename")
@Expose
private String Filename;
/**
* 日志内容
*/
@SerializedName("Content")
@Expose
private String Content;
/**
* 日志包序号
*/
@SerializedName("PkgId")
@Expose
private String PkgId;
/**
* 日志包内一条日志的序号
*/
@SerializedName("PkgLogId")
@Expose
private Long PkgLogId;
/**
* 日志时间戳
*/
@SerializedName("BTime")
@Expose
private Long BTime;
/**
* Get 日志来源设备
* @return Source 日志来源设备
*/
public String getSource() {
return this.Source;
}
/**
* Set 日志来源设备
* @param Source 日志来源设备
*/
public void setSource(String Source) {
this.Source = Source;
}
/**
* Get 采集路径
* @return Filename 采集路径
*/
public String getFilename() {
return this.Filename;
}
/**
* Set 采集路径
* @param Filename 采集路径
*/
public void setFilename(String Filename) {
this.Filename = Filename;
}
/**
* Get 日志内容
* @return Content 日志内容
*/
public String getContent() {
return this.Content;
}
/**
* Set 日志内容
* @param Content 日志内容
*/
public void setContent(String Content) {
this.Content = Content;
}
/**
* Get 日志包序号
* @return PkgId 日志包序号
*/
public String getPkgId() {
return this.PkgId;
}
/**
* Set 日志包序号
* @param PkgId 日志包序号
*/
public void setPkgId(String PkgId) {
this.PkgId = PkgId;
}
/**
* Get 日志包内一条日志的序号
* @return PkgLogId 日志包内一条日志的序号
*/
public Long getPkgLogId() {
return this.PkgLogId;
}
/**
* Set 日志包内一条日志的序号
* @param PkgLogId 日志包内一条日志的序号
*/
public void setPkgLogId(Long PkgLogId) {
this.PkgLogId = PkgLogId;
}
/**
* Get 日志时间戳
* @return BTime 日志时间戳
*/
public Long getBTime() {
return this.BTime;
}
/**
* Set 日志时间戳
* @param BTime 日志时间戳
*/
public void setBTime(Long BTime) {
this.BTime = BTime;
}
public LogContextInfo() {
}
/**
* NOTE: Any ambiguous key set via .set("AnyKey", "value") will be a shallow copy,
* and any explicit key, i.e Foo, set via .setFoo("value") will be a deep copy.
*/
public LogContextInfo(LogContextInfo source) {
if (source.Source != null) {
this.Source = new String(source.Source);
}
if (source.Filename != null) {
this.Filename = new String(source.Filename);
}
if (source.Content != null) {
this.Content = new String(source.Content);
}
if (source.PkgId != null) {
this.PkgId = new String(source.PkgId);
}
if (source.PkgLogId != null) {
this.PkgLogId = new Long(source.PkgLogId);
}
if (source.BTime != null) {
this.BTime = new Long(source.BTime);
}
}
/**
* Internal implementation, normal users should not use it.
*/
public void toMap(HashMap map, String prefix) {
this.setParamSimple(map, prefix + "Source", this.Source);
this.setParamSimple(map, prefix + "Filename", this.Filename);
this.setParamSimple(map, prefix + "Content", this.Content);
this.setParamSimple(map, prefix + "PkgId", this.PkgId);
this.setParamSimple(map, prefix + "PkgLogId", this.PkgLogId);
this.setParamSimple(map, prefix + "BTime", this.BTime);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy