com.tencentcloudapi.mariadb.v20170312.models.DescribeDBLogFilesResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tencentcloud-sdk-java-mariadb Show documentation
Show all versions of tencentcloud-sdk-java-mariadb Show documentation
Tencent Cloud Open API SDK for Java
/*
* 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.mariadb.v20170312.models;
import com.tencentcloudapi.common.AbstractModel;
import com.google.gson.annotations.SerializedName;
import com.google.gson.annotations.Expose;
import java.util.HashMap;
public class DescribeDBLogFilesResponse extends AbstractModel{
/**
* 实例 ID,形如:tdsql-ow728lmc。
*/
@SerializedName("InstanceId")
@Expose
private String InstanceId;
/**
* 请求日志类型,取值只能为1、2、3或者4。1-binlog,2-冷备,3-errlog,4-slowlog。
*/
@SerializedName("Type")
@Expose
private Long Type;
/**
* 请求日志总数
*/
@SerializedName("Total")
@Expose
private Long Total;
/**
* 包含uri、length、mtime(修改时间)等信息
*/
@SerializedName("Files")
@Expose
private LogFileInfo [] Files;
/**
* 如果是VPC网络的实例,做用本前缀加上URI为下载地址
*/
@SerializedName("VpcPrefix")
@Expose
private String VpcPrefix;
/**
* 如果是普通网络的实例,做用本前缀加上URI为下载地址
*/
@SerializedName("NormalPrefix")
@Expose
private String NormalPrefix;
/**
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
*/
@SerializedName("RequestId")
@Expose
private String RequestId;
/**
* Get 实例 ID,形如:tdsql-ow728lmc。
* @return InstanceId 实例 ID,形如:tdsql-ow728lmc。
*/
public String getInstanceId() {
return this.InstanceId;
}
/**
* Set 实例 ID,形如:tdsql-ow728lmc。
* @param InstanceId 实例 ID,形如:tdsql-ow728lmc。
*/
public void setInstanceId(String InstanceId) {
this.InstanceId = InstanceId;
}
/**
* Get 请求日志类型,取值只能为1、2、3或者4。1-binlog,2-冷备,3-errlog,4-slowlog。
* @return Type 请求日志类型,取值只能为1、2、3或者4。1-binlog,2-冷备,3-errlog,4-slowlog。
*/
public Long getType() {
return this.Type;
}
/**
* Set 请求日志类型,取值只能为1、2、3或者4。1-binlog,2-冷备,3-errlog,4-slowlog。
* @param Type 请求日志类型,取值只能为1、2、3或者4。1-binlog,2-冷备,3-errlog,4-slowlog。
*/
public void setType(Long Type) {
this.Type = Type;
}
/**
* Get 请求日志总数
* @return Total 请求日志总数
*/
public Long getTotal() {
return this.Total;
}
/**
* Set 请求日志总数
* @param Total 请求日志总数
*/
public void setTotal(Long Total) {
this.Total = Total;
}
/**
* Get 包含uri、length、mtime(修改时间)等信息
* @return Files 包含uri、length、mtime(修改时间)等信息
*/
public LogFileInfo [] getFiles() {
return this.Files;
}
/**
* Set 包含uri、length、mtime(修改时间)等信息
* @param Files 包含uri、length、mtime(修改时间)等信息
*/
public void setFiles(LogFileInfo [] Files) {
this.Files = Files;
}
/**
* Get 如果是VPC网络的实例,做用本前缀加上URI为下载地址
* @return VpcPrefix 如果是VPC网络的实例,做用本前缀加上URI为下载地址
*/
public String getVpcPrefix() {
return this.VpcPrefix;
}
/**
* Set 如果是VPC网络的实例,做用本前缀加上URI为下载地址
* @param VpcPrefix 如果是VPC网络的实例,做用本前缀加上URI为下载地址
*/
public void setVpcPrefix(String VpcPrefix) {
this.VpcPrefix = VpcPrefix;
}
/**
* Get 如果是普通网络的实例,做用本前缀加上URI为下载地址
* @return NormalPrefix 如果是普通网络的实例,做用本前缀加上URI为下载地址
*/
public String getNormalPrefix() {
return this.NormalPrefix;
}
/**
* Set 如果是普通网络的实例,做用本前缀加上URI为下载地址
* @param NormalPrefix 如果是普通网络的实例,做用本前缀加上URI为下载地址
*/
public void setNormalPrefix(String NormalPrefix) {
this.NormalPrefix = NormalPrefix;
}
/**
* Get 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
* @return RequestId 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
*/
public String getRequestId() {
return this.RequestId;
}
/**
* Set 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
* @param RequestId 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
*/
public void setRequestId(String RequestId) {
this.RequestId = RequestId;
}
public DescribeDBLogFilesResponse() {
}
/**
* 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 DescribeDBLogFilesResponse(DescribeDBLogFilesResponse source) {
if (source.InstanceId != null) {
this.InstanceId = new String(source.InstanceId);
}
if (source.Type != null) {
this.Type = new Long(source.Type);
}
if (source.Total != null) {
this.Total = new Long(source.Total);
}
if (source.Files != null) {
this.Files = new LogFileInfo[source.Files.length];
for (int i = 0; i < source.Files.length; i++) {
this.Files[i] = new LogFileInfo(source.Files[i]);
}
}
if (source.VpcPrefix != null) {
this.VpcPrefix = new String(source.VpcPrefix);
}
if (source.NormalPrefix != null) {
this.NormalPrefix = new String(source.NormalPrefix);
}
if (source.RequestId != null) {
this.RequestId = new String(source.RequestId);
}
}
/**
* Internal implementation, normal users should not use it.
*/
public void toMap(HashMap map, String prefix) {
this.setParamSimple(map, prefix + "InstanceId", this.InstanceId);
this.setParamSimple(map, prefix + "Type", this.Type);
this.setParamSimple(map, prefix + "Total", this.Total);
this.setParamArrayObj(map, prefix + "Files.", this.Files);
this.setParamSimple(map, prefix + "VpcPrefix", this.VpcPrefix);
this.setParamSimple(map, prefix + "NormalPrefix", this.NormalPrefix);
this.setParamSimple(map, prefix + "RequestId", this.RequestId);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy