Class: TencentCloud::Ciam::V20220331::ListUserGroupsRequest

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

Overview

ListUserGroups请求参数结构体

Instance Attribute Summary collapse

  • #Pageable ⇒ Object
  • **condition**
  • Values = 查询条件,用户组ID或用户组名称.
  • #UserStoreId ⇒ Object
  • **condition**
  • Values = 查询条件,用户组ID或用户组名称.

    Instance Method Summary collapse

    Constructor Details

    #initialize(userstoreid = nil, pageable = nil, filters = nil) ⇒ ListUserGroupsRequest

    Returns a new instance of ListUserGroupsRequest.

    
    
    1156
    1157
    1158
    1159
    1160
    # File 'lib/v20220331/models.rb', line 1156
    
    def initialize(userstoreid=nil, pageable=nil, filters=nil)
      @UserStoreId = userstoreid
      @Pageable = pageable
      @Filters = filters
    end
    

    Instance Attribute Details

    #FiltersObject

  • **condition**
  • Values = 查询条件,用户组ID或用户组名称
    
    
    1154
    1155
    1156
    # File 'lib/v20220331/models.rb', line 1154
    
    def Filters
      @Filters
    end
    

    #PageableObject

  • **condition**
  • Values = 查询条件,用户组ID或用户组名称
    
    
    1154
    1155
    1156
    # File 'lib/v20220331/models.rb', line 1154
    
    def Pageable
      @Pageable
    end
    

    #UserStoreIdObject

  • **condition**
  • Values = 查询条件,用户组ID或用户组名称
    
    
    1154
    1155
    1156
    # File 'lib/v20220331/models.rb', line 1154
    
    def UserStoreId
      @UserStoreId
    end
    

    Instance Method Details

    #deserialize(params) ⇒ Object

    
    
    1162
    1163
    1164
    1165
    1166
    1167
    1168
    1169
    1170
    1171
    1172
    1173
    1174
    1175
    1176
    # File 'lib/v20220331/models.rb', line 1162
    
    def deserialize(params)
      @UserStoreId = params['UserStoreId']
      unless params['Pageable'].nil?
        @Pageable = Pageable.new
        @Pageable.deserialize(params['Pageable'])
      end
      unless params['Filters'].nil?
        @Filters = []
        params['Filters'].each do |i|
          filter_tmp = Filter.new
          filter_tmp.deserialize(i)
          @Filters << filter_tmp
        end
      end
    end