tencentcloud-sdk-cdn 3.0.1146 → 3.0.1161
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/VERSION +1 -1
- data/lib/v20180606/client.rb +2 -0
- data/lib/v20180606/models.rb +13 -3
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 6bd9383a4997642f8adb0561e263f2be312b9852
|
|
4
|
+
data.tar.gz: c4b942d5579a3e74ccb7a1b5a8e02564410db0cc
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a1160af180ccac61ec29ad97549f41fb52e3568dfbc8abfc611b2aba07aacae4d4e2d757d722b158527a51eef870c023bdfedb0528778994ef75e30a2e3fbf3b
|
|
7
|
+
data.tar.gz: 5ec48838de15e4d32d725bb062adad95e9b0043a05e036aeabc05ec3eba707caf4f7381c206417e996e29b1560273160ca8f269f937c8bf5c65cf50cd845f7d8
|
data/lib/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.0.
|
|
1
|
+
3.0.1161
|
data/lib/v20180606/client.rb
CHANGED
|
@@ -228,6 +228,8 @@ module TencentCloud
|
|
|
228
228
|
end
|
|
229
229
|
|
|
230
230
|
# DescribeBillingData 用于查询实际计费数据明细。
|
|
231
|
+
# 注意:
|
|
232
|
+
# 受计费算法的影响,计费数据接口返回的数据均存在一定延时。小时结算客户预计延时3-5小时。月结算客户预计延迟4-28小时,在凌晨4点(不含4点)之前,仅能查询到前2天数据,4点(含)之后,能查询到前1天数据。若您对数据及时性较强的诉求,建议使用[监控访问数据](https://cloud.tencent.com/document/product/228/30986)。
|
|
231
233
|
|
|
232
234
|
# @param request: Request instance for DescribeBillingData.
|
|
233
235
|
# @type request: :class:`Tencentcloud::cdn::V20180606::DescribeBillingDataRequest`
|
data/lib/v20180606/models.rb
CHANGED
|
@@ -6069,7 +6069,12 @@ module TencentCloud
|
|
|
6069
6069
|
# @param FilterRules: IP 黑白名单分路径配置。黑白名单 IP 总数不能超过 1000 个。
|
|
6070
6070
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
6071
6071
|
# @type FilterRules: Array
|
|
6072
|
-
# @param ReturnCode: IP
|
|
6072
|
+
# @param ReturnCode: IP 黑白名单验证失败时返回的状态码。
|
|
6073
|
+
# 注意:
|
|
6074
|
+
# 请求拒绝时,平台默认响应514状态。
|
|
6075
|
+
# 支持自定义为403,404,609状态码,空值时或自定义的不在范围内,均默认为514.
|
|
6076
|
+
# 非514状态码将计入HTTPS计费统计,最终账单将按您的计费规则生成。
|
|
6077
|
+
# 若您开启了自定义状态码,则默认您认同<a href="https://cloud.tencent.com/document/product/228/75563">HTTPS计费规则</a>。
|
|
6073
6078
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
6074
6079
|
# @type ReturnCode: Integer
|
|
6075
6080
|
|
|
@@ -10489,15 +10494,19 @@ module TencentCloud
|
|
|
10489
10494
|
# @param FullMatch: 指定是全路径配置还是任意匹配
|
|
10490
10495
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
10491
10496
|
# @type FullMatch: Boolean
|
|
10497
|
+
# @param Regex: pattern是否支持正则
|
|
10498
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
10499
|
+
# @type Regex: Boolean
|
|
10492
10500
|
|
|
10493
|
-
attr_accessor :RedirectStatusCode, :Pattern, :RedirectUrl, :RedirectHost, :FullMatch
|
|
10501
|
+
attr_accessor :RedirectStatusCode, :Pattern, :RedirectUrl, :RedirectHost, :FullMatch, :Regex
|
|
10494
10502
|
|
|
10495
|
-
def initialize(redirectstatuscode=nil, pattern=nil, redirecturl=nil, redirecthost=nil, fullmatch=nil)
|
|
10503
|
+
def initialize(redirectstatuscode=nil, pattern=nil, redirecturl=nil, redirecthost=nil, fullmatch=nil, regex=nil)
|
|
10496
10504
|
@RedirectStatusCode = redirectstatuscode
|
|
10497
10505
|
@Pattern = pattern
|
|
10498
10506
|
@RedirectUrl = redirecturl
|
|
10499
10507
|
@RedirectHost = redirecthost
|
|
10500
10508
|
@FullMatch = fullmatch
|
|
10509
|
+
@Regex = regex
|
|
10501
10510
|
end
|
|
10502
10511
|
|
|
10503
10512
|
def deserialize(params)
|
|
@@ -10506,6 +10515,7 @@ module TencentCloud
|
|
|
10506
10515
|
@RedirectUrl = params['RedirectUrl']
|
|
10507
10516
|
@RedirectHost = params['RedirectHost']
|
|
10508
10517
|
@FullMatch = params['FullMatch']
|
|
10518
|
+
@Regex = params['Regex']
|
|
10509
10519
|
end
|
|
10510
10520
|
end
|
|
10511
10521
|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: tencentcloud-sdk-cdn
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.0.
|
|
4
|
+
version: 3.0.1161
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Tencent Cloud
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2025-
|
|
11
|
+
date: 2025-11-04 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: tencentcloud-sdk-common
|