Class: TencentCloud::Thpc::V20230321::TagSpecification
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Thpc::V20230321::TagSpecification
- Defined in:
- lib/v20230321/models.rb
Overview
创建资源工作空间时同时绑定的标签对说明
Instance Attribute Summary collapse
-
#ResourceType ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
-
#Tags ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(resourcetype = nil, tags = nil) ⇒ TagSpecification
constructor
A new instance of TagSpecification.
Constructor Details
#initialize(resourcetype = nil, tags = nil) ⇒ TagSpecification
Returns a new instance of TagSpecification.
3068 3069 3070 3071 |
# File 'lib/v20230321/models.rb', line 3068 def initialize(resourcetype=nil, =nil) @ResourceType = resourcetype @Tags = end |
Instance Attribute Details
#ResourceType ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。
3066 3067 3068 |
# File 'lib/v20230321/models.rb', line 3066 def ResourceType @ResourceType end |
#Tags ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。
3066 3067 3068 |
# File 'lib/v20230321/models.rb', line 3066 def Tags @Tags end |
Instance Method Details
#deserialize(params) ⇒ Object
3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 |
# File 'lib/v20230321/models.rb', line 3073 def deserialize(params) @ResourceType = params['ResourceType'] unless params['Tags'].nil? @Tags = [] params['Tags'].each do |i| tag_tmp = Tag.new tag_tmp.deserialize(i) @Tags << tag_tmp end end end |