Class: TencentCloud::Cme::V20191029::DescribeSharedSpaceResponse

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

Overview

DescribeSharedSpace返回参数结构体

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(totalcount = nil, authorizerset = nil, requestid = nil) ⇒ DescribeSharedSpaceResponse

Returns a new instance of DescribeSharedSpaceResponse.



1735
1736
1737
1738
1739
# File 'lib/v20191029/models.rb', line 1735

def initialize(totalcount=nil, authorizerset=nil, requestid=nil)
  @TotalCount = totalcount
  @AuthorizerSet = authorizerset
  @RequestId = requestid
end

Instance Attribute Details

#AuthorizerSetObject

Parameters:

  • TotalCount:

    查询到的共享空间总数。

  • AuthorizerSet:

    各个共享空间对应的授权者信息。

  • RequestId:

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



1733
1734
1735
# File 'lib/v20191029/models.rb', line 1733

def AuthorizerSet
  @AuthorizerSet
end

#RequestIdObject

Parameters:

  • TotalCount:

    查询到的共享空间总数。

  • AuthorizerSet:

    各个共享空间对应的授权者信息。

  • RequestId:

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



1733
1734
1735
# File 'lib/v20191029/models.rb', line 1733

def RequestId
  @RequestId
end

#TotalCountObject

Parameters:

  • TotalCount:

    查询到的共享空间总数。

  • AuthorizerSet:

    各个共享空间对应的授权者信息。

  • RequestId:

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



1733
1734
1735
# File 'lib/v20191029/models.rb', line 1733

def TotalCount
  @TotalCount
end

Instance Method Details

#deserialize(params) ⇒ Object



1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
# File 'lib/v20191029/models.rb', line 1741

def deserialize(params)
  @TotalCount = params['TotalCount']
  unless params['AuthorizerSet'].nil?
    @AuthorizerSet = []
    params['AuthorizerSet'].each do |i|
      authorizer_tmp = Authorizer.new
      authorizer_tmp.deserialize(i)
      @AuthorizerSet << authorizer_tmp
    end
  end
  @RequestId = params['RequestId']
end