Class: TencentCloud::Tke::V20180525::DescribeBatchModifyTagsStatusResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Tke::V20180525::DescribeBatchModifyTagsStatusResponse
- Defined in:
- lib/v20180525/models.rb
Overview
DescribeBatchModifyTagsStatus返回参数结构体
Instance Attribute Summary collapse
-
#FailedResources ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 - running 运行中 - failed 失败 - done 成功 注意:此字段可能返回 null,表示取不到有效值。.
-
#RequestId ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 - running 运行中 - failed 失败 - done 成功 注意:此字段可能返回 null,表示取不到有效值。.
-
#Status ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 - running 运行中 - failed 失败 - done 成功 注意:此字段可能返回 null,表示取不到有效值。.
-
#SyncSubresource ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 - running 运行中 - failed 失败 - done 成功 注意:此字段可能返回 null,表示取不到有效值。.
-
#Tags ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 - running 运行中 - failed 失败 - done 成功 注意:此字段可能返回 null,表示取不到有效值。.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(failedresources = nil, status = nil, syncsubresource = nil, tags = nil, requestid = nil) ⇒ DescribeBatchModifyTagsStatusResponse
constructor
A new instance of DescribeBatchModifyTagsStatusResponse.
Constructor Details
#initialize(failedresources = nil, status = nil, syncsubresource = nil, tags = nil, requestid = nil) ⇒ DescribeBatchModifyTagsStatusResponse
Returns a new instance of DescribeBatchModifyTagsStatusResponse.
5354 5355 5356 5357 5358 5359 5360 |
# File 'lib/v20180525/models.rb', line 5354 def initialize(failedresources=nil, status=nil, syncsubresource=nil, =nil, requestid=nil) @FailedResources = failedresources @Status = status @SyncSubresource = syncsubresource @Tags = @RequestId = requestid end |
Instance Attribute Details
#FailedResources ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
-
running 运行中
-
failed 失败
-
done 成功
注意:此字段可能返回 null,表示取不到有效值。
5352 5353 5354 |
# File 'lib/v20180525/models.rb', line 5352 def FailedResources @FailedResources end |
#RequestId ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
-
running 运行中
-
failed 失败
-
done 成功
注意:此字段可能返回 null,表示取不到有效值。
5352 5353 5354 |
# File 'lib/v20180525/models.rb', line 5352 def RequestId @RequestId end |
#Status ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
-
running 运行中
-
failed 失败
-
done 成功
注意:此字段可能返回 null,表示取不到有效值。
5352 5353 5354 |
# File 'lib/v20180525/models.rb', line 5352 def Status @Status end |
#SyncSubresource ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
-
running 运行中
-
failed 失败
-
done 成功
注意:此字段可能返回 null,表示取不到有效值。
5352 5353 5354 |
# File 'lib/v20180525/models.rb', line 5352 def SyncSubresource @SyncSubresource end |
#Tags ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
-
running 运行中
-
failed 失败
-
done 成功
注意:此字段可能返回 null,表示取不到有效值。
5352 5353 5354 |
# File 'lib/v20180525/models.rb', line 5352 def Tags @Tags end |
Instance Method Details
#deserialize(params) ⇒ Object
5362 5363 5364 5365 5366 5367 5368 5369 5370 5371 5372 5373 5374 5375 5376 5377 5378 5379 5380 5381 5382 |
# File 'lib/v20180525/models.rb', line 5362 def deserialize(params) unless params['FailedResources'].nil? @FailedResources = [] params['FailedResources'].each do |i| failedresource_tmp = FailedResource.new failedresource_tmp.deserialize(i) @FailedResources << failedresource_tmp end end @Status = params['Status'] @SyncSubresource = params['SyncSubresource'] 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 |