Class: TencentCloud::Ess::V20201111::DescribeFileUrlsResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Ess::V20201111::DescribeFileUrlsResponse
- Defined in:
- lib/v20201111/models.rb
Overview
DescribeFileUrls返回参数结构体
Instance Attribute Summary collapse
-
#FileUrls ⇒ Object
链接不是永久链接, 过期时间受UrlTtl入参的影响, 默认有效期5分钟后, 到期后链接失效。.
-
#RequestId ⇒ Object
链接不是永久链接, 过期时间受UrlTtl入参的影响, 默认有效期5分钟后, 到期后链接失效。.
-
#TotalCount ⇒ Object
链接不是永久链接, 过期时间受UrlTtl入参的影响, 默认有效期5分钟后, 到期后链接失效。.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(fileurls = nil, totalcount = nil, requestid = nil) ⇒ DescribeFileUrlsResponse
constructor
A new instance of DescribeFileUrlsResponse.
Constructor Details
#initialize(fileurls = nil, totalcount = nil, requestid = nil) ⇒ DescribeFileUrlsResponse
Returns a new instance of DescribeFileUrlsResponse.
10245 10246 10247 10248 10249 |
# File 'lib/v20201111/models.rb', line 10245 def initialize(fileurls=nil, totalcount=nil, requestid=nil) @FileUrls = fileurls @TotalCount = totalcount @RequestId = requestid end |
Instance Attribute Details
#FileUrls ⇒ Object
链接不是永久链接, 过期时间受UrlTtl入参的影响, 默认有效期5分钟后, 到期后链接失效。
10243 10244 10245 |
# File 'lib/v20201111/models.rb', line 10243 def FileUrls @FileUrls end |
#RequestId ⇒ Object
链接不是永久链接, 过期时间受UrlTtl入参的影响, 默认有效期5分钟后, 到期后链接失效。
10243 10244 10245 |
# File 'lib/v20201111/models.rb', line 10243 def RequestId @RequestId end |
#TotalCount ⇒ Object
链接不是永久链接, 过期时间受UrlTtl入参的影响, 默认有效期5分钟后, 到期后链接失效。
10243 10244 10245 |
# File 'lib/v20201111/models.rb', line 10243 def TotalCount @TotalCount end |
Instance Method Details
#deserialize(params) ⇒ Object
10251 10252 10253 10254 10255 10256 10257 10258 10259 10260 10261 10262 |
# File 'lib/v20201111/models.rb', line 10251 def deserialize(params) unless params['FileUrls'].nil? @FileUrls = [] params['FileUrls'].each do |i| fileurl_tmp = FileUrl.new fileurl_tmp.deserialize(i) @FileUrls << fileurl_tmp end end @TotalCount = params['TotalCount'] @RequestId = params['RequestId'] end |