tencentcloud-sdk-cdn 1.0.361 → 1.0.364
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 +1 -0
- data/lib/v20180606/models.rb +13 -4
- 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: 7b06a8f8fbec9fbe157baaec3f9b27cf9438b99a
|
|
4
|
+
data.tar.gz: affe39cd0fa19abf698068e119fe60d540e4bcbb
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1f6e5b16bc7e52032135b9dae0de2dc6d2fc96a1c8758e49f09db88a51df1885021055050cde4646479730c340bfc36bc12c177c22c3e5bdedc23508eb4f8373
|
|
7
|
+
data.tar.gz: 95f23dfa678dbb9d89ec472967ab58c04de756274756c01b70453ecd4de06b7fe1a7d2072f026e2d0523f457bed642c30cd33f7aad45f92b34386ed2886bde88
|
data/lib/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.0.
|
|
1
|
+
1.0.364
|
data/lib/v20180606/client.rb
CHANGED
|
@@ -1835,6 +1835,7 @@ module TencentCloud
|
|
|
1835
1835
|
|
|
1836
1836
|
# UpdateDomainConfig 用于修改内容分发网络加速域名配置信息
|
|
1837
1837
|
# 注意:如果需要更新复杂类型的配置项,必须传递整个对象的所有属性,未传递的属性将使用默认值,建议通过查询接口获取配置属性后,直接修改后传递给本接口。Https配置由于证书的特殊性,更新时不用传递证书和密钥字段。
|
|
1838
|
+
# 云审计相关:接口的入参可能包含密钥等敏感信息,所以此接口的入参不会上报到云审计。
|
|
1838
1839
|
|
|
1839
1840
|
# @param request: Request instance for UpdateDomainConfig.
|
|
1840
1841
|
# @type request: :class:`Tencentcloud::cdn::V20180606::UpdateDomainConfigRequest`
|
data/lib/v20180606/models.rb
CHANGED
|
@@ -4506,14 +4506,17 @@ module TencentCloud
|
|
|
4506
4506
|
# @type Area: String
|
|
4507
4507
|
# @param Segment: 是否以IP段的格式返回。
|
|
4508
4508
|
# @type Segment: Boolean
|
|
4509
|
+
# @param ShowIpv6: 是否查询节点 IPV6 信息。
|
|
4510
|
+
# @type ShowIpv6: Boolean
|
|
4509
4511
|
|
|
4510
|
-
attr_accessor :Domain, :Layer, :Area, :Segment
|
|
4512
|
+
attr_accessor :Domain, :Layer, :Area, :Segment, :ShowIpv6
|
|
4511
4513
|
|
|
4512
|
-
def initialize(domain=nil, layer=nil, area=nil, segment=nil)
|
|
4514
|
+
def initialize(domain=nil, layer=nil, area=nil, segment=nil, showipv6=nil)
|
|
4513
4515
|
@Domain = domain
|
|
4514
4516
|
@Layer = layer
|
|
4515
4517
|
@Area = area
|
|
4516
4518
|
@Segment = segment
|
|
4519
|
+
@ShowIpv6 = showipv6
|
|
4517
4520
|
end
|
|
4518
4521
|
|
|
4519
4522
|
def deserialize(params)
|
|
@@ -4521,6 +4524,7 @@ module TencentCloud
|
|
|
4521
4524
|
@Layer = params['Layer']
|
|
4522
4525
|
@Area = params['Area']
|
|
4523
4526
|
@Segment = params['Segment']
|
|
4527
|
+
@ShowIpv6 = params['ShowIpv6']
|
|
4524
4528
|
end
|
|
4525
4529
|
end
|
|
4526
4530
|
|
|
@@ -7839,15 +7843,19 @@ module TencentCloud
|
|
|
7839
7843
|
# online:上线状态,正常调度服务中
|
|
7840
7844
|
# offline:下线状态
|
|
7841
7845
|
# @type Status: String
|
|
7846
|
+
# @param Ipv6: 节点 IPV6
|
|
7847
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
7848
|
+
# @type Ipv6: String
|
|
7842
7849
|
|
|
7843
|
-
attr_accessor :Ip, :District, :Isp, :City, :Status
|
|
7850
|
+
attr_accessor :Ip, :District, :Isp, :City, :Status, :Ipv6
|
|
7844
7851
|
|
|
7845
|
-
def initialize(ip=nil, district=nil, isp=nil, city=nil, status=nil)
|
|
7852
|
+
def initialize(ip=nil, district=nil, isp=nil, city=nil, status=nil, ipv6=nil)
|
|
7846
7853
|
@Ip = ip
|
|
7847
7854
|
@District = district
|
|
7848
7855
|
@Isp = isp
|
|
7849
7856
|
@City = city
|
|
7850
7857
|
@Status = status
|
|
7858
|
+
@Ipv6 = ipv6
|
|
7851
7859
|
end
|
|
7852
7860
|
|
|
7853
7861
|
def deserialize(params)
|
|
@@ -7856,6 +7864,7 @@ module TencentCloud
|
|
|
7856
7864
|
@Isp = params['Isp']
|
|
7857
7865
|
@City = params['City']
|
|
7858
7866
|
@Status = params['Status']
|
|
7867
|
+
@Ipv6 = params['Ipv6']
|
|
7859
7868
|
end
|
|
7860
7869
|
end
|
|
7861
7870
|
|
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: 1.0.
|
|
4
|
+
version: 1.0.364
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Tencent Cloud
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2022-07-
|
|
11
|
+
date: 2022-07-27 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: tencentcloud-sdk-common
|