tencentcloud-sdk-teo 3.0.809 → 3.0.810
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/v20220901/models.rb +13 -13
- 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: 68407cdb948aab1e7020f4d42f8aef4120a5b5f4
|
4
|
+
data.tar.gz: c835ce61eb269c780d01c06cf84b02070f4c94b4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d7ae74292b21d59ad8eb2d1adaee7aa075a1fb7260301d49ef78872fa2fc19a5c100049798c899e3f1a65e76ab33aa84c4de249f128e28d4201103a2dd4d87ab
|
7
|
+
data.tar.gz: 43115c9b1c348350712507ae0dd2cc7f3faa05accdf1d84731bb03455fd430a90b2353d942c1f7971479a58b19b5a6447a23ee06735e37dc9bf9e7292f58dce7
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.810
|
data/lib/v20220901/models.rb
CHANGED
@@ -75,6 +75,9 @@ module TencentCloud
|
|
75
75
|
# <li>HTTPS: HTTPS协议回源。</li>
|
76
76
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
77
77
|
# @type OriginProtocol: String
|
78
|
+
# @param Certificate: 域名证书信息
|
79
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
80
|
+
# @type Certificate: :class:`Tencentcloud::Teo.v20220901.models.AccelerationDomainCertificate`
|
78
81
|
# @param HttpOriginPort: HTTP回源端口。
|
79
82
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
80
83
|
# @type HttpOriginPort: Integer
|
@@ -99,18 +102,16 @@ module TencentCloud
|
|
99
102
|
# @param OwnershipVerification: 当域名需要进行归属权验证才能继续提供服务时,该对象会携带对应验证方式所需要的信息。
|
100
103
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
101
104
|
# @type OwnershipVerification: :class:`Tencentcloud::Teo.v20220901.models.OwnershipVerification`
|
102
|
-
# @param Certificate: 域名证书信息
|
103
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
104
|
-
# @type Certificate: :class:`Tencentcloud::Teo.v20220901.models.AccelerationDomainCertificate`
|
105
105
|
|
106
|
-
attr_accessor :ZoneId, :DomainName, :DomainStatus, :OriginDetail, :OriginProtocol, :HttpOriginPort, :HttpsOriginPort, :IPv6Status, :Cname, :IdentificationStatus, :CreatedOn, :ModifiedOn, :OwnershipVerification
|
106
|
+
attr_accessor :ZoneId, :DomainName, :DomainStatus, :OriginDetail, :OriginProtocol, :Certificate, :HttpOriginPort, :HttpsOriginPort, :IPv6Status, :Cname, :IdentificationStatus, :CreatedOn, :ModifiedOn, :OwnershipVerification
|
107
107
|
|
108
|
-
def initialize(zoneid=nil, domainname=nil, domainstatus=nil, origindetail=nil, originprotocol=nil, httporiginport=nil, httpsoriginport=nil, ipv6status=nil, cname=nil, identificationstatus=nil, createdon=nil, modifiedon=nil, ownershipverification=nil
|
108
|
+
def initialize(zoneid=nil, domainname=nil, domainstatus=nil, origindetail=nil, originprotocol=nil, certificate=nil, httporiginport=nil, httpsoriginport=nil, ipv6status=nil, cname=nil, identificationstatus=nil, createdon=nil, modifiedon=nil, ownershipverification=nil)
|
109
109
|
@ZoneId = zoneid
|
110
110
|
@DomainName = domainname
|
111
111
|
@DomainStatus = domainstatus
|
112
112
|
@OriginDetail = origindetail
|
113
113
|
@OriginProtocol = originprotocol
|
114
|
+
@Certificate = certificate
|
114
115
|
@HttpOriginPort = httporiginport
|
115
116
|
@HttpsOriginPort = httpsoriginport
|
116
117
|
@IPv6Status = ipv6status
|
@@ -119,7 +120,6 @@ module TencentCloud
|
|
119
120
|
@CreatedOn = createdon
|
120
121
|
@ModifiedOn = modifiedon
|
121
122
|
@OwnershipVerification = ownershipverification
|
122
|
-
@Certificate = certificate
|
123
123
|
end
|
124
124
|
|
125
125
|
def deserialize(params)
|
@@ -131,6 +131,10 @@ module TencentCloud
|
|
131
131
|
@OriginDetail.deserialize(params['OriginDetail'])
|
132
132
|
end
|
133
133
|
@OriginProtocol = params['OriginProtocol']
|
134
|
+
unless params['Certificate'].nil?
|
135
|
+
@Certificate = AccelerationDomainCertificate.new
|
136
|
+
@Certificate.deserialize(params['Certificate'])
|
137
|
+
end
|
134
138
|
@HttpOriginPort = params['HttpOriginPort']
|
135
139
|
@HttpsOriginPort = params['HttpsOriginPort']
|
136
140
|
@IPv6Status = params['IPv6Status']
|
@@ -142,10 +146,6 @@ module TencentCloud
|
|
142
146
|
@OwnershipVerification = OwnershipVerification.new
|
143
147
|
@OwnershipVerification.deserialize(params['OwnershipVerification'])
|
144
148
|
end
|
145
|
-
unless params['Certificate'].nil?
|
146
|
-
@Certificate = AccelerationDomainCertificate.new
|
147
|
-
@Certificate.deserialize(params['Certificate'])
|
148
|
-
end
|
149
149
|
end
|
150
150
|
end
|
151
151
|
|
@@ -9593,7 +9593,7 @@ module TencentCloud
|
|
9593
9593
|
# <li>COS:腾讯云 COS 对象存储源站;</li>
|
9594
9594
|
# <li>AWS_S3:AWS S3 对象存储源站;</li>
|
9595
9595
|
# <li>ORIGIN_GROUP:源站组类型源站;</li>
|
9596
|
-
#
|
9596
|
+
# <li>VODEO:云点播(混合云版);</li>
|
9597
9597
|
# <li>SPACE:源站卸载,当前仅白名单开放;</li>
|
9598
9598
|
# <li>LB:负载均衡,当前仅白名单开放。</li>
|
9599
9599
|
# @type OriginType: String
|
@@ -9610,10 +9610,10 @@ module TencentCloud
|
|
9610
9610
|
# @type OriginGroupName: String
|
9611
9611
|
# @param BackOriginGroupName: 备用源站组名称,该参数仅当 OriginType = ORIGIN_GROUP 且配置了备用源站组时会生效。
|
9612
9612
|
# @type BackOriginGroupName: String
|
9613
|
-
# @param PrivateAccess: 指定是否允许访问私有对象存储源站,该参数仅当源站类型
|
9613
|
+
# @param PrivateAccess: 指定是否允许访问私有对象存储源站,该参数仅当源站类型OriginType = COS 或 AWS_S3 时会生效,取值有:
|
9614
9614
|
# <li>on:使用私有鉴权;</li>
|
9615
9615
|
# <li>off:不使用私有鉴权。</li>
|
9616
|
-
# 不填写,默认值为off。
|
9616
|
+
# 不填写,默认值为 off。
|
9617
9617
|
# @type PrivateAccess: String
|
9618
9618
|
# @param PrivateParameters: 私有鉴权使用参数,该参数仅当源站类型 PrivateAccess = on 时会生效。
|
9619
9619
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tencentcloud-sdk-teo
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.0.
|
4
|
+
version: 3.0.810
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tencent Cloud
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-04-
|
11
|
+
date: 2024-04-24 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|