Class: TencentCloud::Ssm::V20190923::GetSecretValueRequest
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Ssm::V20190923::GetSecretValueRequest
- Defined in:
- lib/v20190923/models.rb
Overview
GetSecretValue请求参数结构体
Instance Attribute Summary collapse
-
#SecretName ⇒ Object
对于云产品凭据如Mysql凭据,通过指定凭据名称和历史版本号来获取历史轮转凭据的明文信息,如果要获取当前正在使用的凭据版本的明文,需要将版本号指定为:SSM_Current。.
-
#VersionId ⇒ Object
对于云产品凭据如Mysql凭据,通过指定凭据名称和历史版本号来获取历史轮转凭据的明文信息,如果要获取当前正在使用的凭据版本的明文,需要将版本号指定为:SSM_Current。.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(secretname = nil, versionid = nil) ⇒ GetSecretValueRequest
constructor
A new instance of GetSecretValueRequest.
Constructor Details
#initialize(secretname = nil, versionid = nil) ⇒ GetSecretValueRequest
Returns a new instance of GetSecretValueRequest.
856 857 858 859 |
# File 'lib/v20190923/models.rb', line 856 def initialize(secretname=nil, versionid=nil) @SecretName = secretname @VersionId = versionid end |
Instance Attribute Details
#SecretName ⇒ Object
对于云产品凭据如Mysql凭据,通过指定凭据名称和历史版本号来获取历史轮转凭据的明文信息,如果要获取当前正在使用的凭据版本的明文,需要将版本号指定为:SSM_Current。
854 855 856 |
# File 'lib/v20190923/models.rb', line 854 def SecretName @SecretName end |
#VersionId ⇒ Object
对于云产品凭据如Mysql凭据,通过指定凭据名称和历史版本号来获取历史轮转凭据的明文信息,如果要获取当前正在使用的凭据版本的明文,需要将版本号指定为:SSM_Current。
854 855 856 |
# File 'lib/v20190923/models.rb', line 854 def VersionId @VersionId end |
Instance Method Details
#deserialize(params) ⇒ Object
861 862 863 864 |
# File 'lib/v20190923/models.rb', line 861 def deserialize(params) @SecretName = params['SecretName'] @VersionId = params['VersionId'] end |