Class: TencentCloud::Dlc::V20210125::DescribeUserDataEngineConfigRequest

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

Overview

DescribeUserDataEngineConfig请求参数结构体

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(sorting = nil, limit = nil, offset = nil, sortby = nil, filters = nil) ⇒ DescribeUserDataEngineConfigRequest

Returns a new instance of DescribeUserDataEngineConfigRequest.



9927
9928
9929
9930
9931
9932
9933
# File 'lib/v20210125/models.rb', line 9927

def initialize(sorting=nil, limit=nil, offset=nil, sortby=nil, filters=nil)
  @Sorting = sorting
  @Limit = limit
  @Offset = offset
  @SortBy = sortby
  @Filters = filters
end

Instance Attribute Details

#FiltersObject

app-id - String - (appid过滤)engine-id - String - (引擎ID过滤)

Parameters:

  • Sorting:

    排序方式,desc表示倒序,asc表示正序

  • Limit:

    返回数量,默认为10,最大值为100。

  • Offset:

    偏移量,默认为0。

  • SortBy:

    排序字段,支持如下字段类型,create-time

  • Filters:

    过滤条件,如下支持的过滤类型,传参Name应为以下其中一个,每种过滤参数支持的过滤值不超过5个。



9925
9926
9927
# File 'lib/v20210125/models.rb', line 9925

def Filters
  @Filters
end

#LimitObject

app-id - String - (appid过滤)engine-id - String - (引擎ID过滤)

Parameters:

  • Sorting:

    排序方式,desc表示倒序,asc表示正序

  • Limit:

    返回数量,默认为10,最大值为100。

  • Offset:

    偏移量,默认为0。

  • SortBy:

    排序字段,支持如下字段类型,create-time

  • Filters:

    过滤条件,如下支持的过滤类型,传参Name应为以下其中一个,每种过滤参数支持的过滤值不超过5个。



9925
9926
9927
# File 'lib/v20210125/models.rb', line 9925

def Limit
  @Limit
end

#OffsetObject

app-id - String - (appid过滤)engine-id - String - (引擎ID过滤)

Parameters:

  • Sorting:

    排序方式,desc表示倒序,asc表示正序

  • Limit:

    返回数量,默认为10,最大值为100。

  • Offset:

    偏移量,默认为0。

  • SortBy:

    排序字段,支持如下字段类型,create-time

  • Filters:

    过滤条件,如下支持的过滤类型,传参Name应为以下其中一个,每种过滤参数支持的过滤值不超过5个。



9925
9926
9927
# File 'lib/v20210125/models.rb', line 9925

def Offset
  @Offset
end

#SortByObject

app-id - String - (appid过滤)engine-id - String - (引擎ID过滤)

Parameters:

  • Sorting:

    排序方式,desc表示倒序,asc表示正序

  • Limit:

    返回数量,默认为10,最大值为100。

  • Offset:

    偏移量,默认为0。

  • SortBy:

    排序字段,支持如下字段类型,create-time

  • Filters:

    过滤条件,如下支持的过滤类型,传参Name应为以下其中一个,每种过滤参数支持的过滤值不超过5个。



9925
9926
9927
# File 'lib/v20210125/models.rb', line 9925

def SortBy
  @SortBy
end

#SortingObject

app-id - String - (appid过滤)engine-id - String - (引擎ID过滤)

Parameters:

  • Sorting:

    排序方式,desc表示倒序,asc表示正序

  • Limit:

    返回数量,默认为10,最大值为100。

  • Offset:

    偏移量,默认为0。

  • SortBy:

    排序字段,支持如下字段类型,create-time

  • Filters:

    过滤条件,如下支持的过滤类型,传参Name应为以下其中一个,每种过滤参数支持的过滤值不超过5个。



9925
9926
9927
# File 'lib/v20210125/models.rb', line 9925

def Sorting
  @Sorting
end

Instance Method Details

#deserialize(params) ⇒ Object



9935
9936
9937
9938
9939
9940
9941
9942
9943
9944
9945
9946
9947
9948
# File 'lib/v20210125/models.rb', line 9935

def deserialize(params)
  @Sorting = params['Sorting']
  @Limit = params['Limit']
  @Offset = params['Offset']
  @SortBy = params['SortBy']
  unless params['Filters'].nil?
    @Filters = []
    params['Filters'].each do |i|
      filter_tmp = Filter.new
      filter_tmp.deserialize(i)
      @Filters << filter_tmp
    end
  end
end