Class: TencentCloud::Iecp::V20210914::DescribeEdgeUnitApplicationsRequest

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

Overview

DescribeEdgeUnitApplications请求参数结构体

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(edgeunitid = nil, offset = nil, limit = nil, namepattern = nil, sort = nil, namespace = nil) ⇒ DescribeEdgeUnitApplicationsRequest

Returns a new instance of DescribeEdgeUnitApplicationsRequest.



2439
2440
2441
2442
2443
2444
2445
2446
# File 'lib/v20210914/models.rb', line 2439

def initialize(edgeunitid=nil, offset=nil, limit=nil, namepattern=nil, sort=nil, namespace=nil)
  @EdgeUnitId = edgeunitid
  @Offset = offset
  @Limit = limit
  @NamePattern = namepattern
  @Sort = sort
  @Namespace = namespace
end

Instance Attribute Details

#EdgeUnitIdObject

Parameters:

  • EdgeUnitId:

    单元ID

  • Offset:

    翻页偏移

  • Limit:

    翻页大小

  • NamePattern:

    名称模糊匹配

  • Sort:

    字段排序 (Sort.Filed为:StartTime)

  • Namespace:

    命名空间过滤



2437
2438
2439
# File 'lib/v20210914/models.rb', line 2437

def EdgeUnitId
  @EdgeUnitId
end

#LimitObject

Parameters:

  • EdgeUnitId:

    单元ID

  • Offset:

    翻页偏移

  • Limit:

    翻页大小

  • NamePattern:

    名称模糊匹配

  • Sort:

    字段排序 (Sort.Filed为:StartTime)

  • Namespace:

    命名空间过滤



2437
2438
2439
# File 'lib/v20210914/models.rb', line 2437

def Limit
  @Limit
end

#NamePatternObject

Parameters:

  • EdgeUnitId:

    单元ID

  • Offset:

    翻页偏移

  • Limit:

    翻页大小

  • NamePattern:

    名称模糊匹配

  • Sort:

    字段排序 (Sort.Filed为:StartTime)

  • Namespace:

    命名空间过滤



2437
2438
2439
# File 'lib/v20210914/models.rb', line 2437

def NamePattern
  @NamePattern
end

#NamespaceObject

Parameters:

  • EdgeUnitId:

    单元ID

  • Offset:

    翻页偏移

  • Limit:

    翻页大小

  • NamePattern:

    名称模糊匹配

  • Sort:

    字段排序 (Sort.Filed为:StartTime)

  • Namespace:

    命名空间过滤



2437
2438
2439
# File 'lib/v20210914/models.rb', line 2437

def Namespace
  @Namespace
end

#OffsetObject

Parameters:

  • EdgeUnitId:

    单元ID

  • Offset:

    翻页偏移

  • Limit:

    翻页大小

  • NamePattern:

    名称模糊匹配

  • Sort:

    字段排序 (Sort.Filed为:StartTime)

  • Namespace:

    命名空间过滤



2437
2438
2439
# File 'lib/v20210914/models.rb', line 2437

def Offset
  @Offset
end

#SortObject

Parameters:

  • EdgeUnitId:

    单元ID

  • Offset:

    翻页偏移

  • Limit:

    翻页大小

  • NamePattern:

    名称模糊匹配

  • Sort:

    字段排序 (Sort.Filed为:StartTime)

  • Namespace:

    命名空间过滤



2437
2438
2439
# File 'lib/v20210914/models.rb', line 2437

def Sort
  @Sort
end

Instance Method Details

#deserialize(params) ⇒ Object



2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
# File 'lib/v20210914/models.rb', line 2448

def deserialize(params)
  @EdgeUnitId = params['EdgeUnitId']
  @Offset = params['Offset']
  @Limit = params['Limit']
  @NamePattern = params['NamePattern']
  unless params['Sort'].nil?
    @Sort = []
    params['Sort'].each do |i|
      fieldsort_tmp = FieldSort.new
      fieldsort_tmp.deserialize(i)
      @Sort << fieldsort_tmp
    end
  end
  @Namespace = params['Namespace']
end