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

com.aliyun.sdk.service.polardb20170801.models.DescribePolarSQLCollectorPolicyResponseBody Maven / Gradle / Ivy

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

import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;

/**
 * {@link DescribePolarSQLCollectorPolicyResponseBody} extends {@link TeaModel}
 *
 * 

DescribePolarSQLCollectorPolicyResponseBody

*/ public class DescribePolarSQLCollectorPolicyResponseBody extends TeaModel { @com.aliyun.core.annotation.NameInMap("DBClusterId") private String DBClusterId; @com.aliyun.core.annotation.NameInMap("RequestId") private String requestId; @com.aliyun.core.annotation.NameInMap("SQLCollectorStatus") private String SQLCollectorStatus; private DescribePolarSQLCollectorPolicyResponseBody(Builder builder) { this.DBClusterId = builder.DBClusterId; this.requestId = builder.requestId; this.SQLCollectorStatus = builder.SQLCollectorStatus; } public static Builder builder() { return new Builder(); } public static DescribePolarSQLCollectorPolicyResponseBody create() { return builder().build(); } /** * @return DBClusterId */ public String getDBClusterId() { return this.DBClusterId; } /** * @return requestId */ public String getRequestId() { return this.requestId; } /** * @return SQLCollectorStatus */ public String getSQLCollectorStatus() { return this.SQLCollectorStatus; } public static final class Builder { private String DBClusterId; private String requestId; private String SQLCollectorStatus; /** * The IDs of the clusters. */ public Builder DBClusterId(String DBClusterId) { this.DBClusterId = DBClusterId; return this; } /** * The ID of the request. */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } /** * Indicates whether the SQL Explorer feature is enabled. Valid values: *

* * * **Enable** * * **Disabled** */ public Builder SQLCollectorStatus(String SQLCollectorStatus) { this.SQLCollectorStatus = SQLCollectorStatus; return this; } public DescribePolarSQLCollectorPolicyResponseBody build() { return new DescribePolarSQLCollectorPolicyResponseBody(this); } } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy