Class: TencentCloud::Iecp::V20210914::DescribeEdgeUnitApplicationsRequest
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Iecp::V20210914::DescribeEdgeUnitApplicationsRequest
- Defined in:
- lib/v20210914/models.rb
Overview
DescribeEdgeUnitApplications请求参数结构体
Instance Attribute Summary collapse
- #EdgeUnitId ⇒ Object
- #Limit ⇒ Object
- #NamePattern ⇒ Object
- #Namespace ⇒ Object
- #Offset ⇒ Object
- #Sort ⇒ Object
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(edgeunitid = nil, offset = nil, limit = nil, namepattern = nil, sort = nil, namespace = nil) ⇒ DescribeEdgeUnitApplicationsRequest
constructor
A new instance of DescribeEdgeUnitApplicationsRequest.
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
#EdgeUnitId ⇒ Object
2437 2438 2439 |
# File 'lib/v20210914/models.rb', line 2437 def EdgeUnitId @EdgeUnitId end |
#Limit ⇒ Object
2437 2438 2439 |
# File 'lib/v20210914/models.rb', line 2437 def Limit @Limit end |
#NamePattern ⇒ Object
2437 2438 2439 |
# File 'lib/v20210914/models.rb', line 2437 def NamePattern @NamePattern end |
#Namespace ⇒ Object
2437 2438 2439 |
# File 'lib/v20210914/models.rb', line 2437 def Namespace @Namespace end |
#Offset ⇒ Object
2437 2438 2439 |
# File 'lib/v20210914/models.rb', line 2437 def Offset @Offset end |
#Sort ⇒ Object
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 |