public class GetSecretValueResponse extends AbstractModel
header, skipSign
Constructor and Description |
---|
GetSecretValueResponse() |
GetSecretValueResponse(GetSecretValueResponse source)
NOTE: Any ambiguous key set via .set("AnyKey", "value") will be a shallow copy,
and any explicit key, i.e Foo, set via .setFoo("value") will be a deep copy.
|
Modifier and Type | Method and Description |
---|---|
String |
getRequestId()
Get 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
String |
getSecretBinary()
Get 在创建凭据(CreateSecret)时,如果指定的是二进制数据,则该字段为返回结果,并且使用base64进行编码,应用方需要进行base64解码后获取原始数据。
SecretBinary和SecretString只有一个不为空。
|
String |
getSecretName()
Get 凭据的名称。
|
String |
getSecretString()
Get 在创建凭据(CreateSecret)时,如果指定的是普通文本数据,则该字段为返回结果。
SecretBinary和SecretString只有一个不为空。
|
String |
getVersionId()
Get 该凭据对应的版本号。
|
void |
setRequestId(String RequestId)
Set 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
void |
setSecretBinary(String SecretBinary)
Set 在创建凭据(CreateSecret)时,如果指定的是二进制数据,则该字段为返回结果,并且使用base64进行编码,应用方需要进行base64解码后获取原始数据。
SecretBinary和SecretString只有一个不为空。
|
void |
setSecretName(String SecretName)
Set 凭据的名称。
|
void |
setSecretString(String SecretString)
Set 在创建凭据(CreateSecret)时,如果指定的是普通文本数据,则该字段为返回结果。
SecretBinary和SecretString只有一个不为空。
|
void |
setVersionId(String VersionId)
Set 该凭据对应的版本号。
|
void |
toMap(HashMap<String,String> map,
String prefix)
Internal implementation, normal users should not use it.
|
any, fromJsonString, getBinaryParams, GetHeader, getMultipartRequestParams, getSkipSign, isStream, set, SetHeader, setParamArrayObj, setParamArraySimple, setParamObj, setParamSimple, setSkipSign, toJsonString
public GetSecretValueResponse()
public GetSecretValueResponse(GetSecretValueResponse source)
public String getSecretName()
public void setSecretName(String SecretName)
SecretName
- 凭据的名称。public String getVersionId()
public void setVersionId(String VersionId)
VersionId
- 该凭据对应的版本号。public String getSecretBinary()
public void setSecretBinary(String SecretBinary)
SecretBinary
- 在创建凭据(CreateSecret)时,如果指定的是二进制数据,则该字段为返回结果,并且使用base64进行编码,应用方需要进行base64解码后获取原始数据。
SecretBinary和SecretString只有一个不为空。public String getSecretString()
public void setSecretString(String SecretString)
SecretString
- 在创建凭据(CreateSecret)时,如果指定的是普通文本数据,则该字段为返回结果。
SecretBinary和SecretString只有一个不为空。public String getRequestId()
public void setRequestId(String RequestId)
RequestId
- 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。Copyright © 2024. All rights reserved.