Class: TencentCloud::Chdfs::V20190718::DescribeResourceTagsResponse
- Inherits:
-
TencentCloud::Common::AbstractModel
- Object
- TencentCloud::Common::AbstractModel
- TencentCloud::Chdfs::V20190718::DescribeResourceTagsResponse
- Defined in:
- lib/v20190718/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.
892 893 894 895 |
# File 'lib/v20190718/models.rb', line 892 def initialize(=nil, requestid=nil) @Tags = @RequestId = requestid end |
Instance Attribute Details
#RequestId ⇒ Object
890 891 892 |
# File 'lib/v20190718/models.rb', line 890 def RequestId @RequestId end |
#Tags ⇒ Object
890 891 892 |
# File 'lib/v20190718/models.rb', line 890 def Tags @Tags end |
Instance Method Details
#deserialize(params) ⇒ Object
897 898 899 900 901 902 903 904 905 906 907 |
# File 'lib/v20190718/models.rb', line 897 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 |