tencentcloud-sdk-teo 3.0.1187 → 3.0.1199
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/client.rb +49 -0
- data/lib/v20220901/models.rb +197 -27
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 39d9b155be29f27a091c5c82189699562a33aece
|
|
4
|
+
data.tar.gz: 91f6a21d9dcbb666dd5d381332302b7dc9743849
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 7e553c9a06ea9fcab0f625866d152ba8a9724f1660534443cc4be1392345aea16e562b35a0b23840eb778d421e40d820ad88ce4ae894393de550df9af489e280
|
|
7
|
+
data.tar.gz: 9b33b059576e33169a17c5c0f0b974da8ed3a372d8073dcb13112bd4c320d409c5b9deb291833ec41aa84412950d48e1b5523904e7e5382eb2a260ab2a6d07d8
|
data/lib/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.0.
|
|
1
|
+
3.0.1199
|
data/lib/v20220901/client.rb
CHANGED
|
@@ -2753,6 +2753,30 @@ module TencentCloud
|
|
|
2753
2753
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
|
2754
2754
|
end
|
|
2755
2755
|
|
|
2756
|
+
# 本接口用于查询回源限速限制,该功能白名单内测中。
|
|
2757
|
+
|
|
2758
|
+
# @param request: Request instance for DescribePrefetchOriginLimit.
|
|
2759
|
+
# @type request: :class:`Tencentcloud::teo::V20220901::DescribePrefetchOriginLimitRequest`
|
|
2760
|
+
# @rtype: :class:`Tencentcloud::teo::V20220901::DescribePrefetchOriginLimitResponse`
|
|
2761
|
+
def DescribePrefetchOriginLimit(request)
|
|
2762
|
+
body = send_request('DescribePrefetchOriginLimit', request.serialize)
|
|
2763
|
+
response = JSON.parse(body)
|
|
2764
|
+
if response['Response'].key?('Error') == false
|
|
2765
|
+
model = DescribePrefetchOriginLimitResponse.new
|
|
2766
|
+
model.deserialize(response['Response'])
|
|
2767
|
+
model
|
|
2768
|
+
else
|
|
2769
|
+
code = response['Response']['Error']['Code']
|
|
2770
|
+
message = response['Response']['Error']['Message']
|
|
2771
|
+
reqid = response['Response']['RequestId']
|
|
2772
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
|
2773
|
+
end
|
|
2774
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
|
2775
|
+
raise e
|
|
2776
|
+
rescue StandardError => e
|
|
2777
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
|
2778
|
+
end
|
|
2779
|
+
|
|
2756
2780
|
# DescribePrefetchTasks 用于查询预热任务提交历史记录及执行进度,通过 CreatePrefetchTasks 接口提交的任务可通过此接口进行查询。
|
|
2757
2781
|
|
|
2758
2782
|
# @param request: Request instance for DescribePrefetchTasks.
|
|
@@ -4391,6 +4415,31 @@ module TencentCloud
|
|
|
4391
4415
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
|
4392
4416
|
end
|
|
4393
4417
|
|
|
4418
|
+
# 本接口用于配置回源限速限制,该功能白名单内测中。
|
|
4419
|
+
# 可通过此接口创建、修改与删除预热回源限速限制,每个账号最多支持 100 条限制。
|
|
4420
|
+
|
|
4421
|
+
# @param request: Request instance for ModifyPrefetchOriginLimit.
|
|
4422
|
+
# @type request: :class:`Tencentcloud::teo::V20220901::ModifyPrefetchOriginLimitRequest`
|
|
4423
|
+
# @rtype: :class:`Tencentcloud::teo::V20220901::ModifyPrefetchOriginLimitResponse`
|
|
4424
|
+
def ModifyPrefetchOriginLimit(request)
|
|
4425
|
+
body = send_request('ModifyPrefetchOriginLimit', request.serialize)
|
|
4426
|
+
response = JSON.parse(body)
|
|
4427
|
+
if response['Response'].key?('Error') == false
|
|
4428
|
+
model = ModifyPrefetchOriginLimitResponse.new
|
|
4429
|
+
model.deserialize(response['Response'])
|
|
4430
|
+
model
|
|
4431
|
+
else
|
|
4432
|
+
code = response['Response']['Error']['Code']
|
|
4433
|
+
message = response['Response']['Error']['Message']
|
|
4434
|
+
reqid = response['Response']['RequestId']
|
|
4435
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
|
4436
|
+
end
|
|
4437
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
|
4438
|
+
raise e
|
|
4439
|
+
rescue StandardError => e
|
|
4440
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
|
4441
|
+
end
|
|
4442
|
+
|
|
4394
4443
|
# 通过本接口修改实时日志投递任务配置。本接口有如下限制:<li>不支持修改实时日志投递任务目的地类型(TaskType);</li><li>不支持修改数据投递类型(LogType)</li><li>不支持修改数据投递区域(Area)</li><li>当原实时日志投递任务的目的地为腾讯云 CLS 时,不支持修改目的地详细配置,如日志集、日志主题。</li>
|
|
4395
4444
|
|
|
4396
4445
|
# @param request: Request instance for ModifyRealtimeLogDeliveryTask.
|
data/lib/v20220901/models.rb
CHANGED
|
@@ -2323,8 +2323,8 @@ module TencentCloud
|
|
|
2323
2323
|
|
|
2324
2324
|
attr_accessor :Switch, :CacheTime, :IgnoreCacheControl
|
|
2325
2325
|
extend Gem::Deprecate
|
|
2326
|
-
deprecate :IgnoreCacheControl, :none,
|
|
2327
|
-
deprecate :IgnoreCacheControl=, :none,
|
|
2326
|
+
deprecate :IgnoreCacheControl, :none, 2026, 1
|
|
2327
|
+
deprecate :IgnoreCacheControl=, :none, 2026, 1
|
|
2328
2328
|
|
|
2329
2329
|
def initialize(switch=nil, cachetime=nil, ignorecachecontrol=nil)
|
|
2330
2330
|
@Switch = switch
|
|
@@ -4355,7 +4355,6 @@ module TencentCloud
|
|
|
4355
4355
|
# @param Ipv6: 是否开启 IPv6 访问,不填写时默认为 off。该配置仅在部分加速区域和安全防护配置下支持开启,详情请参考 [新建四层代理实例](https://cloud.tencent.com/document/product/1552/90025) 。取值为:
|
|
4356
4356
|
# <li>on:开启;</li>
|
|
4357
4357
|
# <li>off:关闭。</li>
|
|
4358
|
-
|
|
4359
4358
|
# @type Ipv6: String
|
|
4360
4359
|
# @param StaticIp: 是否开启固定 IP,不填写时默认为 off。该配置仅在部分加速区域和安全防护配置下支持开启,详情请参考 [新建四层代理实例](https://cloud.tencent.com/document/product/1552/90025) 。取值为:
|
|
4361
4360
|
# <li>on:开启;</li>
|
|
@@ -4366,9 +4365,13 @@ module TencentCloud
|
|
|
4366
4365
|
# <li>off:关闭。</li>
|
|
4367
4366
|
# @type AccelerateMainland: String
|
|
4368
4367
|
# @param DDosProtectionConfig: L3/L4 DDoS 防护配置,不填写时默认使用平台默认防护选项。详情参考 [独立 DDoS 防护](https://cloud.tencent.com/document/product/1552/95994)。
|
|
4368
|
+
# 本字段已废弃,请使用 DDosProtectionId 字段指定关联的DDoS防护配置。
|
|
4369
4369
|
# @type DDosProtectionConfig: :class:`Tencentcloud::Teo.v20220901.models.DDosProtectionConfig`
|
|
4370
4370
|
|
|
4371
4371
|
attr_accessor :ZoneId, :ProxyName, :Area, :Ipv6, :StaticIp, :AccelerateMainland, :DDosProtectionConfig
|
|
4372
|
+
extend Gem::Deprecate
|
|
4373
|
+
deprecate :DDosProtectionConfig, :none, 2026, 1
|
|
4374
|
+
deprecate :DDosProtectionConfig=, :none, 2026, 1
|
|
4372
4375
|
|
|
4373
4376
|
def initialize(zoneid=nil, proxyname=nil, area=nil, ipv6=nil, staticip=nil, acceleratemainland=nil, ddosprotectionconfig=nil)
|
|
4374
4377
|
@ZoneId = zoneid
|
|
@@ -4949,8 +4952,8 @@ module TencentCloud
|
|
|
4949
4952
|
|
|
4950
4953
|
attr_accessor :ZoneId, :Targets, :Mode, :EncodeUrl, :Headers, :PrefetchMediaSegments
|
|
4951
4954
|
extend Gem::Deprecate
|
|
4952
|
-
deprecate :EncodeUrl, :none,
|
|
4953
|
-
deprecate :EncodeUrl=, :none,
|
|
4955
|
+
deprecate :EncodeUrl, :none, 2026, 1
|
|
4956
|
+
deprecate :EncodeUrl=, :none, 2026, 1
|
|
4954
4957
|
|
|
4955
4958
|
def initialize(zoneid=nil, targets=nil, mode=nil, encodeurl=nil, headers=nil, prefetchmediasegments=nil)
|
|
4956
4959
|
@ZoneId = zoneid
|
|
@@ -5034,8 +5037,8 @@ module TencentCloud
|
|
|
5034
5037
|
|
|
5035
5038
|
attr_accessor :ZoneId, :Type, :Method, :Targets, :EncodeUrl, :CacheTag
|
|
5036
5039
|
extend Gem::Deprecate
|
|
5037
|
-
deprecate :EncodeUrl, :none,
|
|
5038
|
-
deprecate :EncodeUrl=, :none,
|
|
5040
|
+
deprecate :EncodeUrl, :none, 2026, 1
|
|
5041
|
+
deprecate :EncodeUrl=, :none, 2026, 1
|
|
5039
5042
|
|
|
5040
5043
|
def initialize(zoneid=nil, type=nil, method=nil, targets=nil, encodeurl=nil, cachetag=nil)
|
|
5041
5044
|
@ZoneId = zoneid
|
|
@@ -5645,10 +5648,10 @@ module TencentCloud
|
|
|
5645
5648
|
|
|
5646
5649
|
attr_accessor :Type, :ZoneName, :Area, :PlanId, :AliasZoneName, :Tags, :AllowDuplicates, :JumpStart
|
|
5647
5650
|
extend Gem::Deprecate
|
|
5648
|
-
deprecate :AllowDuplicates, :none,
|
|
5649
|
-
deprecate :AllowDuplicates=, :none,
|
|
5650
|
-
deprecate :JumpStart, :none,
|
|
5651
|
-
deprecate :JumpStart=, :none,
|
|
5651
|
+
deprecate :AllowDuplicates, :none, 2026, 1
|
|
5652
|
+
deprecate :AllowDuplicates=, :none, 2026, 1
|
|
5653
|
+
deprecate :JumpStart, :none, 2026, 1
|
|
5654
|
+
deprecate :JumpStart=, :none, 2026, 1
|
|
5652
5655
|
|
|
5653
5656
|
def initialize(type=nil, zonename=nil, area=nil, planid=nil, aliaszonename=nil, tags=nil, allowduplicates=nil, jumpstart=nil)
|
|
5654
5657
|
@Type = type
|
|
@@ -10051,6 +10054,74 @@ module TencentCloud
|
|
|
10051
10054
|
end
|
|
10052
10055
|
end
|
|
10053
10056
|
|
|
10057
|
+
# DescribePrefetchOriginLimit请求参数结构体
|
|
10058
|
+
class DescribePrefetchOriginLimitRequest < TencentCloud::Common::AbstractModel
|
|
10059
|
+
# @param ZoneId: 站点ID。
|
|
10060
|
+
# @type ZoneId: String
|
|
10061
|
+
# @param Offset: 分页查询偏移量,默认为 0。
|
|
10062
|
+
# @type Offset: Integer
|
|
10063
|
+
# @param Limit: 分页查询限制数目,默认值:20,上限:100。
|
|
10064
|
+
# @type Limit: Integer
|
|
10065
|
+
# @param Filters: 过滤条件,Filters.Values 的上限为 20。详细的过滤条件如下:
|
|
10066
|
+
# <li>domain-name:按照域名过滤。domain-name 形如:www.qq.com,不支持模糊查询;</li>
|
|
10067
|
+
# <li>area:按照限制加速区域过滤,不支持模糊查询。可选项:<br> Overseas:全球可用区(不含中国大陆);<br> MainlandChina:中国大陆可用区。</li>
|
|
10068
|
+
# @type Filters: Array
|
|
10069
|
+
|
|
10070
|
+
attr_accessor :ZoneId, :Offset, :Limit, :Filters
|
|
10071
|
+
|
|
10072
|
+
def initialize(zoneid=nil, offset=nil, limit=nil, filters=nil)
|
|
10073
|
+
@ZoneId = zoneid
|
|
10074
|
+
@Offset = offset
|
|
10075
|
+
@Limit = limit
|
|
10076
|
+
@Filters = filters
|
|
10077
|
+
end
|
|
10078
|
+
|
|
10079
|
+
def deserialize(params)
|
|
10080
|
+
@ZoneId = params['ZoneId']
|
|
10081
|
+
@Offset = params['Offset']
|
|
10082
|
+
@Limit = params['Limit']
|
|
10083
|
+
unless params['Filters'].nil?
|
|
10084
|
+
@Filters = []
|
|
10085
|
+
params['Filters'].each do |i|
|
|
10086
|
+
filter_tmp = Filter.new
|
|
10087
|
+
filter_tmp.deserialize(i)
|
|
10088
|
+
@Filters << filter_tmp
|
|
10089
|
+
end
|
|
10090
|
+
end
|
|
10091
|
+
end
|
|
10092
|
+
end
|
|
10093
|
+
|
|
10094
|
+
# DescribePrefetchOriginLimit返回参数结构体
|
|
10095
|
+
class DescribePrefetchOriginLimitResponse < TencentCloud::Common::AbstractModel
|
|
10096
|
+
# @param TotalCount: 回源限速限制总数。
|
|
10097
|
+
# @type TotalCount: Integer
|
|
10098
|
+
# @param Limits: 回源限速限制详情List。
|
|
10099
|
+
# @type Limits: Array
|
|
10100
|
+
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
10101
|
+
# @type RequestId: String
|
|
10102
|
+
|
|
10103
|
+
attr_accessor :TotalCount, :Limits, :RequestId
|
|
10104
|
+
|
|
10105
|
+
def initialize(totalcount=nil, limits=nil, requestid=nil)
|
|
10106
|
+
@TotalCount = totalcount
|
|
10107
|
+
@Limits = limits
|
|
10108
|
+
@RequestId = requestid
|
|
10109
|
+
end
|
|
10110
|
+
|
|
10111
|
+
def deserialize(params)
|
|
10112
|
+
@TotalCount = params['TotalCount']
|
|
10113
|
+
unless params['Limits'].nil?
|
|
10114
|
+
@Limits = []
|
|
10115
|
+
params['Limits'].each do |i|
|
|
10116
|
+
prefetchoriginlimit_tmp = PrefetchOriginLimit.new
|
|
10117
|
+
prefetchoriginlimit_tmp.deserialize(i)
|
|
10118
|
+
@Limits << prefetchoriginlimit_tmp
|
|
10119
|
+
end
|
|
10120
|
+
end
|
|
10121
|
+
@RequestId = params['RequestId']
|
|
10122
|
+
end
|
|
10123
|
+
end
|
|
10124
|
+
|
|
10054
10125
|
# DescribePrefetchTasks请求参数结构体
|
|
10055
10126
|
class DescribePrefetchTasksRequest < TencentCloud::Common::AbstractModel
|
|
10056
10127
|
# @param ZoneId: 站点ID。此参数将于2024年05月30日后由可选改为必填,详见公告:[【腾讯云 EdgeOne】云 API 变更通知](https://cloud.tencent.com/document/product/1552/104902)。
|
|
@@ -14627,6 +14698,7 @@ module TencentCloud
|
|
|
14627
14698
|
# <li>on:开启</li> <li>off:关闭</li>
|
|
14628
14699
|
# @type AccelerateMainland: String
|
|
14629
14700
|
# @param DDosProtectionConfig: 安全防护配置。
|
|
14701
|
+
# 本字段已废弃。
|
|
14630
14702
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
14631
14703
|
# @type DDosProtectionConfig: :class:`Tencentcloud::Teo.v20220901.models.DDosProtectionConfig`
|
|
14632
14704
|
# @param L4ProxyRuleCount: 四层代理实例下的转发规则数量。
|
|
@@ -14635,6 +14707,9 @@ module TencentCloud
|
|
|
14635
14707
|
# @type UpdateTime: String
|
|
14636
14708
|
|
|
14637
14709
|
attr_accessor :ZoneId, :ProxyId, :ProxyName, :Area, :Cname, :Ips, :Status, :Ipv6, :StaticIp, :AccelerateMainland, :DDosProtectionConfig, :L4ProxyRuleCount, :UpdateTime
|
|
14710
|
+
extend Gem::Deprecate
|
|
14711
|
+
deprecate :DDosProtectionConfig, :none, 2026, 1
|
|
14712
|
+
deprecate :DDosProtectionConfig=, :none, 2026, 1
|
|
14638
14713
|
|
|
14639
14714
|
def initialize(zoneid=nil, proxyid=nil, proxyname=nil, area=nil, cname=nil, ips=nil, status=nil, ipv6=nil, staticip=nil, acceleratemainland=nil, ddosprotectionconfig=nil, l4proxyrulecount=nil, updatetime=nil)
|
|
14640
14715
|
@ZoneId = zoneid
|
|
@@ -16128,8 +16203,8 @@ module TencentCloud
|
|
|
16128
16203
|
|
|
16129
16204
|
attr_accessor :ZoneId, :Hosts, :Mode, :ServerCertInfo, :ApplyType, :ClientCertInfo, :UpstreamCertInfo
|
|
16130
16205
|
extend Gem::Deprecate
|
|
16131
|
-
deprecate :ApplyType, :none,
|
|
16132
|
-
deprecate :ApplyType=, :none,
|
|
16206
|
+
deprecate :ApplyType, :none, 2026, 1
|
|
16207
|
+
deprecate :ApplyType=, :none, 2026, 1
|
|
16133
16208
|
|
|
16134
16209
|
def initialize(zoneid=nil, hosts=nil, mode=nil, servercertinfo=nil, applytype=nil, clientcertinfo=nil, upstreamcertinfo=nil)
|
|
16135
16210
|
@ZoneId = zoneid
|
|
@@ -16935,6 +17010,61 @@ module TencentCloud
|
|
|
16935
17010
|
end
|
|
16936
17011
|
end
|
|
16937
17012
|
|
|
17013
|
+
# ModifyPrefetchOriginLimit请求参数结构体
|
|
17014
|
+
class ModifyPrefetchOriginLimitRequest < TencentCloud::Common::AbstractModel
|
|
17015
|
+
# @param ZoneId: 站点 ID。
|
|
17016
|
+
# @type ZoneId: String
|
|
17017
|
+
# @param DomainName: 加速域名。
|
|
17018
|
+
# @type DomainName: String
|
|
17019
|
+
# @param Area: 回源限速限制的加速区域。
|
|
17020
|
+
# 预热时,该加速区域将会受到配置的Bandwidth值限制。取值有:
|
|
17021
|
+
# <li>Overseas:全球可用区(不含中国大陆);</li>
|
|
17022
|
+
# <li>MainlandChina:中国大陆可用区。</li>
|
|
17023
|
+
# @type Area: String
|
|
17024
|
+
# @param Bandwidth: 回源限速带宽。
|
|
17025
|
+
# 预热时回到源站的带宽上限值,取值范围 100 - 100,000,单位 Mbps。
|
|
17026
|
+
# @type Bandwidth: Integer
|
|
17027
|
+
# @param Enabled: 回源限速限制控制开关。
|
|
17028
|
+
# 用于启用/删除本条回源限速限制,取值有:
|
|
17029
|
+
# <li>on:启用限制;</li>
|
|
17030
|
+
# <li>off:删除限制。</li>
|
|
17031
|
+
# @type Enabled: String
|
|
17032
|
+
|
|
17033
|
+
attr_accessor :ZoneId, :DomainName, :Area, :Bandwidth, :Enabled
|
|
17034
|
+
|
|
17035
|
+
def initialize(zoneid=nil, domainname=nil, area=nil, bandwidth=nil, enabled=nil)
|
|
17036
|
+
@ZoneId = zoneid
|
|
17037
|
+
@DomainName = domainname
|
|
17038
|
+
@Area = area
|
|
17039
|
+
@Bandwidth = bandwidth
|
|
17040
|
+
@Enabled = enabled
|
|
17041
|
+
end
|
|
17042
|
+
|
|
17043
|
+
def deserialize(params)
|
|
17044
|
+
@ZoneId = params['ZoneId']
|
|
17045
|
+
@DomainName = params['DomainName']
|
|
17046
|
+
@Area = params['Area']
|
|
17047
|
+
@Bandwidth = params['Bandwidth']
|
|
17048
|
+
@Enabled = params['Enabled']
|
|
17049
|
+
end
|
|
17050
|
+
end
|
|
17051
|
+
|
|
17052
|
+
# ModifyPrefetchOriginLimit返回参数结构体
|
|
17053
|
+
class ModifyPrefetchOriginLimitResponse < TencentCloud::Common::AbstractModel
|
|
17054
|
+
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
17055
|
+
# @type RequestId: String
|
|
17056
|
+
|
|
17057
|
+
attr_accessor :RequestId
|
|
17058
|
+
|
|
17059
|
+
def initialize(requestid=nil)
|
|
17060
|
+
@RequestId = requestid
|
|
17061
|
+
end
|
|
17062
|
+
|
|
17063
|
+
def deserialize(params)
|
|
17064
|
+
@RequestId = params['RequestId']
|
|
17065
|
+
end
|
|
17066
|
+
end
|
|
17067
|
+
|
|
16938
17068
|
# ModifyRealtimeLogDeliveryTask请求参数结构体
|
|
16939
17069
|
class ModifyRealtimeLogDeliveryTaskRequest < TencentCloud::Common::AbstractModel
|
|
16940
17070
|
# @param ZoneId: 站点 ID。
|
|
@@ -18491,12 +18621,12 @@ module TencentCloud
|
|
|
18491
18621
|
|
|
18492
18622
|
attr_accessor :OriginType, :Origin, :BackupOrigin, :OriginGroupName, :BackOriginGroupName, :PrivateAccess, :PrivateParameters, :HostHeader, :VodeoSubAppId, :VodeoDistributionRange, :VodeoBucketId, :VodOriginScope, :VodBucketId
|
|
18493
18623
|
extend Gem::Deprecate
|
|
18494
|
-
deprecate :VodeoSubAppId, :none,
|
|
18495
|
-
deprecate :VodeoSubAppId=, :none,
|
|
18496
|
-
deprecate :VodeoDistributionRange, :none,
|
|
18497
|
-
deprecate :VodeoDistributionRange=, :none,
|
|
18498
|
-
deprecate :VodeoBucketId, :none,
|
|
18499
|
-
deprecate :VodeoBucketId=, :none,
|
|
18624
|
+
deprecate :VodeoSubAppId, :none, 2026, 1
|
|
18625
|
+
deprecate :VodeoSubAppId=, :none, 2026, 1
|
|
18626
|
+
deprecate :VodeoDistributionRange, :none, 2026, 1
|
|
18627
|
+
deprecate :VodeoDistributionRange=, :none, 2026, 1
|
|
18628
|
+
deprecate :VodeoBucketId, :none, 2026, 1
|
|
18629
|
+
deprecate :VodeoBucketId=, :none, 2026, 1
|
|
18500
18630
|
|
|
18501
18631
|
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)
|
|
18502
18632
|
@OriginType = origintype
|
|
@@ -18813,12 +18943,12 @@ module TencentCloud
|
|
|
18813
18943
|
|
|
18814
18944
|
attr_accessor :OriginType, :Origin, :BackupOrigin, :PrivateAccess, :PrivateParameters, :HostHeader, :VodeoSubAppId, :VodeoDistributionRange, :VodeoBucketId, :VodOriginScope, :VodBucketId
|
|
18815
18945
|
extend Gem::Deprecate
|
|
18816
|
-
deprecate :VodeoSubAppId, :none,
|
|
18817
|
-
deprecate :VodeoSubAppId=, :none,
|
|
18818
|
-
deprecate :VodeoDistributionRange, :none,
|
|
18819
|
-
deprecate :VodeoDistributionRange=, :none,
|
|
18820
|
-
deprecate :VodeoBucketId, :none,
|
|
18821
|
-
deprecate :VodeoBucketId=, :none,
|
|
18946
|
+
deprecate :VodeoSubAppId, :none, 2026, 1
|
|
18947
|
+
deprecate :VodeoSubAppId=, :none, 2026, 1
|
|
18948
|
+
deprecate :VodeoDistributionRange, :none, 2026, 1
|
|
18949
|
+
deprecate :VodeoDistributionRange=, :none, 2026, 1
|
|
18950
|
+
deprecate :VodeoBucketId, :none, 2026, 1
|
|
18951
|
+
deprecate :VodeoBucketId=, :none, 2026, 1
|
|
18822
18952
|
|
|
18823
18953
|
def initialize(origintype=nil, origin=nil, backuporigin=nil, privateaccess=nil, privateparameters=nil, hostheader=nil, vodeosubappid=nil, vodeodistributionrange=nil, vodeobucketid=nil, vodoriginscope=nil, vodbucketid=nil)
|
|
18824
18954
|
@OriginType = origintype
|
|
@@ -19302,6 +19432,46 @@ module TencentCloud
|
|
|
19302
19432
|
end
|
|
19303
19433
|
end
|
|
19304
19434
|
|
|
19435
|
+
# 回源限速限制详情。
|
|
19436
|
+
class PrefetchOriginLimit < TencentCloud::Common::AbstractModel
|
|
19437
|
+
# @param ZoneId: 站点 ID。
|
|
19438
|
+
# @type ZoneId: String
|
|
19439
|
+
# @param DomainName: 加速域名。
|
|
19440
|
+
# @type DomainName: String
|
|
19441
|
+
# @param Area: 回源限速限制的加速区域。
|
|
19442
|
+
# 预热时,该加速区域将会受到配置的Bandwidth值限制。取值有:
|
|
19443
|
+
# <li>Overseas:全球可用区(不含中国大陆);</li>
|
|
19444
|
+
# <li>MainlandChina:中国大陆可用区。</li>
|
|
19445
|
+
# @type Area: String
|
|
19446
|
+
# @param Bandwidth: 回源限速带宽。
|
|
19447
|
+
# 预热时回到源站的带宽上限值,取值范围 100 - 100,000,单位 Mbps。
|
|
19448
|
+
# @type Bandwidth: Integer
|
|
19449
|
+
# @param CreateTime: 回源限速限制创建的时间。
|
|
19450
|
+
# @type CreateTime: String
|
|
19451
|
+
# @param UpdateTime: 回源限速限制更新的时间。
|
|
19452
|
+
# @type UpdateTime: String
|
|
19453
|
+
|
|
19454
|
+
attr_accessor :ZoneId, :DomainName, :Area, :Bandwidth, :CreateTime, :UpdateTime
|
|
19455
|
+
|
|
19456
|
+
def initialize(zoneid=nil, domainname=nil, area=nil, bandwidth=nil, createtime=nil, updatetime=nil)
|
|
19457
|
+
@ZoneId = zoneid
|
|
19458
|
+
@DomainName = domainname
|
|
19459
|
+
@Area = area
|
|
19460
|
+
@Bandwidth = bandwidth
|
|
19461
|
+
@CreateTime = createtime
|
|
19462
|
+
@UpdateTime = updatetime
|
|
19463
|
+
end
|
|
19464
|
+
|
|
19465
|
+
def deserialize(params)
|
|
19466
|
+
@ZoneId = params['ZoneId']
|
|
19467
|
+
@DomainName = params['DomainName']
|
|
19468
|
+
@Area = params['Area']
|
|
19469
|
+
@Bandwidth = params['Bandwidth']
|
|
19470
|
+
@CreateTime = params['CreateTime']
|
|
19471
|
+
@UpdateTime = params['UpdateTime']
|
|
19472
|
+
end
|
|
19473
|
+
end
|
|
19474
|
+
|
|
19305
19475
|
# 预付费套餐计费参数
|
|
19306
19476
|
class PrepaidPlanParam < TencentCloud::Common::AbstractModel
|
|
19307
19477
|
# @param Period: 订阅预付费套餐的周期,单位:月,取值有:1,2,3,4,5,6,7,8,9,10,11,12,24,36。
|
|
@@ -20507,8 +20677,8 @@ module TencentCloud
|
|
|
20507
20677
|
|
|
20508
20678
|
attr_accessor :Operator, :Target, :Values, :IgnoreCase, :Name, :IgnoreNameCase
|
|
20509
20679
|
extend Gem::Deprecate
|
|
20510
|
-
deprecate :IgnoreNameCase, :none,
|
|
20511
|
-
deprecate :IgnoreNameCase=, :none,
|
|
20680
|
+
deprecate :IgnoreNameCase, :none, 2026, 1
|
|
20681
|
+
deprecate :IgnoreNameCase=, :none, 2026, 1
|
|
20512
20682
|
|
|
20513
20683
|
def initialize(operator=nil, target=nil, values=nil, ignorecase=nil, name=nil, ignorenamecase=nil)
|
|
20514
20684
|
@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.1199
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Tencent Cloud
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2026-01-08 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: tencentcloud-sdk-common
|
|
@@ -33,9 +33,9 @@ executables: []
|
|
|
33
33
|
extensions: []
|
|
34
34
|
extra_rdoc_files: []
|
|
35
35
|
files:
|
|
36
|
+
- lib/tencentcloud-sdk-teo.rb
|
|
36
37
|
- lib/v20220106/client.rb
|
|
37
38
|
- lib/v20220106/models.rb
|
|
38
|
-
- lib/tencentcloud-sdk-teo.rb
|
|
39
39
|
- lib/v20220901/client.rb
|
|
40
40
|
- lib/v20220901/models.rb
|
|
41
41
|
- lib/VERSION
|