Class: TencentCloud::Lighthouse::V20200324::DescribeSnapshotsDeniedActionsResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Lighthouse::V20200324::DescribeSnapshotsDeniedActionsResponse
- Defined in:
- lib/v20200324/models.rb
Overview
DescribeSnapshotsDeniedActions返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(snapshotdeniedactionset = nil, requestid = nil) ⇒ DescribeSnapshotsDeniedActionsResponse
constructor
A new instance of DescribeSnapshotsDeniedActionsResponse.
Constructor Details
#initialize(snapshotdeniedactionset = nil, requestid = nil) ⇒ DescribeSnapshotsDeniedActionsResponse
Returns a new instance of DescribeSnapshotsDeniedActionsResponse.
4041 4042 4043 4044 |
# File 'lib/v20200324/models.rb', line 4041 def initialize(snapshotdeniedactionset=nil, requestid=nil) @SnapshotDeniedActionSet = snapshotdeniedactionset @RequestId = requestid end |
Instance Attribute Details
#RequestId ⇒ Object
4039 4040 4041 |
# File 'lib/v20200324/models.rb', line 4039 def RequestId @RequestId end |
#SnapshotDeniedActionSet ⇒ Object
4039 4040 4041 |
# File 'lib/v20200324/models.rb', line 4039 def SnapshotDeniedActionSet @SnapshotDeniedActionSet end |
Instance Method Details
#deserialize(params) ⇒ Object
4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 |
# File 'lib/v20200324/models.rb', line 4046 def deserialize(params) unless params['SnapshotDeniedActionSet'].nil? @SnapshotDeniedActionSet = [] params['SnapshotDeniedActionSet'].each do |i| snapshotdeniedactions_tmp = SnapshotDeniedActions.new snapshotdeniedactions_tmp.deserialize(i) @SnapshotDeniedActionSet << snapshotdeniedactions_tmp end end @RequestId = params['RequestId'] end |