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

com.aliyun.cloud_siem20220616.models.DescribeImportedLogCountResponseBody Maven / Gradle / Ivy

// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.cloud_siem20220616.models;

import com.aliyun.tea.*;

public class DescribeImportedLogCountResponseBody extends TeaModel {
    /**
     * 

The data returned.

*/ @NameInMap("Data") public DescribeImportedLogCountResponseBodyData data; /** *

The request ID.

* * example: *

6276D891-*****-55B2-87B9-74D413F7****

*/ @NameInMap("RequestId") public String requestId; public static DescribeImportedLogCountResponseBody build(java.util.Map map) throws Exception { DescribeImportedLogCountResponseBody self = new DescribeImportedLogCountResponseBody(); return TeaModel.build(map, self); } public DescribeImportedLogCountResponseBody setData(DescribeImportedLogCountResponseBodyData data) { this.data = data; return this; } public DescribeImportedLogCountResponseBodyData getData() { return this.data; } public DescribeImportedLogCountResponseBody setRequestId(String requestId) { this.requestId = requestId; return this; } public String getRequestId() { return this.requestId; } public static class DescribeImportedLogCountResponseBodyData extends TeaModel { /** *

The number of logs that are added.

* * example: *

10

*/ @NameInMap("ImportedLogCount") public Integer importedLogCount; /** *

The total number of logs.

* * example: *

59

*/ @NameInMap("TotalLogCount") public Integer totalLogCount; /** *

The number of logs that are not added.

* * example: *

49

*/ @NameInMap("UnImportedLogCount") public Integer unImportedLogCount; public static DescribeImportedLogCountResponseBodyData build(java.util.Map map) throws Exception { DescribeImportedLogCountResponseBodyData self = new DescribeImportedLogCountResponseBodyData(); return TeaModel.build(map, self); } public DescribeImportedLogCountResponseBodyData setImportedLogCount(Integer importedLogCount) { this.importedLogCount = importedLogCount; return this; } public Integer getImportedLogCount() { return this.importedLogCount; } public DescribeImportedLogCountResponseBodyData setTotalLogCount(Integer totalLogCount) { this.totalLogCount = totalLogCount; return this; } public Integer getTotalLogCount() { return this.totalLogCount; } public DescribeImportedLogCountResponseBodyData setUnImportedLogCount(Integer unImportedLogCount) { this.unImportedLogCount = unImportedLogCount; return this; } public Integer getUnImportedLogCount() { return this.unImportedLogCount; } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy