Class: TencentCloud::Cam::V20190116::ListGroupsRequest

Inherits:
TencentCloud::Common::AbstractModel
  • Object
show all
Defined in:
lib/v20190116/models.rb

Overview

ListGroups请求参数结构体

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(page = nil, rp = nil, keyword = nil) ⇒ ListGroupsRequest

Returns a new instance of ListGroupsRequest.



3574
3575
3576
3577
3578
# File 'lib/v20190116/models.rb', line 3574

def initialize(page=nil, rp=nil, keyword=nil)
  @Page = page
  @Rp = rp
  @Keyword = keyword
end

Instance Attribute Details

#KeywordObject

Parameters:

  • Page:

    页码。默认为1。

  • Rp:

    每页数量。默认为20。

  • Keyword:

    按用户组名称匹配。



3572
3573
3574
# File 'lib/v20190116/models.rb', line 3572

def Keyword
  @Keyword
end

#PageObject

Parameters:

  • Page:

    页码。默认为1。

  • Rp:

    每页数量。默认为20。

  • Keyword:

    按用户组名称匹配。



3572
3573
3574
# File 'lib/v20190116/models.rb', line 3572

def Page
  @Page
end

#RpObject

Parameters:

  • Page:

    页码。默认为1。

  • Rp:

    每页数量。默认为20。

  • Keyword:

    按用户组名称匹配。



3572
3573
3574
# File 'lib/v20190116/models.rb', line 3572

def Rp
  @Rp
end

Instance Method Details

#deserialize(params) ⇒ Object



3580
3581
3582
3583
3584
# File 'lib/v20190116/models.rb', line 3580

def deserialize(params)
  @Page = params['Page']
  @Rp = params['Rp']
  @Keyword = params['Keyword']
end