Class: TencentCloud::Tke::V20180525::ModifyClusterTagsResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Tke::V20180525::ModifyClusterTagsResponse
- Defined in:
- lib/v20180525/models.rb
Overview
ModifyClusterTags返回参数结构体
Instance Attribute Summary collapse
-
#RequestId ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
-
#Tags ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(tags = nil, requestid = nil) ⇒ ModifyClusterTagsResponse
constructor
A new instance of ModifyClusterTagsResponse.
Constructor Details
#initialize(tags = nil, requestid = nil) ⇒ ModifyClusterTagsResponse
Returns a new instance of ModifyClusterTagsResponse.
14255 14256 14257 14258 |
# File 'lib/v20180525/models.rb', line 14255 def initialize(=nil, requestid=nil) @Tags = @RequestId = requestid end |
Instance Attribute Details
#RequestId ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
14253 14254 14255 |
# File 'lib/v20180525/models.rb', line 14253 def RequestId @RequestId end |
#Tags ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
14253 14254 14255 |
# File 'lib/v20180525/models.rb', line 14253 def Tags @Tags end |
Instance Method Details
#deserialize(params) ⇒ Object
14260 14261 14262 14263 14264 14265 14266 14267 14268 14269 14270 |
# File 'lib/v20180525/models.rb', line 14260 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 |