Class: TencentCloud::Dlc::V20210125::AssignMangedTablePropertiesResponse

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

Overview

AssignMangedTableProperties返回参数结构体

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(properties = nil, requestid = nil) ⇒ AssignMangedTablePropertiesResponse

Returns a new instance of AssignMangedTablePropertiesResponse.



654
655
656
657
# File 'lib/v20210125/models.rb', line 654

def initialize(properties=nil, requestid=nil)
  @Properties = properties
  @RequestId = requestid
end

Instance Attribute Details

#PropertiesObject

Parameters:

  • Properties:

    分配的原生表表属性

  • RequestId:

    唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。



652
653
654
# File 'lib/v20210125/models.rb', line 652

def Properties
  @Properties
end

#RequestIdObject

Parameters:

  • Properties:

    分配的原生表表属性

  • RequestId:

    唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。



652
653
654
# File 'lib/v20210125/models.rb', line 652

def RequestId
  @RequestId
end

Instance Method Details

#deserialize(params) ⇒ Object



659
660
661
662
663
664
665
666
667
668
669
# File 'lib/v20210125/models.rb', line 659

def deserialize(params)
  unless params['Properties'].nil?
    @Properties = []
    params['Properties'].each do |i|
      property_tmp = Property.new
      property_tmp.deserialize(i)
      @Properties << property_tmp
    end
  end
  @RequestId = params['RequestId']
end