Class: TencentCloud::Chdfs::V20201112::DescribeResourceTagsResponse
- Inherits:
-
TencentCloud::Common::AbstractModel
- Object
- TencentCloud::Common::AbstractModel
- TencentCloud::Chdfs::V20201112::DescribeResourceTagsResponse
- Defined in:
- lib/v20201112/models.rb
Overview
DescribeResourceTags返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(tags = nil, requestid = nil) ⇒ DescribeResourceTagsResponse
constructor
A new instance of DescribeResourceTagsResponse.
Constructor Details
#initialize(tags = nil, requestid = nil) ⇒ DescribeResourceTagsResponse
Returns a new instance of DescribeResourceTagsResponse.
994 995 996 997 |
# File 'lib/v20201112/models.rb', line 994 def initialize(=nil, requestid=nil) @Tags = @RequestId = requestid end |
Instance Attribute Details
#RequestId ⇒ Object
992 993 994 |
# File 'lib/v20201112/models.rb', line 992 def RequestId @RequestId end |
#Tags ⇒ Object
992 993 994 |
# File 'lib/v20201112/models.rb', line 992 def Tags @Tags end |
Instance Method Details
#deserialize(params) ⇒ Object
999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 |
# File 'lib/v20201112/models.rb', line 999 def deserialize(params) unless params['Tags'].nil? @Tags = [] params['Tags'].each do |i| tag_tmp = Tag.new tag_tmp.deserialize(i) @Tags << tag_tmp end end @RequestId = params['RequestId'] end |