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

com.aliyun.sdk.service.polardb20170801.models.DescribeUserEncryptionKeyListResponseBody 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 DescribeUserEncryptionKeyListResponseBody} extends {@link TeaModel}
 *
 * 

DescribeUserEncryptionKeyListResponseBody

*/ public class DescribeUserEncryptionKeyListResponseBody extends TeaModel { @com.aliyun.core.annotation.NameInMap("DBClusterId") private String DBClusterId; @com.aliyun.core.annotation.NameInMap("KeyList") private java.util.List keyList; @com.aliyun.core.annotation.NameInMap("RequestId") private String requestId; private DescribeUserEncryptionKeyListResponseBody(Builder builder) { this.DBClusterId = builder.DBClusterId; this.keyList = builder.keyList; this.requestId = builder.requestId; } public static Builder builder() { return new Builder(); } public static DescribeUserEncryptionKeyListResponseBody create() { return builder().build(); } /** * @return DBClusterId */ public String getDBClusterId() { return this.DBClusterId; } /** * @return keyList */ public java.util.List getKeyList() { return this.keyList; } /** * @return requestId */ public String getRequestId() { return this.requestId; } public static final class Builder { private String DBClusterId; private java.util.List keyList; private String requestId; /** *

The ID of the cluster.

* * example: *

pc-************

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

Cluster key list.

*/ public Builder keyList(java.util.List keyList) { this.keyList = keyList; return this; } /** *

The ID of the request.

* * example: *

A7E6A8FD-C50B-46B2-BA85-D8B8D3******

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy