Class: TencentCloud::Wedata::V20210820::IntegrationNodeSchema

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

Overview

集成节点schema

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(id = nil, name = nil, type = nil, value = nil, properties = nil, _alias = nil, comment = nil) ⇒ IntegrationNodeSchema

Returns a new instance of IntegrationNodeSchema.



22484
22485
22486
22487
22488
22489
22490
22491
22492
# File 'lib/v20210820/models.rb', line 22484

def initialize(id=nil, name=nil, type=nil, value=nil, properties=nil, _alias=nil, comment=nil)
  @Id = id
  @Name = name
  @Type = type
  @Value = value
  @Properties = properties
  @Alias = _alias
  @Comment = comment
end

Instance Attribute Details

#AliasObject

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

Parameters:

  • Id:

    schema id

  • Name:

    schema名称

  • Type:

    schema类型

  • Value:

    schema值

  • Properties:

    schema拓展属性

  • Alias:

    schema别名

  • Comment:

    字段备注



22482
22483
22484
# File 'lib/v20210820/models.rb', line 22482

def Alias
  @Alias
end

#CommentObject

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

Parameters:

  • Id:

    schema id

  • Name:

    schema名称

  • Type:

    schema类型

  • Value:

    schema值

  • Properties:

    schema拓展属性

  • Alias:

    schema别名

  • Comment:

    字段备注



22482
22483
22484
# File 'lib/v20210820/models.rb', line 22482

def Comment
  @Comment
end

#IdObject

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

Parameters:

  • Id:

    schema id

  • Name:

    schema名称

  • Type:

    schema类型

  • Value:

    schema值

  • Properties:

    schema拓展属性

  • Alias:

    schema别名

  • Comment:

    字段备注



22482
22483
22484
# File 'lib/v20210820/models.rb', line 22482

def Id
  @Id
end

#NameObject

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

Parameters:

  • Id:

    schema id

  • Name:

    schema名称

  • Type:

    schema类型

  • Value:

    schema值

  • Properties:

    schema拓展属性

  • Alias:

    schema别名

  • Comment:

    字段备注



22482
22483
22484
# File 'lib/v20210820/models.rb', line 22482

def Name
  @Name
end

#PropertiesObject

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

Parameters:

  • Id:

    schema id

  • Name:

    schema名称

  • Type:

    schema类型

  • Value:

    schema值

  • Properties:

    schema拓展属性

  • Alias:

    schema别名

  • Comment:

    字段备注



22482
22483
22484
# File 'lib/v20210820/models.rb', line 22482

def Properties
  @Properties
end

#TypeObject

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

Parameters:

  • Id:

    schema id

  • Name:

    schema名称

  • Type:

    schema类型

  • Value:

    schema值

  • Properties:

    schema拓展属性

  • Alias:

    schema别名

  • Comment:

    字段备注



22482
22483
22484
# File 'lib/v20210820/models.rb', line 22482

def Type
  @Type
end

#ValueObject

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

Parameters:

  • Id:

    schema id

  • Name:

    schema名称

  • Type:

    schema类型

  • Value:

    schema值

  • Properties:

    schema拓展属性

  • Alias:

    schema别名

  • Comment:

    字段备注



22482
22483
22484
# File 'lib/v20210820/models.rb', line 22482

def Value
  @Value
end

Instance Method Details

#deserialize(params) ⇒ Object



22494
22495
22496
22497
22498
22499
22500
22501
22502
22503
22504
22505
22506
22507
22508
22509
# File 'lib/v20210820/models.rb', line 22494

def deserialize(params)
  @Id = params['Id']
  @Name = params['Name']
  @Type = params['Type']
  @Value = params['Value']
  unless params['Properties'].nil?
    @Properties = []
    params['Properties'].each do |i|
      recordfield_tmp = RecordField.new
      recordfield_tmp.deserialize(i)
      @Properties << recordfield_tmp
    end
  end
  @Alias = params['Alias']
  @Comment = params['Comment']
end