com.aliyun.sdk.service.cloudapi20160701.models.CreateSecretKeyResponseBody Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alibabacloud-cloudapi20160701 Show documentation
Show all versions of alibabacloud-cloudapi20160701 Show documentation
Alibaba Cloud CloudAPI (20160701) Async SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.cloudapi20160701.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link CreateSecretKeyResponseBody} extends {@link TeaModel}
*
* CreateSecretKeyResponseBody
*/
public class CreateSecretKeyResponseBody extends TeaModel {
@NameInMap("RequestId")
private String requestId;
@NameInMap("SecretKeyId")
private String secretKeyId;
@NameInMap("SecretKeyName")
private String secretKeyName;
private CreateSecretKeyResponseBody(Builder builder) {
this.requestId = builder.requestId;
this.secretKeyId = builder.secretKeyId;
this.secretKeyName = builder.secretKeyName;
}
public static Builder builder() {
return new Builder();
}
public static CreateSecretKeyResponseBody create() {
return builder().build();
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
/**
* @return secretKeyId
*/
public String getSecretKeyId() {
return this.secretKeyId;
}
/**
* @return secretKeyName
*/
public String getSecretKeyName() {
return this.secretKeyName;
}
public static final class Builder {
private String requestId;
private String secretKeyId;
private String secretKeyName;
/**
* RequestId.
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
/**
* SecretKeyId.
*/
public Builder secretKeyId(String secretKeyId) {
this.secretKeyId = secretKeyId;
return this;
}
/**
* SecretKeyName.
*/
public Builder secretKeyName(String secretKeyName) {
this.secretKeyName = secretKeyName;
return this;
}
public CreateSecretKeyResponseBody build() {
return new CreateSecretKeyResponseBody(this);
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy