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

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

ListSecretsResponseBody

*/ public class ListSecretsResponseBody extends TeaModel { @com.aliyun.core.annotation.NameInMap("Count") private Long count; @com.aliyun.core.annotation.NameInMap("Message") private String message; @com.aliyun.core.annotation.NameInMap("RequestId") private String requestId; @com.aliyun.core.annotation.NameInMap("Secrets") private Secrets secrets; @com.aliyun.core.annotation.NameInMap("Status") private String status; private ListSecretsResponseBody(Builder builder) { this.count = builder.count; this.message = builder.message; this.requestId = builder.requestId; this.secrets = builder.secrets; this.status = builder.status; } public static Builder builder() { return new Builder(); } public static ListSecretsResponseBody create() { return builder().build(); } /** * @return count */ public Long getCount() { return this.count; } /** * @return message */ public String getMessage() { return this.message; } /** * @return requestId */ public String getRequestId() { return this.requestId; } /** * @return secrets */ public Secrets getSecrets() { return this.secrets; } /** * @return status */ public String getStatus() { return this.status; } public static final class Builder { private Long count; private String message; private String requestId; private Secrets secrets; private String status; /** * The number of access credentials. */ public Builder count(Long count) { this.count = count; return this; } /** * The returned message. */ public Builder message(String message) { this.message = message; return this; } /** * The request ID. */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } /** * The queried access credentials. */ public Builder secrets(Secrets secrets) { this.secrets = secrets; return this; } /** * The status of the operation. Valid values: *

* * * **success** * * **fail** */ public Builder status(String status) { this.status = status; return this; } public ListSecretsResponseBody build() { return new ListSecretsResponseBody(this); } } public static class SecretsSecrets extends TeaModel { @com.aliyun.core.annotation.NameInMap("AccountId") private String accountId; @com.aliyun.core.annotation.NameInMap("DBInstanceId") private String DBInstanceId; @com.aliyun.core.annotation.NameInMap("Description") private String description; @com.aliyun.core.annotation.NameInMap("RegionId") private String regionId; @com.aliyun.core.annotation.NameInMap("SecretArn") private String secretArn; @com.aliyun.core.annotation.NameInMap("SecretName") private String secretName; @com.aliyun.core.annotation.NameInMap("Username") private String username; private SecretsSecrets(Builder builder) { this.accountId = builder.accountId; this.DBInstanceId = builder.DBInstanceId; this.description = builder.description; this.regionId = builder.regionId; this.secretArn = builder.secretArn; this.secretName = builder.secretName; this.username = builder.username; } public static Builder builder() { return new Builder(); } public static SecretsSecrets create() { return builder().build(); } /** * @return accountId */ public String getAccountId() { return this.accountId; } /** * @return DBInstanceId */ public String getDBInstanceId() { return this.DBInstanceId; } /** * @return description */ public String getDescription() { return this.description; } /** * @return regionId */ public String getRegionId() { return this.regionId; } /** * @return secretArn */ public String getSecretArn() { return this.secretArn; } /** * @return secretName */ public String getSecretName() { return this.secretName; } /** * @return username */ public String getUsername() { return this.username; } public static final class Builder { private String accountId; private String DBInstanceId; private String description; private String regionId; private String secretArn; private String secretName; private String username; /** * The ID of the Alibaba Cloud account. */ public Builder accountId(String accountId) { this.accountId = accountId; return this; } /** * The instance ID. */ public Builder DBInstanceId(String DBInstanceId) { this.DBInstanceId = DBInstanceId; return this; } /** * The description of the access credential. */ public Builder description(String description) { this.description = description; return this; } /** * The region ID of the instance. */ public Builder regionId(String regionId) { this.regionId = regionId; return this; } /** * The Alibaba Cloud Resource Name (ARN) of the access credential for the created Data API account. Format: `acs:gpdb:{{region}}:{{accountId}}:secret/{{secretName}}-{{32 digits random string}`. */ public Builder secretArn(String secretArn) { this.secretArn = secretArn; return this; } /** * The name of the access credential. */ public Builder secretName(String secretName) { this.secretName = secretName; return this; } /** * The name of the database account. */ public Builder username(String username) { this.username = username; return this; } public SecretsSecrets build() { return new SecretsSecrets(this); } } } public static class Secrets extends TeaModel { @com.aliyun.core.annotation.NameInMap("Secrets") private java.util.List < SecretsSecrets> secrets; private Secrets(Builder builder) { this.secrets = builder.secrets; } public static Builder builder() { return new Builder(); } public static Secrets create() { return builder().build(); } /** * @return secrets */ public java.util.List < SecretsSecrets> getSecrets() { return this.secrets; } public static final class Builder { private java.util.List < SecretsSecrets> secrets; /** * The queried access credentials. */ public Builder secrets(java.util.List < SecretsSecrets> secrets) { this.secrets = secrets; return this; } public Secrets build() { return new Secrets(this); } } } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy