Class UpdateSecretRequest

    • Constructor Detail

      • UpdateSecretRequest

        public UpdateSecretRequest()
      • UpdateSecretRequest

        public UpdateSecretRequest​(UpdateSecretRequest 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.
    • Method Detail

      • getSecretName

        public String getSecretName()
        Get 指定需要更新凭据内容的名称。
        Returns:
        SecretName 指定需要更新凭据内容的名称。
      • setSecretName

        public void setSecretName​(String SecretName)
        Set 指定需要更新凭据内容的名称。
        Parameters:
        SecretName - 指定需要更新凭据内容的名称。
      • getVersionId

        public String getVersionId()
        Get 指定需要更新凭据内容的版本号。
        Returns:
        VersionId 指定需要更新凭据内容的版本号。
      • setVersionId

        public void setVersionId​(String VersionId)
        Set 指定需要更新凭据内容的版本号。
        Parameters:
        VersionId - 指定需要更新凭据内容的版本号。
      • getSecretBinary

        public String getSecretBinary()
        Get 新的凭据内容为二进制的场景使用该字段,并使用base64进行编码。 SecretBinary 和 SecretString 只能一个不为空。
        Returns:
        SecretBinary 新的凭据内容为二进制的场景使用该字段,并使用base64进行编码。 SecretBinary 和 SecretString 只能一个不为空。
      • setSecretBinary

        public void setSecretBinary​(String SecretBinary)
        Set 新的凭据内容为二进制的场景使用该字段,并使用base64进行编码。 SecretBinary 和 SecretString 只能一个不为空。
        Parameters:
        SecretBinary - 新的凭据内容为二进制的场景使用该字段,并使用base64进行编码。 SecretBinary 和 SecretString 只能一个不为空。
      • getSecretString

        public String getSecretString()
        Get 新的凭据内容为文本的场景使用该字段,不需要base64编码SecretBinary 和 SecretString 只能一个不为空。
        Returns:
        SecretString 新的凭据内容为文本的场景使用该字段,不需要base64编码SecretBinary 和 SecretString 只能一个不为空。
      • setSecretString

        public void setSecretString​(String SecretString)
        Set 新的凭据内容为文本的场景使用该字段,不需要base64编码SecretBinary 和 SecretString 只能一个不为空。
        Parameters:
        SecretString - 新的凭据内容为文本的场景使用该字段,不需要base64编码SecretBinary 和 SecretString 只能一个不为空。