com.aliyun.dkms.gcs.sdk.models.GetSecretValueRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alibabacloud-dkms-gcs-sdk Show documentation
Show all versions of alibabacloud-dkms-gcs-sdk Show documentation
Dedicated Key Management Service Java SDK
The newest version!
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dkms.gcs.sdk.models;
import com.aliyun.tea.*;
public class GetSecretValueRequest extends TeaModel {
/**
* 凭据名称
*/
@NameInMap("SecretName")
public String secretName;
/**
* 版本状态
*/
@NameInMap("VersionStage")
public String versionStage;
/**
* 版本号
*/
@NameInMap("VersionId")
public String versionId;
/**
* 是否获取凭据的拓展配置true(默认值):是,false:否
*/
@NameInMap("FetchExtendedConfig")
public Boolean fetchExtendedConfig;
/**
* 请求头
*/
@NameInMap("requestHeaders")
public java.util.Map requestHeaders;
public static GetSecretValueRequest build(java.util.Map map) throws Exception {
GetSecretValueRequest self = new GetSecretValueRequest();
return TeaModel.build(map, self);
}
public GetSecretValueRequest setSecretName(String secretName) {
this.secretName = secretName;
return this;
}
public String getSecretName() {
return this.secretName;
}
public GetSecretValueRequest setVersionStage(String versionStage) {
this.versionStage = versionStage;
return this;
}
public String getVersionStage() {
return this.versionStage;
}
public GetSecretValueRequest setVersionId(String versionId) {
this.versionId = versionId;
return this;
}
public String getVersionId() {
return this.versionId;
}
public GetSecretValueRequest setFetchExtendedConfig(Boolean fetchExtendedConfig) {
this.fetchExtendedConfig = fetchExtendedConfig;
return this;
}
public Boolean getFetchExtendedConfig() {
return this.fetchExtendedConfig;
}
public GetSecretValueRequest setRequestHeaders(java.util.Map requestHeaders) {
this.requestHeaders = requestHeaders;
return this;
}
public java.util.Map getRequestHeaders() {
return this.requestHeaders;
}
}