Class: TencentCloud::Lke::V20231130::AttrLabel
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Lke::V20231130::AttrLabel
- Defined in:
- lib/v20231130/models.rb
Overview
标签详情信息
Instance Attribute Summary collapse
-
#AttrBizId ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
-
#AttrKey ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
-
#AttrName ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
-
#Labels ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
-
#Source ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(source = nil, attrbizid = nil, attrkey = nil, attrname = nil, labels = nil) ⇒ AttrLabel
constructor
A new instance of AttrLabel.
Constructor Details
#initialize(source = nil, attrbizid = nil, attrkey = nil, attrname = nil, labels = nil) ⇒ AttrLabel
Returns a new instance of AttrLabel.
1511 1512 1513 1514 1515 1516 1517 |
# File 'lib/v20231130/models.rb', line 1511 def initialize(source=nil, attrbizid=nil, attrkey=nil, attrname=nil, labels=nil) @Source = source @AttrBizId = attrbizid @AttrKey = attrkey @AttrName = attrname @Labels = labels end |
Instance Attribute Details
#AttrBizId ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。
1509 1510 1511 |
# File 'lib/v20231130/models.rb', line 1509 def AttrBizId @AttrBizId end |
#AttrKey ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。
1509 1510 1511 |
# File 'lib/v20231130/models.rb', line 1509 def AttrKey @AttrKey end |
#AttrName ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。
1509 1510 1511 |
# File 'lib/v20231130/models.rb', line 1509 def AttrName @AttrName end |
#Labels ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。
1509 1510 1511 |
# File 'lib/v20231130/models.rb', line 1509 def Labels @Labels end |
#Source ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。
1509 1510 1511 |
# File 'lib/v20231130/models.rb', line 1509 def Source @Source end |
Instance Method Details
#deserialize(params) ⇒ Object
1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 |
# File 'lib/v20231130/models.rb', line 1519 def deserialize(params) @Source = params['Source'] @AttrBizId = params['AttrBizId'] @AttrKey = params['AttrKey'] @AttrName = params['AttrName'] unless params['Labels'].nil? @Labels = [] params['Labels'].each do |i| label_tmp = Label.new label_tmp.deserialize(i) @Labels << label_tmp end end end |