Class: TencentCloud::Organization::V20210331::ListRoleConfigurationsResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Organization::V20210331::ListRoleConfigurationsResponse
- Defined in:
- lib/v20210331/models.rb
Overview
ListRoleConfigurations返回参数结构体
Instance Attribute Summary collapse
- #IsTruncated ⇒ Object
- #MaxResults ⇒ Object
- #NextToken ⇒ Object
- #RequestId ⇒ Object
- #RoleConfigurations ⇒ Object
- #TotalCounts ⇒ Object
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(totalcounts = nil, maxresults = nil, istruncated = nil, nexttoken = nil, roleconfigurations = nil, requestid = nil) ⇒ ListRoleConfigurationsResponse
constructor
A new instance of ListRoleConfigurationsResponse.
Constructor Details
#initialize(totalcounts = nil, maxresults = nil, istruncated = nil, nexttoken = nil, roleconfigurations = nil, requestid = nil) ⇒ ListRoleConfigurationsResponse
Returns a new instance of ListRoleConfigurationsResponse.
5238 5239 5240 5241 5242 5243 5244 5245 |
# File 'lib/v20210331/models.rb', line 5238 def initialize(totalcounts=nil, maxresults=nil, istruncated=nil, nexttoken=nil, roleconfigurations=nil, requestid=nil) @TotalCounts = totalcounts @MaxResults = maxresults @IsTruncated = istruncated @NextToken = nexttoken @RoleConfigurations = roleconfigurations @RequestId = requestid end |
Instance Attribute Details
#IsTruncated ⇒ Object
5236 5237 5238 |
# File 'lib/v20210331/models.rb', line 5236 def IsTruncated @IsTruncated end |
#MaxResults ⇒ Object
5236 5237 5238 |
# File 'lib/v20210331/models.rb', line 5236 def MaxResults @MaxResults end |
#NextToken ⇒ Object
5236 5237 5238 |
# File 'lib/v20210331/models.rb', line 5236 def NextToken @NextToken end |
#RequestId ⇒ Object
5236 5237 5238 |
# File 'lib/v20210331/models.rb', line 5236 def RequestId @RequestId end |
#RoleConfigurations ⇒ Object
5236 5237 5238 |
# File 'lib/v20210331/models.rb', line 5236 def RoleConfigurations @RoleConfigurations end |
#TotalCounts ⇒ Object
5236 5237 5238 |
# File 'lib/v20210331/models.rb', line 5236 def TotalCounts @TotalCounts end |
Instance Method Details
#deserialize(params) ⇒ Object
5247 5248 5249 5250 5251 5252 5253 5254 5255 5256 5257 5258 5259 5260 5261 |
# File 'lib/v20210331/models.rb', line 5247 def deserialize(params) @TotalCounts = params['TotalCounts'] @MaxResults = params['MaxResults'] @IsTruncated = params['IsTruncated'] @NextToken = params['NextToken'] unless params['RoleConfigurations'].nil? @RoleConfigurations = [] params['RoleConfigurations'].each do |i| roleconfiguration_tmp = RoleConfiguration.new roleconfiguration_tmp.deserialize(i) @RoleConfigurations << roleconfiguration_tmp end end @RequestId = params['RequestId'] end |