Class: TencentCloud::Tione::V20211111::DescribeModelServiceGroupsRequest
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Tione::V20211111::DescribeModelServiceGroupsRequest
- Extended by:
- Gem::Deprecate
- Defined in:
- lib/v20211111/models.rb
Overview
DescribeModelServiceGroups请求参数结构体
Instance Attribute Summary collapse
-
#Filters ⇒ Object
[“ClusterId”, “ServiceId”, “ServiceGroupName”, “ServiceGroupId”,“Status”,“CreatedBy”,“ModelVersionId”].
-
#Limit ⇒ Object
[“ClusterId”, “ServiceId”, “ServiceGroupName”, “ServiceGroupId”,“Status”,“CreatedBy”,“ModelVersionId”].
-
#Offset ⇒ Object
[“ClusterId”, “ServiceId”, “ServiceGroupName”, “ServiceGroupId”,“Status”,“CreatedBy”,“ModelVersionId”].
-
#Order ⇒ Object
[“ClusterId”, “ServiceId”, “ServiceGroupName”, “ServiceGroupId”,“Status”,“CreatedBy”,“ModelVersionId”].
-
#OrderField ⇒ Object
[“ClusterId”, “ServiceId”, “ServiceGroupName”, “ServiceGroupId”,“Status”,“CreatedBy”,“ModelVersionId”].
-
#ServiceCategory ⇒ Object
[“ClusterId”, “ServiceId”, “ServiceGroupName”, “ServiceGroupId”,“Status”,“CreatedBy”,“ModelVersionId”].
-
#TagFilters ⇒ Object
[“ClusterId”, “ServiceId”, “ServiceGroupName”, “ServiceGroupId”,“Status”,“CreatedBy”,“ModelVersionId”].
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(offset = nil, limit = nil, order = nil, orderfield = nil, filters = nil, tagfilters = nil, servicecategory = nil) ⇒ DescribeModelServiceGroupsRequest
constructor
A new instance of DescribeModelServiceGroupsRequest.
Constructor Details
#initialize(offset = nil, limit = nil, order = nil, orderfield = nil, filters = nil, tagfilters = nil, servicecategory = nil) ⇒ DescribeModelServiceGroupsRequest
Returns a new instance of DescribeModelServiceGroupsRequest.
3554 3555 3556 3557 3558 3559 3560 3561 3562 |
# File 'lib/v20211111/models.rb', line 3554 def initialize(offset=nil, limit=nil, order=nil, orderfield=nil, filters=nil, tagfilters=nil, servicecategory=nil) @Offset = offset @Limit = limit @Order = order @OrderField = orderfield @Filters = filters @TagFilters = tagfilters @ServiceCategory = servicecategory end |
Instance Attribute Details
#Filters ⇒ Object
- “ClusterId”, “ServiceId”, “ServiceGroupName”, “ServiceGroupId”,“Status”,“CreatedBy”,“ModelVersionId”
3549 3550 3551 |
# File 'lib/v20211111/models.rb', line 3549 def Filters @Filters end |
#Limit ⇒ Object
- “ClusterId”, “ServiceId”, “ServiceGroupName”, “ServiceGroupId”,“Status”,“CreatedBy”,“ModelVersionId”
3549 3550 3551 |
# File 'lib/v20211111/models.rb', line 3549 def Limit @Limit end |
#Offset ⇒ Object
- “ClusterId”, “ServiceId”, “ServiceGroupName”, “ServiceGroupId”,“Status”,“CreatedBy”,“ModelVersionId”
3549 3550 3551 |
# File 'lib/v20211111/models.rb', line 3549 def Offset @Offset end |
#Order ⇒ Object
- “ClusterId”, “ServiceId”, “ServiceGroupName”, “ServiceGroupId”,“Status”,“CreatedBy”,“ModelVersionId”
3549 3550 3551 |
# File 'lib/v20211111/models.rb', line 3549 def Order @Order end |
#OrderField ⇒ Object
- “ClusterId”, “ServiceId”, “ServiceGroupName”, “ServiceGroupId”,“Status”,“CreatedBy”,“ModelVersionId”
3549 3550 3551 |
# File 'lib/v20211111/models.rb', line 3549 def OrderField @OrderField end |
#ServiceCategory ⇒ Object
- “ClusterId”, “ServiceId”, “ServiceGroupName”, “ServiceGroupId”,“Status”,“CreatedBy”,“ModelVersionId”
3549 3550 3551 |
# File 'lib/v20211111/models.rb', line 3549 def ServiceCategory @ServiceCategory end |
#TagFilters ⇒ Object
- “ClusterId”, “ServiceId”, “ServiceGroupName”, “ServiceGroupId”,“Status”,“CreatedBy”,“ModelVersionId”
3549 3550 3551 |
# File 'lib/v20211111/models.rb', line 3549 def TagFilters @TagFilters end |
Instance Method Details
#deserialize(params) ⇒ Object
3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 |
# File 'lib/v20211111/models.rb', line 3564 def deserialize(params) @Offset = params['Offset'] @Limit = params['Limit'] @Order = params['Order'] @OrderField = params['OrderField'] unless params['Filters'].nil? @Filters = [] params['Filters'].each do |i| filter_tmp = Filter.new filter_tmp.deserialize(i) @Filters << filter_tmp end end unless params['TagFilters'].nil? @TagFilters = [] params['TagFilters'].each do |i| tagfilter_tmp = TagFilter.new tagfilter_tmp.deserialize(i) @TagFilters << tagfilter_tmp end end @ServiceCategory = params['ServiceCategory'] end |