Class: TencentCloud::Dbbrain::V20210527::DescribeDBAutonomyActionsResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Dbbrain::V20210527::DescribeDBAutonomyActionsResponse
- Defined in:
- lib/v20210527/models.rb
Overview
DescribeDBAutonomyActions返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(totalcount = nil, actions = nil, requestid = nil) ⇒ DescribeDBAutonomyActionsResponse
constructor
A new instance of DescribeDBAutonomyActionsResponse.
Constructor Details
#initialize(totalcount = nil, actions = nil, requestid = nil) ⇒ DescribeDBAutonomyActionsResponse
2086 2087 2088 2089 2090 |
# File 'lib/v20210527/models.rb', line 2086 def initialize(totalcount=nil, actions=nil, requestid=nil) @TotalCount = totalcount @Actions = actions @RequestId = requestid end |
Instance Attribute Details
#Actions ⇒ Object
2084 2085 2086 |
# File 'lib/v20210527/models.rb', line 2084 def Actions @Actions end |
#RequestId ⇒ Object
2084 2085 2086 |
# File 'lib/v20210527/models.rb', line 2084 def RequestId @RequestId end |
#TotalCount ⇒ Object
2084 2085 2086 |
# File 'lib/v20210527/models.rb', line 2084 def TotalCount @TotalCount end |
Instance Method Details
#deserialize(params) ⇒ Object
2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 |
# File 'lib/v20210527/models.rb', line 2092 def deserialize(params) @TotalCount = params['TotalCount'] unless params['Actions'].nil? @Actions = [] params['Actions'].each do |i| autonomyactionvo_tmp = AutonomyActionVo.new autonomyactionvo_tmp.deserialize(i) @Actions << autonomyactionvo_tmp end end @RequestId = params['RequestId'] end |