Class: TencentCloud::Ess::V20201111::DescribeIntegrationRolesResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Ess::V20201111::DescribeIntegrationRolesResponse
- Defined in:
- lib/v20201111/models.rb
Overview
DescribeIntegrationRoles返回参数结构体
Instance Attribute Summary collapse
-
#IntegrateRoles ⇒ Object
分页参数, 需要limit, offset 配合使用 例如: 您希望得到第三页的数据, 且每页限制最多10条 您可以使用 LIMIT 10 OFFSET 20.
-
#Limit ⇒ Object
分页参数, 需要limit, offset 配合使用 例如: 您希望得到第三页的数据, 且每页限制最多10条 您可以使用 LIMIT 10 OFFSET 20.
-
#Offset ⇒ Object
分页参数, 需要limit, offset 配合使用 例如: 您希望得到第三页的数据, 且每页限制最多10条 您可以使用 LIMIT 10 OFFSET 20.
-
#RequestId ⇒ Object
分页参数, 需要limit, offset 配合使用 例如: 您希望得到第三页的数据, 且每页限制最多10条 您可以使用 LIMIT 10 OFFSET 20.
-
#TotalCount ⇒ Object
分页参数, 需要limit, offset 配合使用 例如: 您希望得到第三页的数据, 且每页限制最多10条 您可以使用 LIMIT 10 OFFSET 20.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(offset = nil, limit = nil, totalcount = nil, integrateroles = nil, requestid = nil) ⇒ DescribeIntegrationRolesResponse
constructor
A new instance of DescribeIntegrationRolesResponse.
Constructor Details
#initialize(offset = nil, limit = nil, totalcount = nil, integrateroles = nil, requestid = nil) ⇒ DescribeIntegrationRolesResponse
Returns a new instance of DescribeIntegrationRolesResponse.
11042 11043 11044 11045 11046 11047 11048 |
# File 'lib/v20201111/models.rb', line 11042 def initialize(offset=nil, limit=nil, totalcount=nil, integrateroles=nil, requestid=nil) @Offset = offset @Limit = limit @TotalCount = totalcount @IntegrateRoles = integrateroles @RequestId = requestid end |
Instance Attribute Details
#IntegrateRoles ⇒ Object
分页参数, 需要limit, offset 配合使用 例如: 您希望得到第三页的数据, 且每页限制最多10条 您可以使用 LIMIT 10 OFFSET 20
11040 11041 11042 |
# File 'lib/v20201111/models.rb', line 11040 def IntegrateRoles @IntegrateRoles end |
#Limit ⇒ Object
分页参数, 需要limit, offset 配合使用 例如: 您希望得到第三页的数据, 且每页限制最多10条 您可以使用 LIMIT 10 OFFSET 20
11040 11041 11042 |
# File 'lib/v20201111/models.rb', line 11040 def Limit @Limit end |
#Offset ⇒ Object
分页参数, 需要limit, offset 配合使用 例如: 您希望得到第三页的数据, 且每页限制最多10条 您可以使用 LIMIT 10 OFFSET 20
11040 11041 11042 |
# File 'lib/v20201111/models.rb', line 11040 def Offset @Offset end |
#RequestId ⇒ Object
分页参数, 需要limit, offset 配合使用 例如: 您希望得到第三页的数据, 且每页限制最多10条 您可以使用 LIMIT 10 OFFSET 20
11040 11041 11042 |
# File 'lib/v20201111/models.rb', line 11040 def RequestId @RequestId end |
#TotalCount ⇒ Object
分页参数, 需要limit, offset 配合使用 例如: 您希望得到第三页的数据, 且每页限制最多10条 您可以使用 LIMIT 10 OFFSET 20
11040 11041 11042 |
# File 'lib/v20201111/models.rb', line 11040 def TotalCount @TotalCount end |
Instance Method Details
#deserialize(params) ⇒ Object
11050 11051 11052 11053 11054 11055 11056 11057 11058 11059 11060 11061 11062 11063 |
# File 'lib/v20201111/models.rb', line 11050 def deserialize(params) @Offset = params['Offset'] @Limit = params['Limit'] @TotalCount = params['TotalCount'] unless params['IntegrateRoles'].nil? @IntegrateRoles = [] params['IntegrateRoles'].each do |i| integraterole_tmp = IntegrateRole.new integraterole_tmp.deserialize(i) @IntegrateRoles << integraterole_tmp end end @RequestId = params['RequestId'] end |