tencentcloud-sdk-teo 3.0.1160 → 3.0.1163
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/tencentcloud-sdk-teo.rb +3 -3
- data/lib/v20220901/client.rb +60 -0
- data/lib/v20220901/models.rb +138 -31
- metadata +5 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b75acf36f16e5e6ceaa027d487863e0158f1f3b6
|
|
4
|
+
data.tar.gz: b477a1b05a2fb1535d25d89f9c41f4246e0751bd
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 61a86efc5f7ce4e2074ba8189aa9cdfe51239b862b88594b6b9181958834f1ce1eef178561c10d22c550edf4c00cc07b72ce1f6fc19a9dd3accdce82f6fdb109
|
|
7
|
+
data.tar.gz: 4453ae5926ec76d5e6a1a2bfa6e6e6642f4b026ff4d8758c180fdac9195a1d081e4c578c19426c89f6b07e45fa09c171dc322a8ad4d07ca94a681a73e93e369e
|
data/lib/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.0.
|
|
1
|
+
3.0.1163
|
data/lib/tencentcloud-sdk-teo.rb
CHANGED
|
@@ -2,12 +2,12 @@
|
|
|
2
2
|
|
|
3
3
|
require 'tencentcloud-sdk-common'
|
|
4
4
|
|
|
5
|
-
require_relative 'v20220901/client'
|
|
6
|
-
require_relative 'v20220901/models'
|
|
7
|
-
|
|
8
5
|
require_relative 'v20220106/client'
|
|
9
6
|
require_relative 'v20220106/models'
|
|
10
7
|
|
|
8
|
+
require_relative 'v20220901/client'
|
|
9
|
+
require_relative 'v20220901/models'
|
|
10
|
+
|
|
11
11
|
module TencentCloud
|
|
12
12
|
module Teo
|
|
13
13
|
end
|
data/lib/v20220901/client.rb
CHANGED
|
@@ -29,6 +29,40 @@ module TencentCloud
|
|
|
29
29
|
end
|
|
30
30
|
|
|
31
31
|
|
|
32
|
+
# 申请免费证书时,如果您需要通过使用 DNS 委派验证或者文件验证进行申请,您可以调用该接口来进行发起证书申请并根据申请方式来获取对应的验证内容。调用接口的顺序如下:
|
|
33
|
+
# 第一步:调用 ApplyFreeCertificate,指定申请免费证书的校验方式,获取验证内容;
|
|
34
|
+
# 第二步:为相应域名按照验证内容配置;
|
|
35
|
+
# 第三步:调用CheckFreeCertificateVerification 验证,验证通过后即完成免费证书申请;
|
|
36
|
+
# 第四步:调用ModifyHostsCertificate,下发域名证书为使用 EdgeOne 免费证书配置。
|
|
37
|
+
|
|
38
|
+
# 申请方式的介绍可参考文档:[免费证书申请说明](https://cloud.tencent.com/document/product/1552/90437)
|
|
39
|
+
# 说明:
|
|
40
|
+
# - 仅 CNAME 接入模式可调用该接口来指定免费证书申请方式。NS/DNSPod 托管接入模式都是使用自动验证来申请免费证书,无需调用该接口。
|
|
41
|
+
# - 如果您需要切换免费证书验证方式,您可以重新调用本接口通过修改 VerificationMethod 字段来进行变更。
|
|
42
|
+
# - 同个域名只能申请一本免费证书,在调用本接口后,后台会触发申请免费证书相关任务,您需要在2 天内,完成域名验证信息的相关配置,然后完成证书验证。
|
|
43
|
+
|
|
44
|
+
# @param request: Request instance for ApplyFreeCertificate.
|
|
45
|
+
# @type request: :class:`Tencentcloud::teo::V20220901::ApplyFreeCertificateRequest`
|
|
46
|
+
# @rtype: :class:`Tencentcloud::teo::V20220901::ApplyFreeCertificateResponse`
|
|
47
|
+
def ApplyFreeCertificate(request)
|
|
48
|
+
body = send_request('ApplyFreeCertificate', request.serialize)
|
|
49
|
+
response = JSON.parse(body)
|
|
50
|
+
if response['Response'].key?('Error') == false
|
|
51
|
+
model = ApplyFreeCertificateResponse.new
|
|
52
|
+
model.deserialize(response['Response'])
|
|
53
|
+
model
|
|
54
|
+
else
|
|
55
|
+
code = response['Response']['Error']['Code']
|
|
56
|
+
message = response['Response']['Error']['Message']
|
|
57
|
+
reqid = response['Response']['RequestId']
|
|
58
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
|
59
|
+
end
|
|
60
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
|
61
|
+
raise e
|
|
62
|
+
rescue StandardError => e
|
|
63
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
|
64
|
+
end
|
|
65
|
+
|
|
32
66
|
# 操作安全策略模板,支持将域名绑定或换绑到指定的策略模板,或者从指定的策略模板解绑。
|
|
33
67
|
|
|
34
68
|
# @param request: Request instance for BindSecurityTemplateToEntity.
|
|
@@ -125,6 +159,31 @@ module TencentCloud
|
|
|
125
159
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
|
126
160
|
end
|
|
127
161
|
|
|
162
|
+
# 该接口用于验证免费证书并获取免费证书申请结果。如果验证通过,可通过该接口查询到对应域名申请的免费证书信息,如果申请失败,该接口将返回对应的验证失败信息。
|
|
163
|
+
# 在触发[申请免费证书接口](https://cloud.tencent.com/document/product/1552/90437)后,您可以通过本接口检查免费证书申请结果。在免费证书申请成功后, 还需要通过[配置域名证书](https://tcloud4api.woa.com/document/product/1657/80723?!preview)接口配置,才能将免费证书部署至加速域上。
|
|
164
|
+
|
|
165
|
+
# @param request: Request instance for CheckFreeCertificateVerification.
|
|
166
|
+
# @type request: :class:`Tencentcloud::teo::V20220901::CheckFreeCertificateVerificationRequest`
|
|
167
|
+
# @rtype: :class:`Tencentcloud::teo::V20220901::CheckFreeCertificateVerificationResponse`
|
|
168
|
+
def CheckFreeCertificateVerification(request)
|
|
169
|
+
body = send_request('CheckFreeCertificateVerification', request.serialize)
|
|
170
|
+
response = JSON.parse(body)
|
|
171
|
+
if response['Response'].key?('Error') == false
|
|
172
|
+
model = CheckFreeCertificateVerificationResponse.new
|
|
173
|
+
model.deserialize(response['Response'])
|
|
174
|
+
model
|
|
175
|
+
else
|
|
176
|
+
code = response['Response']['Error']['Code']
|
|
177
|
+
message = response['Response']['Error']['Message']
|
|
178
|
+
reqid = response['Response']['RequestId']
|
|
179
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
|
180
|
+
end
|
|
181
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
|
182
|
+
raise e
|
|
183
|
+
rescue StandardError => e
|
|
184
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
|
185
|
+
end
|
|
186
|
+
|
|
128
187
|
# 本接口用于多通道安全加速网关回源 IP 网段发生变更时,确认已将最新回源 IP 网段更新至源站防火墙。
|
|
129
188
|
|
|
130
189
|
# @param request: Request instance for ConfirmMultiPathGatewayOriginACL.
|
|
@@ -763,6 +822,7 @@ module TencentCloud
|
|
|
763
822
|
# - 一个推送至腾讯云 CLS 的任务,加上另一个推送至自定义 HTTP(S) 地址的任务;
|
|
764
823
|
# - 一个推送至腾讯云 CLS 的任务,加上另一个推送至 AWS S3 兼容对象存储的任务;
|
|
765
824
|
# - 当数据投递类型(LogType)为速率限制和 CC 攻击防护日志、托管规则日志、自定义规则日志、Bot 管理日志时,同一个实体在同种数据投递类型(LogType)和数据投递区域(Area)的组合下,只能被添加到一个实时日志投递任务中。
|
|
825
|
+
# - 当实时日志投递任务类型(TaskType)为 EdgeOne 日志分析(log_analysis)时,只支持数据投递类型(LogType)为站点加速日志(domain);在同一站点(ZoneId)和数据投递区域(Area)的组合下,只能添加一个推送至 EdgeOne 日志分析的实时日志投递任务;。
|
|
766
826
|
|
|
767
827
|
# 建议先通过 [DescribeRealtimeLogDeliveryTasks](https://cloud.tencent.com/document/product/1552/104110) 接口根据实体查询实时日志投递任务列表,检查实体是否已经被添加到另一实时日志投递任务中。
|
|
768
828
|
|
data/lib/v20220901/models.rb
CHANGED
|
@@ -1146,6 +1146,63 @@ module TencentCloud
|
|
|
1146
1146
|
end
|
|
1147
1147
|
end
|
|
1148
1148
|
|
|
1149
|
+
# ApplyFreeCertificate请求参数结构体
|
|
1150
|
+
class ApplyFreeCertificateRequest < TencentCloud::Common::AbstractModel
|
|
1151
|
+
# @param ZoneId: 站点ID。
|
|
1152
|
+
# @type ZoneId: String
|
|
1153
|
+
# @param Domain: 申请免费证书的目标域名。
|
|
1154
|
+
# @type Domain: String
|
|
1155
|
+
# @param VerificationMethod: 申请免费证书时验证方式,详细验证方式说明参考[免费证书申请方式说明文档](https://cloud.tencent.com/document/product/1552/90437) ,相关取值有:
|
|
1156
|
+
# <li>http_challenge:HTTP 访问文件验证方式,通过 HTTP 访问域名指定 URL 获取文件信息以完成免费证书申请验证;</li>
|
|
1157
|
+
# <li>dns_challenge:DNS 委派验证方式,通过添加指定的主机记录解析指向 EdgeOne 以完成免费证书申请验证。</li>
|
|
1158
|
+
# 注意:在触发本接口后,你需要根据返回的验证信息,完成验证内容配置。配置完成后,还需要通过<a href = 'https://tcloud4api.woa.com/document/product/1657/927938?!preview&!document=1'>检查免费证书申请结果</a>接口进行验证,验证通过后,即可申请成功。在免费证书申请成功后,你可以调用<a href = 'https://cloud.tencent.com/document/product/1552/80764'>配置域名证书</a>接口为当前域名部署免费证书。
|
|
1159
|
+
# @type VerificationMethod: String
|
|
1160
|
+
|
|
1161
|
+
attr_accessor :ZoneId, :Domain, :VerificationMethod
|
|
1162
|
+
|
|
1163
|
+
def initialize(zoneid=nil, domain=nil, verificationmethod=nil)
|
|
1164
|
+
@ZoneId = zoneid
|
|
1165
|
+
@Domain = domain
|
|
1166
|
+
@VerificationMethod = verificationmethod
|
|
1167
|
+
end
|
|
1168
|
+
|
|
1169
|
+
def deserialize(params)
|
|
1170
|
+
@ZoneId = params['ZoneId']
|
|
1171
|
+
@Domain = params['Domain']
|
|
1172
|
+
@VerificationMethod = params['VerificationMethod']
|
|
1173
|
+
end
|
|
1174
|
+
end
|
|
1175
|
+
|
|
1176
|
+
# ApplyFreeCertificate返回参数结构体
|
|
1177
|
+
class ApplyFreeCertificateResponse < TencentCloud::Common::AbstractModel
|
|
1178
|
+
# @param DnsVerification: 当 VerificationMethod 为 dns_challenge 时,域名申请免费证书的相关验证信息。
|
|
1179
|
+
# @type DnsVerification: :class:`Tencentcloud::Teo.v20220901.models.DnsVerification`
|
|
1180
|
+
# @param FileVerification: 当 VerificationMethod 为 http_challenge 时,域名申请免费证书的相关验证信息。
|
|
1181
|
+
# @type FileVerification: :class:`Tencentcloud::Teo.v20220901.models.FileVerification`
|
|
1182
|
+
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
1183
|
+
# @type RequestId: String
|
|
1184
|
+
|
|
1185
|
+
attr_accessor :DnsVerification, :FileVerification, :RequestId
|
|
1186
|
+
|
|
1187
|
+
def initialize(dnsverification=nil, fileverification=nil, requestid=nil)
|
|
1188
|
+
@DnsVerification = dnsverification
|
|
1189
|
+
@FileVerification = fileverification
|
|
1190
|
+
@RequestId = requestid
|
|
1191
|
+
end
|
|
1192
|
+
|
|
1193
|
+
def deserialize(params)
|
|
1194
|
+
unless params['DnsVerification'].nil?
|
|
1195
|
+
@DnsVerification = DnsVerification.new
|
|
1196
|
+
@DnsVerification.deserialize(params['DnsVerification'])
|
|
1197
|
+
end
|
|
1198
|
+
unless params['FileVerification'].nil?
|
|
1199
|
+
@FileVerification = FileVerification.new
|
|
1200
|
+
@FileVerification.deserialize(params['FileVerification'])
|
|
1201
|
+
end
|
|
1202
|
+
@RequestId = params['RequestId']
|
|
1203
|
+
end
|
|
1204
|
+
end
|
|
1205
|
+
|
|
1149
1206
|
# 站点归属信息
|
|
1150
1207
|
class AscriptionInfo < TencentCloud::Common::AbstractModel
|
|
1151
1208
|
# @param Subdomain: 主机记录。
|
|
@@ -2266,8 +2323,8 @@ module TencentCloud
|
|
|
2266
2323
|
|
|
2267
2324
|
attr_accessor :Switch, :CacheTime, :IgnoreCacheControl
|
|
2268
2325
|
extend Gem::Deprecate
|
|
2269
|
-
deprecate :IgnoreCacheControl, :none, 2025,
|
|
2270
|
-
deprecate :IgnoreCacheControl=, :none, 2025,
|
|
2326
|
+
deprecate :IgnoreCacheControl, :none, 2025, 11
|
|
2327
|
+
deprecate :IgnoreCacheControl=, :none, 2025, 11
|
|
2271
2328
|
|
|
2272
2329
|
def initialize(switch=nil, cachetime=nil, ignorecachecontrol=nil)
|
|
2273
2330
|
@Switch = switch
|
|
@@ -2840,6 +2897,55 @@ module TencentCloud
|
|
|
2840
2897
|
end
|
|
2841
2898
|
end
|
|
2842
2899
|
|
|
2900
|
+
# CheckFreeCertificateVerification请求参数结构体
|
|
2901
|
+
class CheckFreeCertificateVerificationRequest < TencentCloud::Common::AbstractModel
|
|
2902
|
+
# @param ZoneId: 站点 ID。
|
|
2903
|
+
# @type ZoneId: String
|
|
2904
|
+
# @param Domain: 加速域名,该域名为[申请免费证书](https://tcloud4api.woa.com/document/product/1657/927654?!preview&!document=1)时使用的域名。
|
|
2905
|
+
# @type Domain: String
|
|
2906
|
+
|
|
2907
|
+
attr_accessor :ZoneId, :Domain
|
|
2908
|
+
|
|
2909
|
+
def initialize(zoneid=nil, domain=nil)
|
|
2910
|
+
@ZoneId = zoneid
|
|
2911
|
+
@Domain = domain
|
|
2912
|
+
end
|
|
2913
|
+
|
|
2914
|
+
def deserialize(params)
|
|
2915
|
+
@ZoneId = params['ZoneId']
|
|
2916
|
+
@Domain = params['Domain']
|
|
2917
|
+
end
|
|
2918
|
+
end
|
|
2919
|
+
|
|
2920
|
+
# CheckFreeCertificateVerification返回参数结构体
|
|
2921
|
+
class CheckFreeCertificateVerificationResponse < TencentCloud::Common::AbstractModel
|
|
2922
|
+
# @param CommonName: 免费证书申请成功时,该证书颁发给的域名。
|
|
2923
|
+
# 注意:一个域名只允许申请一本免费证书, 如果已经有泛域名申请了免费证书的情况下,其子域名会匹配使用该泛域名证书。
|
|
2924
|
+
# @type CommonName: String
|
|
2925
|
+
# @param SignatureAlgorithm: 免费证书申请成功时,该证书使用的签名算法,当前仅支持 RSA 2048。
|
|
2926
|
+
# @type SignatureAlgorithm: String
|
|
2927
|
+
# @param ExpireTime: 免费证书申请成功时,该证书的过期时间。时间为世界标准时间(UTC), 遵循 ISO 8601 标准的日期和时间格式。
|
|
2928
|
+
# @type ExpireTime: String
|
|
2929
|
+
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
2930
|
+
# @type RequestId: String
|
|
2931
|
+
|
|
2932
|
+
attr_accessor :CommonName, :SignatureAlgorithm, :ExpireTime, :RequestId
|
|
2933
|
+
|
|
2934
|
+
def initialize(commonname=nil, signaturealgorithm=nil, expiretime=nil, requestid=nil)
|
|
2935
|
+
@CommonName = commonname
|
|
2936
|
+
@SignatureAlgorithm = signaturealgorithm
|
|
2937
|
+
@ExpireTime = expiretime
|
|
2938
|
+
@RequestId = requestid
|
|
2939
|
+
end
|
|
2940
|
+
|
|
2941
|
+
def deserialize(params)
|
|
2942
|
+
@CommonName = params['CommonName']
|
|
2943
|
+
@SignatureAlgorithm = params['SignatureAlgorithm']
|
|
2944
|
+
@ExpireTime = params['ExpireTime']
|
|
2945
|
+
@RequestId = params['RequestId']
|
|
2946
|
+
end
|
|
2947
|
+
end
|
|
2948
|
+
|
|
2843
2949
|
# 各个健康检查区域下源站的健康状态。
|
|
2844
2950
|
class CheckRegionHealthStatus < TencentCloud::Common::AbstractModel
|
|
2845
2951
|
# @param Region: 健康检查区域,ISO-3166-1 两位字母代码。
|
|
@@ -4835,8 +4941,8 @@ module TencentCloud
|
|
|
4835
4941
|
|
|
4836
4942
|
attr_accessor :ZoneId, :Targets, :EncodeUrl, :Headers, :PrefetchMediaSegments
|
|
4837
4943
|
extend Gem::Deprecate
|
|
4838
|
-
deprecate :EncodeUrl, :none, 2025,
|
|
4839
|
-
deprecate :EncodeUrl=, :none, 2025,
|
|
4944
|
+
deprecate :EncodeUrl, :none, 2025, 11
|
|
4945
|
+
deprecate :EncodeUrl=, :none, 2025, 11
|
|
4840
4946
|
|
|
4841
4947
|
def initialize(zoneid=nil, targets=nil, encodeurl=nil, headers=nil, prefetchmediasegments=nil)
|
|
4842
4948
|
@ZoneId = zoneid
|
|
@@ -4918,8 +5024,8 @@ module TencentCloud
|
|
|
4918
5024
|
|
|
4919
5025
|
attr_accessor :ZoneId, :Type, :Method, :Targets, :EncodeUrl, :CacheTag
|
|
4920
5026
|
extend Gem::Deprecate
|
|
4921
|
-
deprecate :EncodeUrl, :none, 2025,
|
|
4922
|
-
deprecate :EncodeUrl=, :none, 2025,
|
|
5027
|
+
deprecate :EncodeUrl, :none, 2025, 11
|
|
5028
|
+
deprecate :EncodeUrl=, :none, 2025, 11
|
|
4923
5029
|
|
|
4924
5030
|
def initialize(zoneid=nil, type=nil, method=nil, targets=nil, encodeurl=nil, cachetag=nil)
|
|
4925
5031
|
@ZoneId = zoneid
|
|
@@ -4985,6 +5091,7 @@ module TencentCloud
|
|
|
4985
5091
|
# <li>cls: 推送到腾讯云 CLS;</li>
|
|
4986
5092
|
# <li>custom_endpoint:推送到自定义 HTTP(S) 地址;</li>
|
|
4987
5093
|
# <li>s3:推送到 AWS S3 兼容存储桶地址;</li>
|
|
5094
|
+
# <li>log_analysis:推送到 EdgeOne 日志分析,该任务类型仅支持“站点加速日志”这一数据投递类型。</li>
|
|
4988
5095
|
# @type TaskType: String
|
|
4989
5096
|
# @param EntityList: 实时日志投递任务对应的实体列表。取值示例如下:
|
|
4990
5097
|
# <li>七层域名:domain.example.com</li>
|
|
@@ -5017,7 +5124,7 @@ module TencentCloud
|
|
|
5017
5124
|
# @type Sample: Integer
|
|
5018
5125
|
# @param LogFormat: 日志投递的输出格式。不填表示为默认格式,默认格式逻辑如下:
|
|
5019
5126
|
# <li>当 TaskType 取值为 custom_endpoint 时,默认格式为多个 JSON 对象组成的数组,每个 JSON 对象为一条日志;</li>
|
|
5020
|
-
# <li>当 TaskType 取值为 s3 时,默认格式为 JSON Lines;</li>特别地,当 TaskType 取值为 cls 时,LogFormat.FormatType 的值只能为 json,且 LogFormat 中其他参数将被忽略,建议不传 LogFormat。
|
|
5127
|
+
# <li>当 TaskType 取值为 s3 时,默认格式为 JSON Lines;</li>特别地,当 TaskType 取值为 cls 或 log_analysis 时,LogFormat.FormatType 的值只能为 json,且 LogFormat 中其他参数将被忽略,建议不传 LogFormat。
|
|
5021
5128
|
# @type LogFormat: :class:`Tencentcloud::Teo.v20220901.models.LogFormat`
|
|
5022
5129
|
# @param CLS: CLS 的配置信息。当 TaskType 取值为 cls 时,该参数必填。
|
|
5023
5130
|
# @type CLS: :class:`Tencentcloud::Teo.v20220901.models.CLSTopic`
|
|
@@ -5528,10 +5635,10 @@ module TencentCloud
|
|
|
5528
5635
|
|
|
5529
5636
|
attr_accessor :Type, :ZoneName, :Area, :PlanId, :AliasZoneName, :Tags, :AllowDuplicates, :JumpStart
|
|
5530
5637
|
extend Gem::Deprecate
|
|
5531
|
-
deprecate :AllowDuplicates, :none, 2025,
|
|
5532
|
-
deprecate :AllowDuplicates=, :none, 2025,
|
|
5533
|
-
deprecate :JumpStart, :none, 2025,
|
|
5534
|
-
deprecate :JumpStart=, :none, 2025,
|
|
5638
|
+
deprecate :AllowDuplicates, :none, 2025, 11
|
|
5639
|
+
deprecate :AllowDuplicates=, :none, 2025, 11
|
|
5640
|
+
deprecate :JumpStart, :none, 2025, 11
|
|
5641
|
+
deprecate :JumpStart=, :none, 2025, 11
|
|
5535
5642
|
|
|
5536
5643
|
def initialize(type=nil, zonename=nil, area=nil, planid=nil, aliaszonename=nil, tags=nil, allowduplicates=nil, jumpstart=nil)
|
|
5537
5644
|
@Type = type
|
|
@@ -10099,7 +10206,7 @@ module TencentCloud
|
|
|
10099
10206
|
# <li>task-id:按照实时日志投递任务 ID进行过滤。不支持模糊查询。</li>
|
|
10100
10207
|
# <li>task-name:按照实时日志投递任务名称进行过滤。支持模糊查询,使用模糊查询时,仅支持填写一个实时日志投递任务名称。</li>
|
|
10101
10208
|
# <li>entity-list:按照实时日志投递任务对应的实体进行过滤。不支持模糊查询。示例值:domain.example.com 或者 sid-2s69eb5wcms7。</li>
|
|
10102
|
-
# <li>task-type:按照实时日志投递任务类型进行过滤。不支持模糊查询。可选项如下:<br> cls: 推送到腾讯云 CLS;<br> custom_endpoint:推送到自定义 HTTP(S) 地址;<br> s3:推送到 AWS S3
|
|
10209
|
+
# <li>task-type:按照实时日志投递任务类型进行过滤。不支持模糊查询。可选项如下:<br> cls: 推送到腾讯云 CLS;<br> custom_endpoint:推送到自定义 HTTP(S) 地址;<br> s3:推送到 AWS S3 兼容存储桶地址;<br> log_analysis:推送到 EdgeOne 日志分析。</li>
|
|
10103
10210
|
# @type Filters: Array
|
|
10104
10211
|
|
|
10105
10212
|
attr_accessor :ZoneId, :Offset, :Limit, :Filters
|
|
@@ -16000,8 +16107,8 @@ module TencentCloud
|
|
|
16000
16107
|
|
|
16001
16108
|
attr_accessor :ZoneId, :Hosts, :Mode, :ServerCertInfo, :ApplyType, :ClientCertInfo, :UpstreamCertInfo
|
|
16002
16109
|
extend Gem::Deprecate
|
|
16003
|
-
deprecate :ApplyType, :none, 2025,
|
|
16004
|
-
deprecate :ApplyType=, :none, 2025,
|
|
16110
|
+
deprecate :ApplyType, :none, 2025, 11
|
|
16111
|
+
deprecate :ApplyType=, :none, 2025, 11
|
|
16005
16112
|
|
|
16006
16113
|
def initialize(zoneid=nil, hosts=nil, mode=nil, servercertinfo=nil, applytype=nil, clientcertinfo=nil, upstreamcertinfo=nil)
|
|
16007
16114
|
@ZoneId = zoneid
|
|
@@ -18245,12 +18352,12 @@ module TencentCloud
|
|
|
18245
18352
|
|
|
18246
18353
|
attr_accessor :OriginType, :Origin, :BackupOrigin, :OriginGroupName, :BackOriginGroupName, :PrivateAccess, :PrivateParameters, :HostHeader, :VodeoSubAppId, :VodeoDistributionRange, :VodeoBucketId, :VodOriginScope, :VodBucketId
|
|
18247
18354
|
extend Gem::Deprecate
|
|
18248
|
-
deprecate :VodeoSubAppId, :none, 2025,
|
|
18249
|
-
deprecate :VodeoSubAppId=, :none, 2025,
|
|
18250
|
-
deprecate :VodeoDistributionRange, :none, 2025,
|
|
18251
|
-
deprecate :VodeoDistributionRange=, :none, 2025,
|
|
18252
|
-
deprecate :VodeoBucketId, :none, 2025,
|
|
18253
|
-
deprecate :VodeoBucketId=, :none, 2025,
|
|
18355
|
+
deprecate :VodeoSubAppId, :none, 2025, 11
|
|
18356
|
+
deprecate :VodeoSubAppId=, :none, 2025, 11
|
|
18357
|
+
deprecate :VodeoDistributionRange, :none, 2025, 11
|
|
18358
|
+
deprecate :VodeoDistributionRange=, :none, 2025, 11
|
|
18359
|
+
deprecate :VodeoBucketId, :none, 2025, 11
|
|
18360
|
+
deprecate :VodeoBucketId=, :none, 2025, 11
|
|
18254
18361
|
|
|
18255
18362
|
def initialize(origintype=nil, origin=nil, backuporigin=nil, origingroupname=nil, backorigingroupname=nil, privateaccess=nil, privateparameters=nil, hostheader=nil, vodeosubappid=nil, vodeodistributionrange=nil, vodeobucketid=nil, vodoriginscope=nil, vodbucketid=nil)
|
|
18256
18363
|
@OriginType = origintype
|
|
@@ -18555,12 +18662,12 @@ module TencentCloud
|
|
|
18555
18662
|
|
|
18556
18663
|
attr_accessor :OriginType, :Origin, :BackupOrigin, :PrivateAccess, :PrivateParameters, :HostHeader, :VodeoSubAppId, :VodeoDistributionRange, :VodeoBucketId, :VodOriginScope, :VodBucketId
|
|
18557
18664
|
extend Gem::Deprecate
|
|
18558
|
-
deprecate :VodeoSubAppId, :none, 2025,
|
|
18559
|
-
deprecate :VodeoSubAppId=, :none, 2025,
|
|
18560
|
-
deprecate :VodeoDistributionRange, :none, 2025,
|
|
18561
|
-
deprecate :VodeoDistributionRange=, :none, 2025,
|
|
18562
|
-
deprecate :VodeoBucketId, :none, 2025,
|
|
18563
|
-
deprecate :VodeoBucketId=, :none, 2025,
|
|
18665
|
+
deprecate :VodeoSubAppId, :none, 2025, 11
|
|
18666
|
+
deprecate :VodeoSubAppId=, :none, 2025, 11
|
|
18667
|
+
deprecate :VodeoDistributionRange, :none, 2025, 11
|
|
18668
|
+
deprecate :VodeoDistributionRange=, :none, 2025, 11
|
|
18669
|
+
deprecate :VodeoBucketId, :none, 2025, 11
|
|
18670
|
+
deprecate :VodeoBucketId=, :none, 2025, 11
|
|
18564
18671
|
|
|
18565
18672
|
def initialize(origintype=nil, origin=nil, backuporigin=nil, privateaccess=nil, privateparameters=nil, hostheader=nil, vodeosubappid=nil, vodeodistributionrange=nil, vodeobucketid=nil, vodoriginscope=nil, vodbucketid=nil)
|
|
18566
18673
|
@OriginType = origintype
|
|
@@ -19008,7 +19115,7 @@ module TencentCloud
|
|
|
19008
19115
|
# <li>on:开启限制;</li>
|
|
19009
19116
|
# <li>off:关闭限制。</li>
|
|
19010
19117
|
# @type Switch: String
|
|
19011
|
-
# @param MaxSize:
|
|
19118
|
+
# @param MaxSize: 最大限制,该字段仅在 Switch 为 on 时生效,取值在 1MB 和 800MB 之间,单位字节。
|
|
19012
19119
|
# @type MaxSize: Integer
|
|
19013
19120
|
|
|
19014
19121
|
attr_accessor :Switch, :MaxSize
|
|
@@ -19028,7 +19135,7 @@ module TencentCloud
|
|
|
19028
19135
|
class PostMaxSizeParameters < TencentCloud::Common::AbstractModel
|
|
19029
19136
|
# @param Switch: 是否开启 POST 请求上传文件限制,单位为 Byte,平台默认为限制为 32 * 2<sup>20</sup> Byte,取值有:<li>on:开启限制;</li><li>off:关闭限制。</li>
|
|
19030
19137
|
# @type Switch: String
|
|
19031
|
-
# @param MaxSize: POST
|
|
19138
|
+
# @param MaxSize: POST 请求上传文件流式传输最大限制,该字段仅在 Switch 为 on 时生效,取值在 1MB 和 800MB 之间,单位字节。
|
|
19032
19139
|
# @type MaxSize: Integer
|
|
19033
19140
|
|
|
19034
19141
|
attr_accessor :Switch, :MaxSize
|
|
@@ -19584,7 +19691,7 @@ module TencentCloud
|
|
|
19584
19691
|
# @type TaskName: String
|
|
19585
19692
|
# @param DeliveryStatus: 实时日志投递任务的状态,取值有: <li>enabled: 已启用;</li> <li>disabled: 已停用;</li><li>deleted: 异常删除状态,请检查目的地腾讯云 CLS 日志集/日志主题是否已被删除。</li>
|
|
19586
19693
|
# @type DeliveryStatus: String
|
|
19587
|
-
# @param TaskType: 实时日志投递任务类型,取值有: <li>cls: 推送到腾讯云 CLS;</li> <li>custom_endpoint:推送到自定义 HTTP(S) 地址;</li> <li>s3:推送到 AWS S3
|
|
19694
|
+
# @param TaskType: 实时日志投递任务类型,取值有: <li>cls: 推送到腾讯云 CLS;</li> <li>custom_endpoint:推送到自定义 HTTP(S) 地址;</li> <li>s3:推送到 AWS S3 兼容存储桶地址;</li><li>log_analysis:推送到 EdgeOne 日志分析。</li>
|
|
19588
19695
|
# @type TaskType: String
|
|
19589
19696
|
# @param EntityList: 实时日志投递任务对应的实体(七层域名或者四层代理实例)列表。取值示例如下: <li>七层域名:domain.example.com;</li> <li>四层代理实例:sid-2s69eb5wcms7。</li>
|
|
19590
19697
|
# @type EntityList: Array
|
|
@@ -20249,8 +20356,8 @@ module TencentCloud
|
|
|
20249
20356
|
|
|
20250
20357
|
attr_accessor :Operator, :Target, :Values, :IgnoreCase, :Name, :IgnoreNameCase
|
|
20251
20358
|
extend Gem::Deprecate
|
|
20252
|
-
deprecate :IgnoreNameCase, :none, 2025,
|
|
20253
|
-
deprecate :IgnoreNameCase=, :none, 2025,
|
|
20359
|
+
deprecate :IgnoreNameCase, :none, 2025, 11
|
|
20360
|
+
deprecate :IgnoreNameCase=, :none, 2025, 11
|
|
20254
20361
|
|
|
20255
20362
|
def initialize(operator=nil, target=nil, values=nil, ignorecase=nil, name=nil, ignorenamecase=nil)
|
|
20256
20363
|
@Operator = operator
|
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.1163
|
|
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-06 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: tencentcloud-sdk-common
|
|
@@ -33,10 +33,10 @@ executables: []
|
|
|
33
33
|
extensions: []
|
|
34
34
|
extra_rdoc_files: []
|
|
35
35
|
files:
|
|
36
|
-
- lib/v20220901/models.rb
|
|
37
|
-
- lib/v20220901/client.rb
|
|
38
|
-
- lib/v20220106/models.rb
|
|
39
36
|
- lib/v20220106/client.rb
|
|
37
|
+
- lib/v20220106/models.rb
|
|
38
|
+
- lib/v20220901/client.rb
|
|
39
|
+
- lib/v20220901/models.rb
|
|
40
40
|
- lib/tencentcloud-sdk-teo.rb
|
|
41
41
|
- lib/VERSION
|
|
42
42
|
homepage: https://github.com/TencentCloud/tencentcloud-sdk-ruby
|