Class: TencentCloud::Cam::V20190116::GetSecurityLastUsedResponse
- Inherits:
-
TencentCloud::Common::AbstractModel
- Object
- TencentCloud::Common::AbstractModel
- TencentCloud::Cam::V20190116::GetSecurityLastUsedResponse
- Defined in:
- lib/v20190116/models.rb
Overview
GetSecurityLastUsed返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(secretidlastusedrows = nil, requestid = nil) ⇒ GetSecurityLastUsedResponse
constructor
A new instance of GetSecurityLastUsedResponse.
Constructor Details
#initialize(secretidlastusedrows = nil, requestid = nil) ⇒ GetSecurityLastUsedResponse
Returns a new instance of GetSecurityLastUsedResponse.
2644 2645 2646 2647 |
# File 'lib/v20190116/models.rb', line 2644 def initialize(secretidlastusedrows=nil, requestid=nil) @SecretIdLastUsedRows = secretidlastusedrows @RequestId = requestid end |
Instance Attribute Details
#RequestId ⇒ Object
2642 2643 2644 |
# File 'lib/v20190116/models.rb', line 2642 def RequestId @RequestId end |
#SecretIdLastUsedRows ⇒ Object
2642 2643 2644 |
# File 'lib/v20190116/models.rb', line 2642 def SecretIdLastUsedRows @SecretIdLastUsedRows end |
Instance Method Details
#deserialize(params) ⇒ Object
2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 |
# File 'lib/v20190116/models.rb', line 2649 def deserialize(params) unless params['SecretIdLastUsedRows'].nil? @SecretIdLastUsedRows = [] params['SecretIdLastUsedRows'].each do |i| secretidlastused_tmp = SecretIdLastUsed.new secretidlastused_tmp.deserialize(i) @SecretIdLastUsedRows << secretidlastused_tmp end end @RequestId = params['RequestId'] end |