Class: TencentCloud::Chdfs::V20190718::ModifyResourceTagsRequest
- Inherits:
-
TencentCloud::Common::AbstractModel
- Object
- TencentCloud::Common::AbstractModel
- TencentCloud::Chdfs::V20190718::ModifyResourceTagsRequest
- Defined in:
- lib/v20190718/models.rb
Overview
ModifyResourceTags请求参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(filesystemid = nil, tags = nil) ⇒ ModifyResourceTagsRequest
constructor
A new instance of ModifyResourceTagsRequest.
Constructor Details
#initialize(filesystemid = nil, tags = nil) ⇒ ModifyResourceTagsRequest
Returns a new instance of ModifyResourceTagsRequest.
1280 1281 1282 1283 |
# File 'lib/v20190718/models.rb', line 1280 def initialize(filesystemid=nil, =nil) @FileSystemId = filesystemid @Tags = end |
Instance Attribute Details
#FileSystemId ⇒ Object
1278 1279 1280 |
# File 'lib/v20190718/models.rb', line 1278 def FileSystemId @FileSystemId end |
#Tags ⇒ Object
1278 1279 1280 |
# File 'lib/v20190718/models.rb', line 1278 def Tags @Tags end |
Instance Method Details
#deserialize(params) ⇒ Object
1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 |
# File 'lib/v20190718/models.rb', line 1285 def deserialize(params) @FileSystemId = params['FileSystemId'] unless params['Tags'].nil? @Tags = [] params['Tags'].each do |i| tag_tmp = Tag.new tag_tmp.deserialize(i) @Tags << tag_tmp end end end |