Class: TencentCloud::Tke::V20220501::TagSpecification

Inherits:
Common::AbstractModel
  • Object
show all
Defined in:
lib/v20220501/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.



2416
2417
2418
2419
# File 'lib/v20220501/models.rb', line 2416

def initialize(resourcetype=nil, tags=nil)
  @ResourceType = resourcetype
  @Tags = tags
end

Instance Attribute Details

#ResourceTypeObject

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

Parameters:

  • ResourceType:

    标签绑定的资源类型,当前支持类型:“cluster”

  • Tags:

    标签对列表



2414
2415
2416
# File 'lib/v20220501/models.rb', line 2414

def ResourceType
  @ResourceType
end

#TagsObject

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

Parameters:

  • ResourceType:

    标签绑定的资源类型,当前支持类型:“cluster”

  • Tags:

    标签对列表



2414
2415
2416
# File 'lib/v20220501/models.rb', line 2414

def Tags
  @Tags
end

Instance Method Details

#deserialize(params) ⇒ Object



2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
# File 'lib/v20220501/models.rb', line 2421

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