Class: TencentCloud::Iotcloud::V20210408::DescribePrivateCABindedProductsResponse

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

Overview

DescribePrivateCABindedProducts返回参数结构体

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(products = nil, requestid = nil) ⇒ DescribePrivateCABindedProductsResponse

Returns a new instance of DescribePrivateCABindedProductsResponse.



1941
1942
1943
1944
# File 'lib/v20210408/models.rb', line 1941

def initialize(products=nil, requestid=nil)
  @Products = products
  @RequestId = requestid
end

Instance Attribute Details

#ProductsObject

Parameters:

  • Products:

    私有CA绑定的产品列表

  • RequestId:

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



1939
1940
1941
# File 'lib/v20210408/models.rb', line 1939

def Products
  @Products
end

#RequestIdObject

Parameters:

  • Products:

    私有CA绑定的产品列表

  • RequestId:

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



1939
1940
1941
# File 'lib/v20210408/models.rb', line 1939

def RequestId
  @RequestId
end

Instance Method Details

#deserialize(params) ⇒ Object



1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
# File 'lib/v20210408/models.rb', line 1946

def deserialize(params)
  unless params['Products'].nil?
    @Products = []
    params['Products'].each do |i|
      bindproductinfo_tmp = BindProductInfo.new
      bindproductinfo_tmp.deserialize(i)
      @Products << bindproductinfo_tmp
    end
  end
  @RequestId = params['RequestId']
end