Class: TencentCloud::Thpc::V20230321::TagSpecification

Inherits:
Common::AbstractModel
  • Object
show all
Defined in:
lib/v20230321/models.rb

Overview

创建资源工作空间时同时绑定的标签对说明

Instance Attribute Summary collapse

Instance Method Summary collapse

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, tags=nil)
  @ResourceType = resourcetype
  @Tags = tags
end

Instance Attribute Details

#ResourceTypeObject

注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。

Parameters:

  • ResourceType:

    标签绑定的资源类型

  • Tags:

    标签对列表



3066
3067
3068
# File 'lib/v20230321/models.rb', line 3066

def ResourceType
  @ResourceType
end

#TagsObject

注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。

Parameters:

  • ResourceType:

    标签绑定的资源类型

  • Tags:

    标签对列表



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