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

com.aliyun.sdk.service.gpdb20160503.models.DescribeDBInstanceSSLResponseBody Maven / Gradle / Ivy

The newest version!
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.gpdb20160503.models;

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

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

DescribeDBInstanceSSLResponseBody

*/ public class DescribeDBInstanceSSLResponseBody extends TeaModel { @com.aliyun.core.annotation.NameInMap("CertCommonName") private String certCommonName; @com.aliyun.core.annotation.NameInMap("DBInstanceId") private String DBInstanceId; @com.aliyun.core.annotation.NameInMap("DBInstanceName") private String DBInstanceName; @com.aliyun.core.annotation.NameInMap("RequestId") private String requestId; @com.aliyun.core.annotation.NameInMap("SSLEnabled") private Boolean SSLEnabled; @com.aliyun.core.annotation.NameInMap("SSLExpiredTime") private String SSLExpiredTime; private DescribeDBInstanceSSLResponseBody(Builder builder) { this.certCommonName = builder.certCommonName; this.DBInstanceId = builder.DBInstanceId; this.DBInstanceName = builder.DBInstanceName; this.requestId = builder.requestId; this.SSLEnabled = builder.SSLEnabled; this.SSLExpiredTime = builder.SSLExpiredTime; } public static Builder builder() { return new Builder(); } public static DescribeDBInstanceSSLResponseBody create() { return builder().build(); } /** * @return certCommonName */ public String getCertCommonName() { return this.certCommonName; } /** * @return DBInstanceId */ public String getDBInstanceId() { return this.DBInstanceId; } /** * @return DBInstanceName */ public String getDBInstanceName() { return this.DBInstanceName; } /** * @return requestId */ public String getRequestId() { return this.requestId; } /** * @return SSLEnabled */ public Boolean getSSLEnabled() { return this.SSLEnabled; } /** * @return SSLExpiredTime */ public String getSSLExpiredTime() { return this.SSLExpiredTime; } public static final class Builder { private String certCommonName; private String DBInstanceId; private String DBInstanceName; private String requestId; private Boolean SSLEnabled; private String SSLExpiredTime; /** * The name of the SSL certificate. */ public Builder certCommonName(String certCommonName) { this.certCommonName = certCommonName; return this; } /** * The ID of the instance. */ public Builder DBInstanceId(String DBInstanceId) { this.DBInstanceId = DBInstanceId; return this; } /** * The name of the instance. */ public Builder DBInstanceName(String DBInstanceName) { this.DBInstanceName = DBInstanceName; return this; } /** * The ID of the request. */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } /** * Indicates whether SSL encryption is enabled. */ public Builder SSLEnabled(Boolean SSLEnabled) { this.SSLEnabled = SSLEnabled; return this; } /** * The expiration time of the SSL certificate. */ public Builder SSLExpiredTime(String SSLExpiredTime) { this.SSLExpiredTime = SSLExpiredTime; return this; } public DescribeDBInstanceSSLResponseBody build() { return new DescribeDBInstanceSSLResponseBody(this); } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy