Class: TencentCloud::Ssm::V20190923::DeleteSecretResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Ssm::V20190923::DeleteSecretResponse
- Defined in:
- lib/v20190923/models.rb
Overview
DeleteSecret返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(secretname = nil, deletetime = nil, requestid = nil) ⇒ DeleteSecretResponse
constructor
A new instance of DeleteSecretResponse.
Constructor Details
#initialize(secretname = nil, deletetime = nil, requestid = nil) ⇒ DeleteSecretResponse
Returns a new instance of DeleteSecretResponse.
356 357 358 359 360 |
# File 'lib/v20190923/models.rb', line 356 def initialize(secretname=nil, deletetime=nil, requestid=nil) @SecretName = secretname @DeleteTime = deletetime @RequestId = requestid end |
Instance Attribute Details
#DeleteTime ⇒ Object
354 355 356 |
# File 'lib/v20190923/models.rb', line 354 def DeleteTime @DeleteTime end |
#RequestId ⇒ Object
354 355 356 |
# File 'lib/v20190923/models.rb', line 354 def RequestId @RequestId end |
#SecretName ⇒ Object
354 355 356 |
# File 'lib/v20190923/models.rb', line 354 def SecretName @SecretName end |
Instance Method Details
#deserialize(params) ⇒ Object
362 363 364 365 366 |
# File 'lib/v20190923/models.rb', line 362 def deserialize(params) @SecretName = params['SecretName'] @DeleteTime = params['DeleteTime'] @RequestId = params['RequestId'] end |