Class: TencentCloud::Dbdc::V20201029::DescribeInstancesRequest
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Dbdc::V20201029::DescribeInstancesRequest
- Defined in:
- lib/v20201029/models.rb
Overview
DescribeInstances请求参数结构体
Instance Attribute Summary collapse
- #FenceFlag ⇒ Object
- #InstanceIds ⇒ Object
- #InstanceName ⇒ Object
- #InstanceStatus ⇒ Object
- #InstanceTypes ⇒ Object
- #OrderBy ⇒ Object
- #OrderByType ⇒ Object
- #PageNumber ⇒ Object
- #PageSize ⇒ Object
- #ProductIds ⇒ Object
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(instancetypes = nil, productids = nil, instanceids = nil, fenceflag = nil, instancename = nil, pagesize = nil, pagenumber = nil, orderby = nil, orderbytype = nil, instancestatus = nil) ⇒ DescribeInstancesRequest
constructor
A new instance of DescribeInstancesRequest.
Constructor Details
#initialize(instancetypes = nil, productids = nil, instanceids = nil, fenceflag = nil, instancename = nil, pagesize = nil, pagenumber = nil, orderby = nil, orderbytype = nil, instancestatus = nil) ⇒ DescribeInstancesRequest
Returns a new instance of DescribeInstancesRequest.
640 641 642 643 644 645 646 647 648 649 650 651 |
# File 'lib/v20201029/models.rb', line 640 def initialize(instancetypes=nil, productids=nil, instanceids=nil, fenceflag=nil, instancename=nil, pagesize=nil, pagenumber=nil, orderby=nil, orderbytype=nil, instancestatus=nil) @InstanceTypes = instancetypes @ProductIds = productids @InstanceIds = instanceids @FenceFlag = fenceflag @InstanceName = instancename @PageSize = pagesize @PageNumber = pagenumber @OrderBy = orderby @OrderByType = orderbytype @InstanceStatus = instancestatus end |
Instance Attribute Details
#FenceFlag ⇒ Object
638 639 640 |
# File 'lib/v20201029/models.rb', line 638 def FenceFlag @FenceFlag end |
#InstanceIds ⇒ Object
638 639 640 |
# File 'lib/v20201029/models.rb', line 638 def InstanceIds @InstanceIds end |
#InstanceName ⇒ Object
638 639 640 |
# File 'lib/v20201029/models.rb', line 638 def InstanceName @InstanceName end |
#InstanceStatus ⇒ Object
638 639 640 |
# File 'lib/v20201029/models.rb', line 638 def InstanceStatus @InstanceStatus end |
#InstanceTypes ⇒ Object
638 639 640 |
# File 'lib/v20201029/models.rb', line 638 def InstanceTypes @InstanceTypes end |
#OrderBy ⇒ Object
638 639 640 |
# File 'lib/v20201029/models.rb', line 638 def OrderBy @OrderBy end |
#OrderByType ⇒ Object
638 639 640 |
# File 'lib/v20201029/models.rb', line 638 def OrderByType @OrderByType end |
#PageNumber ⇒ Object
638 639 640 |
# File 'lib/v20201029/models.rb', line 638 def PageNumber @PageNumber end |
#PageSize ⇒ Object
638 639 640 |
# File 'lib/v20201029/models.rb', line 638 def PageSize @PageSize end |
#ProductIds ⇒ Object
638 639 640 |
# File 'lib/v20201029/models.rb', line 638 def ProductIds @ProductIds end |
Instance Method Details
#deserialize(params) ⇒ Object
653 654 655 656 657 658 659 660 661 662 663 664 |
# File 'lib/v20201029/models.rb', line 653 def deserialize(params) @InstanceTypes = params['InstanceTypes'] @ProductIds = params['ProductIds'] @InstanceIds = params['InstanceIds'] @FenceFlag = params['FenceFlag'] @InstanceName = params['InstanceName'] @PageSize = params['PageSize'] @PageNumber = params['PageNumber'] @OrderBy = params['OrderBy'] @OrderByType = params['OrderByType'] @InstanceStatus = params['InstanceStatus'] end |