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

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

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

import com.aliyun.sdk.gateway.pop.*;
import darabonba.core.*;
import darabonba.core.async.*;
import darabonba.core.sync.*;
import darabonba.core.client.*;
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.

* * example: *

pc-bp1s826a1up******

*/ public Builder DBClusterId(String DBClusterId) { this.DBClusterId = DBClusterId; return this; } /** *

The ID of the request.

* * example: *

3655211B-4D74-4E13-91E6-FF2AFE******

*/ public Builder requestId(String requestId) { this.requestId = requestId; return this; } /** *

Indicates whether the SQL Explorer feature is enabled. Valid values:

*
    *
  • Enable
  • *
  • Disabled
  • *
* * example: *

Enable

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy