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.
2670 2671 2672 2673 |
# File 'lib/v20190116/models.rb', line 2670 def initialize(secretidlastusedrows=nil, requestid=nil) @SecretIdLastUsedRows = secretidlastusedrows @RequestId = requestid end |
Instance Attribute Details
#RequestId ⇒ Object
2668 2669 2670 |
# File 'lib/v20190116/models.rb', line 2668 def RequestId @RequestId end |
#SecretIdLastUsedRows ⇒ Object
2668 2669 2670 |
# File 'lib/v20190116/models.rb', line 2668 def SecretIdLastUsedRows @SecretIdLastUsedRows end |
Instance Method Details
#deserialize(params) ⇒ Object
2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 |
# File 'lib/v20190116/models.rb', line 2675 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 |