Class: TencentCloud::Tse::V20201207::DescribeConfigFileGroupsResponse

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

Overview

DescribeConfigFileGroups返回参数结构体

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(totalcount = nil, configfilegroups = nil, requestid = nil) ⇒ DescribeConfigFileGroupsResponse



5369
5370
5371
5372
5373
# File 'lib/v20201207/models.rb', line 5369

def initialize(totalcount=nil, configfilegroups=nil, requestid=nil)
  @TotalCount = totalcount
  @ConfigFileGroups = configfilegroups
  @RequestId = requestid
end

Instance Attribute Details

#ConfigFileGroupsObject



5367
5368
5369
# File 'lib/v20201207/models.rb', line 5367

def ConfigFileGroups
  @ConfigFileGroups
end

#RequestIdObject



5367
5368
5369
# File 'lib/v20201207/models.rb', line 5367

def RequestId
  @RequestId
end

#TotalCountObject



5367
5368
5369
# File 'lib/v20201207/models.rb', line 5367

def TotalCount
  @TotalCount
end

Instance Method Details

#deserialize(params) ⇒ Object



5375
5376
5377
5378
5379
5380
5381
5382
5383
5384
5385
5386
# File 'lib/v20201207/models.rb', line 5375

def deserialize(params)
  @TotalCount = params['TotalCount']
  unless params['ConfigFileGroups'].nil?
    @ConfigFileGroups = []
    params['ConfigFileGroups'].each do |i|
      configfilegroup_tmp = ConfigFileGroup.new
      configfilegroup_tmp.deserialize(i)
      @ConfigFileGroups << configfilegroup_tmp
    end
  end
  @RequestId = params['RequestId']
end