Class: TencentCloud::Cfs::V20190719::DescribeCfsPGroupsResponse
- Inherits:
-
TencentCloud::Common::AbstractModel
- Object
- TencentCloud::Common::AbstractModel
- TencentCloud::Cfs::V20190719::DescribeCfsPGroupsResponse
- Defined in:
- lib/v20190719/models.rb
Overview
DescribeCfsPGroups返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(pgrouplist = nil, requestid = nil) ⇒ DescribeCfsPGroupsResponse
constructor
A new instance of DescribeCfsPGroupsResponse.
Constructor Details
#initialize(pgrouplist = nil, requestid = nil) ⇒ DescribeCfsPGroupsResponse
Returns a new instance of DescribeCfsPGroupsResponse.
1910 1911 1912 1913 |
# File 'lib/v20190719/models.rb', line 1910 def initialize(pgrouplist=nil, requestid=nil) @PGroupList = pgrouplist @RequestId = requestid end |
Instance Attribute Details
#PGroupList ⇒ Object
1908 1909 1910 |
# File 'lib/v20190719/models.rb', line 1908 def PGroupList @PGroupList end |
#RequestId ⇒ Object
1908 1909 1910 |
# File 'lib/v20190719/models.rb', line 1908 def RequestId @RequestId end |
Instance Method Details
#deserialize(params) ⇒ Object
1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 |
# File 'lib/v20190719/models.rb', line 1915 def deserialize(params) unless params['PGroupList'].nil? @PGroupList = [] params['PGroupList'].each do |i| pgroupinfo_tmp = PGroupInfo.new pgroupinfo_tmp.deserialize(i) @PGroupList << pgroupinfo_tmp end end @RequestId = params['RequestId'] end |