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

com.aliyun.ddoscoo20200101.models.DescribeWebAccessLogDispatchStatusResponseBody Maven / Gradle / Ivy

There is a newer version: 3.4.2
Show newest version
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.ddoscoo20200101.models;

import com.aliyun.tea.*;

public class DescribeWebAccessLogDispatchStatusResponseBody extends TeaModel {
    /**
     * 

The ID of the request.

*/ @NameInMap("RequestId") public String requestId; /** *

Indicates whether the log analysis feature is enabled for domain names.

*/ @NameInMap("SlsConfigStatus") public java.util.List slsConfigStatus; /** *

The total number of entries returned.

*/ @NameInMap("TotalCount") public Integer totalCount; public static DescribeWebAccessLogDispatchStatusResponseBody build(java.util.Map map) throws Exception { DescribeWebAccessLogDispatchStatusResponseBody self = new DescribeWebAccessLogDispatchStatusResponseBody(); return TeaModel.build(map, self); } public DescribeWebAccessLogDispatchStatusResponseBody setRequestId(String requestId) { this.requestId = requestId; return this; } public String getRequestId() { return this.requestId; } public DescribeWebAccessLogDispatchStatusResponseBody setSlsConfigStatus(java.util.List slsConfigStatus) { this.slsConfigStatus = slsConfigStatus; return this; } public java.util.List getSlsConfigStatus() { return this.slsConfigStatus; } public DescribeWebAccessLogDispatchStatusResponseBody setTotalCount(Integer totalCount) { this.totalCount = totalCount; return this; } public Integer getTotalCount() { return this.totalCount; } public static class DescribeWebAccessLogDispatchStatusResponseBodySlsConfigStatus extends TeaModel { /** *

The domain name.

*/ @NameInMap("Domain") public String domain; /** *

Indicates whether the log analysis feature is enabled. Valid values:

*
*

* **true**: yes

*

* **false**: no

*/ @NameInMap("Enable") public Boolean enable; public static DescribeWebAccessLogDispatchStatusResponseBodySlsConfigStatus build(java.util.Map map) throws Exception { DescribeWebAccessLogDispatchStatusResponseBodySlsConfigStatus self = new DescribeWebAccessLogDispatchStatusResponseBodySlsConfigStatus(); return TeaModel.build(map, self); } public DescribeWebAccessLogDispatchStatusResponseBodySlsConfigStatus setDomain(String domain) { this.domain = domain; return this; } public String getDomain() { return this.domain; } public DescribeWebAccessLogDispatchStatusResponseBodySlsConfigStatus setEnable(Boolean enable) { this.enable = enable; return this; } public Boolean getEnable() { return this.enable; } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy