tencentcloud-sdk-python 3.0.1426__py2.py3-none-any.whl → 3.0.1428__py2.py3-none-any.whl

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.

Potentially problematic release.


This version of tencentcloud-sdk-python might be problematic. Click here for more details.

Files changed (41) hide show
  1. tencentcloud/__init__.py +1 -1
  2. tencentcloud/apm/v20210622/models.py +60 -0
  3. tencentcloud/autoscaling/v20180419/models.py +108 -0
  4. tencentcloud/billing/v20180709/models.py +2 -2
  5. tencentcloud/ccc/v20200210/models.py +166 -0
  6. tencentcloud/cdb/v20170320/cdb_client.py +23 -0
  7. tencentcloud/cdb/v20170320/models.py +104 -10
  8. tencentcloud/cdwch/v20200915/errorcodes.py +3 -0
  9. tencentcloud/cdwch/v20200915/models.py +42 -64
  10. tencentcloud/clb/v20180317/models.py +2 -2
  11. tencentcloud/ctsdb/__init__.py +0 -0
  12. tencentcloud/ctsdb/v20230202/__init__.py +0 -0
  13. tencentcloud/ctsdb/v20230202/ctsdb_client.py +79 -0
  14. tencentcloud/ctsdb/v20230202/errorcodes.py +24 -0
  15. tencentcloud/ctsdb/v20230202/models.py +1256 -0
  16. tencentcloud/cynosdb/v20190107/cynosdb_client.py +23 -0
  17. tencentcloud/cynosdb/v20190107/errorcodes.py +12 -0
  18. tencentcloud/cynosdb/v20190107/models.py +186 -0
  19. tencentcloud/essbasic/v20210526/models.py +107 -4
  20. tencentcloud/gs/v20191118/models.py +15 -0
  21. tencentcloud/hunyuan/v20230901/models.py +120 -0
  22. tencentcloud/igtm/v20231024/models.py +2 -40
  23. tencentcloud/lke/v20231130/models.py +8 -2
  24. tencentcloud/monitor/v20180724/models.py +2 -2
  25. tencentcloud/mps/v20190612/models.py +19 -0
  26. tencentcloud/ocr/v20181119/models.py +17 -0
  27. tencentcloud/securitylake/v20240117/models.py +0 -2
  28. tencentcloud/ssl/v20191205/models.py +75 -0
  29. tencentcloud/tcaplusdb/v20190823/tcaplusdb_client.py +3 -1
  30. tencentcloud/teo/v20220901/errorcodes.py +6 -0
  31. tencentcloud/teo/v20220901/models.py +391 -55
  32. tencentcloud/teo/v20220901/teo_client.py +46 -0
  33. tencentcloud/tts/v20190823/models.py +4 -6
  34. tencentcloud/tts/v20190823/tts_client.py +1 -0
  35. tencentcloud/vpc/v20170312/errorcodes.py +3 -0
  36. tencentcloud/vpc/v20170312/models.py +8 -8
  37. {tencentcloud_sdk_python-3.0.1426.dist-info → tencentcloud_sdk_python-3.0.1428.dist-info}/METADATA +1 -1
  38. {tencentcloud_sdk_python-3.0.1426.dist-info → tencentcloud_sdk_python-3.0.1428.dist-info}/RECORD +41 -36
  39. {tencentcloud_sdk_python-3.0.1426.dist-info → tencentcloud_sdk_python-3.0.1428.dist-info}/LICENSE +0 -0
  40. {tencentcloud_sdk_python-3.0.1426.dist-info → tencentcloud_sdk_python-3.0.1428.dist-info}/WHEEL +0 -0
  41. {tencentcloud_sdk_python-3.0.1426.dist-info → tencentcloud_sdk_python-3.0.1428.dist-info}/top_level.txt +0 -0
@@ -3037,23 +3037,35 @@ class BandwidthAbuseDefense(AbstractModel):
3037
3037
 
3038
3038
 
3039
3039
  class BillingData(AbstractModel):
3040
- """计费数据项
3040
+ """计费数据项。
3041
3041
 
3042
3042
  """
3043
3043
 
3044
3044
  def __init__(self):
3045
3045
  r"""
3046
- :param _Time: 时间。
3046
+ :param _Time: 数据时间戳。
3047
3047
  :type Time: str
3048
3048
  :param _Value: 数值。
3049
3049
  :type Value: int
3050
+ :param _ZoneId: 数据点所属站点 ID。若使用内容标识符功能,则该项值为内容标识符。
3051
+ :type ZoneId: str
3052
+ :param _Host: 数据点所属域名。
3053
+ :type Host: str
3054
+ :param _ProxyId: 数据点所属四层代理实例 ID。
3055
+ :type ProxyId: str
3056
+ :param _RegionId: 数据点所属计费大区 ID。计费大区以实际服务用户客户端的 EdgeOne 节点所在区域为准。取值有:<li>CH:中国大陆境内</li><li>AF:非洲</li><li>AS1:亚太一区</li><li>AS2:亚太二区</li><li>AS3:亚太三区</li><li>EU:欧洲</li><li>MidEast:中东</li><li>NA:北美</li><li> SA:南美</li>
3057
+ :type RegionId: str
3050
3058
  """
3051
3059
  self._Time = None
3052
3060
  self._Value = None
3061
+ self._ZoneId = None
3062
+ self._Host = None
3063
+ self._ProxyId = None
3064
+ self._RegionId = None
3053
3065
 
3054
3066
  @property
3055
3067
  def Time(self):
3056
- """时间。
3068
+ """数据时间戳。
3057
3069
  :rtype: str
3058
3070
  """
3059
3071
  return self._Time
@@ -3073,10 +3085,58 @@ class BillingData(AbstractModel):
3073
3085
  def Value(self, Value):
3074
3086
  self._Value = Value
3075
3087
 
3088
+ @property
3089
+ def ZoneId(self):
3090
+ """数据点所属站点 ID。若使用内容标识符功能,则该项值为内容标识符。
3091
+ :rtype: str
3092
+ """
3093
+ return self._ZoneId
3094
+
3095
+ @ZoneId.setter
3096
+ def ZoneId(self, ZoneId):
3097
+ self._ZoneId = ZoneId
3098
+
3099
+ @property
3100
+ def Host(self):
3101
+ """数据点所属域名。
3102
+ :rtype: str
3103
+ """
3104
+ return self._Host
3105
+
3106
+ @Host.setter
3107
+ def Host(self, Host):
3108
+ self._Host = Host
3109
+
3110
+ @property
3111
+ def ProxyId(self):
3112
+ """数据点所属四层代理实例 ID。
3113
+ :rtype: str
3114
+ """
3115
+ return self._ProxyId
3116
+
3117
+ @ProxyId.setter
3118
+ def ProxyId(self, ProxyId):
3119
+ self._ProxyId = ProxyId
3120
+
3121
+ @property
3122
+ def RegionId(self):
3123
+ """数据点所属计费大区 ID。计费大区以实际服务用户客户端的 EdgeOne 节点所在区域为准。取值有:<li>CH:中国大陆境内</li><li>AF:非洲</li><li>AS1:亚太一区</li><li>AS2:亚太二区</li><li>AS3:亚太三区</li><li>EU:欧洲</li><li>MidEast:中东</li><li>NA:北美</li><li> SA:南美</li>
3124
+ :rtype: str
3125
+ """
3126
+ return self._RegionId
3127
+
3128
+ @RegionId.setter
3129
+ def RegionId(self, RegionId):
3130
+ self._RegionId = RegionId
3131
+
3076
3132
 
3077
3133
  def _deserialize(self, params):
3078
3134
  self._Time = params.get("Time")
3079
3135
  self._Value = params.get("Value")
3136
+ self._ZoneId = params.get("ZoneId")
3137
+ self._Host = params.get("Host")
3138
+ self._ProxyId = params.get("ProxyId")
3139
+ self._RegionId = params.get("RegionId")
3080
3140
  memeber_set = set(params.keys())
3081
3141
  for name, value in vars(self).items():
3082
3142
  property_name = name[1:]
@@ -12651,6 +12711,90 @@ class DDoSBlockData(AbstractModel):
12651
12711
 
12652
12712
 
12653
12713
 
12714
+ class DDoSProtection(AbstractModel):
12715
+ """独立 DDoS 防护配置。
12716
+
12717
+ """
12718
+
12719
+ def __init__(self):
12720
+ r"""
12721
+ :param _ProtectionOption: 指定独立 DDoS 的防护范围。取值为:
12722
+ <li> protect_all_domains:独立 DDoS 防护对站点内全部域名生效,新接入域名自动开启独立 DDoS 防护,入参为 protect_all_domains 时,入参 DomainDDoSProtections 不作处理;</li>
12723
+ <li> protect_specified_domains:仅对指定域名生效,具体范围可通过 DomainDDoSProtection 参数指定。</li>
12724
+ :type ProtectionOption: str
12725
+ :param _DomainDDoSProtections: 域名的独立 DDoS 防护配置。在入参场景中:
12726
+ <li> 当 ProtectionOption 保持为 protect_specified_domains 时:未填写的域名维持原有独立 DDoS 防护配置不变,显式指定的域名​按传入参数更新;</li>
12727
+ <li> 当 ProtectionOption 由 protect_all_domains 切换为 protect_specified_domains 时:若 DomainDDoSProtections 传空,停用站点下全部域名的独立 DDoS 防护;若 DomainDDoSProtections 不为空,参数中指定的域名停用或保持独立 DDoS 防护,其余未列出的域名统一停用独立 DDoS 防护。</li>
12728
+ :type DomainDDoSProtections: list of DomainDDoSProtection
12729
+ :param _SharedCNAMEDDoSProtections: 共享 CNAME 的独立 DDoS 防护配置。仅作为出参使用。
12730
+ :type SharedCNAMEDDoSProtections: list of DomainDDoSProtection
12731
+ """
12732
+ self._ProtectionOption = None
12733
+ self._DomainDDoSProtections = None
12734
+ self._SharedCNAMEDDoSProtections = None
12735
+
12736
+ @property
12737
+ def ProtectionOption(self):
12738
+ """指定独立 DDoS 的防护范围。取值为:
12739
+ <li> protect_all_domains:独立 DDoS 防护对站点内全部域名生效,新接入域名自动开启独立 DDoS 防护,入参为 protect_all_domains 时,入参 DomainDDoSProtections 不作处理;</li>
12740
+ <li> protect_specified_domains:仅对指定域名生效,具体范围可通过 DomainDDoSProtection 参数指定。</li>
12741
+ :rtype: str
12742
+ """
12743
+ return self._ProtectionOption
12744
+
12745
+ @ProtectionOption.setter
12746
+ def ProtectionOption(self, ProtectionOption):
12747
+ self._ProtectionOption = ProtectionOption
12748
+
12749
+ @property
12750
+ def DomainDDoSProtections(self):
12751
+ """域名的独立 DDoS 防护配置。在入参场景中:
12752
+ <li> 当 ProtectionOption 保持为 protect_specified_domains 时:未填写的域名维持原有独立 DDoS 防护配置不变,显式指定的域名​按传入参数更新;</li>
12753
+ <li> 当 ProtectionOption 由 protect_all_domains 切换为 protect_specified_domains 时:若 DomainDDoSProtections 传空,停用站点下全部域名的独立 DDoS 防护;若 DomainDDoSProtections 不为空,参数中指定的域名停用或保持独立 DDoS 防护,其余未列出的域名统一停用独立 DDoS 防护。</li>
12754
+ :rtype: list of DomainDDoSProtection
12755
+ """
12756
+ return self._DomainDDoSProtections
12757
+
12758
+ @DomainDDoSProtections.setter
12759
+ def DomainDDoSProtections(self, DomainDDoSProtections):
12760
+ self._DomainDDoSProtections = DomainDDoSProtections
12761
+
12762
+ @property
12763
+ def SharedCNAMEDDoSProtections(self):
12764
+ """共享 CNAME 的独立 DDoS 防护配置。仅作为出参使用。
12765
+ :rtype: list of DomainDDoSProtection
12766
+ """
12767
+ return self._SharedCNAMEDDoSProtections
12768
+
12769
+ @SharedCNAMEDDoSProtections.setter
12770
+ def SharedCNAMEDDoSProtections(self, SharedCNAMEDDoSProtections):
12771
+ self._SharedCNAMEDDoSProtections = SharedCNAMEDDoSProtections
12772
+
12773
+
12774
+ def _deserialize(self, params):
12775
+ self._ProtectionOption = params.get("ProtectionOption")
12776
+ if params.get("DomainDDoSProtections") is not None:
12777
+ self._DomainDDoSProtections = []
12778
+ for item in params.get("DomainDDoSProtections"):
12779
+ obj = DomainDDoSProtection()
12780
+ obj._deserialize(item)
12781
+ self._DomainDDoSProtections.append(obj)
12782
+ if params.get("SharedCNAMEDDoSProtections") is not None:
12783
+ self._SharedCNAMEDDoSProtections = []
12784
+ for item in params.get("SharedCNAMEDDoSProtections"):
12785
+ obj = DomainDDoSProtection()
12786
+ obj._deserialize(item)
12787
+ self._SharedCNAMEDDoSProtections.append(obj)
12788
+ memeber_set = set(params.keys())
12789
+ for name, value in vars(self).items():
12790
+ property_name = name[1:]
12791
+ if property_name in memeber_set:
12792
+ memeber_set.remove(property_name)
12793
+ if len(memeber_set) > 0:
12794
+ warnings.warn("%s fileds are useless." % ",".join(memeber_set))
12795
+
12796
+
12797
+
12654
12798
  class DDosProtectionConfig(AbstractModel):
12655
12799
  """适用于四层代理或 Web 站点服务的独立 DDoS 防护规格配置。
12656
12800
 
@@ -15714,34 +15858,13 @@ class DescribeBillingDataRequest(AbstractModel):
15714
15858
  r"""
15715
15859
  :param _StartTime: 起始时间。
15716
15860
  :type StartTime: str
15717
- :param _EndTime: 结束时间。
15861
+ :param _EndTime: 结束时间。查询时间范围(`EndTime` - `StartTime`)需小于等于 31 天。
15718
15862
  :type EndTime: str
15719
- :param _ZoneIds: 站点 ID 集合,此参数必填。
15863
+ :param _ZoneIds: 站点 ID 集合,此参数必填。最多传入 100 个站点 ID。若需查询腾讯云主账号下所有站点数据,请用 `*` 代替,查询账号级别数据需具备本接口全部站点资源权限。
15720
15864
  :type ZoneIds: list of str
15721
- :param _MetricName: 指标列表,取值有:
15722
- <li>acc_flux: 内容加速流量,单位为 Byte;</li>
15723
- <li>smt_flux: 智能加速流量,单位为 Byte;</li>
15724
- <li>l4_flux: 四层加速流量,单位为 Byte;</li>
15725
- <li>sec_flux: 独立防护流量,单位为 Byte;</li>
15726
- <li>zxctg_flux: 中国大陆网络优化流量,单位为 Byte;</li>
15727
- <li>acc_bandwidth: 内容加速带宽,单位为 bps;</li>
15728
- <li>smt_bandwidth: 智能加速带宽,单位为 bps;</li>
15729
- <li>l4_bandwidth: 四层加速带宽,单位为 bps;</li>
15730
- <li>sec_bandwidth: 独立防护带宽,单位为 bps;</li>
15731
- <li>zxctg_bandwidth: 中国大陆网络优化带宽,单位为 bps;</li>
15732
- <li>sec_request_clean: HTTP/HTTPS 请求,单位为次;</li>
15733
- <li>smt_request_clean: 智能加速请求,单位为次;</li>
15734
- <li>quic_request: QUIC 请求,单位为次;</li>
15735
- <li>bot_request_clean: Bot 请求,单位为次;</li>
15736
- <li>cls_count: 实时日志推送条数,单位为条;</li>
15737
- <li>ddos_bandwidth: 弹性 DDoS 防护带宽,单位为 bps;</li>
15738
- <li>total_transcode:所有规格音频,视频即时转码,转封装时长,单位为秒;</li>
15739
- <li>remux:转封装时长,单位为秒;</li>
15740
- <li>transcode_audio:音频转码时长,单位为秒;</li>
15741
- <li>transcode_H264_SD:H.264 编码方式的标清视频(短边 <= 480 px)时长,单位为秒;</li>
15742
- <li>transcode_H264_HD:H.264 编码方式的高清视频(短边 <= 720 px)时长,单位为秒;</li>
15743
- <li>transcode_H264_FHD:H.264 编码方式的全高清视频(短边 <= 1080 px)时长,单位为秒;</li>
15744
- <li>transcode_H264_2K:H.264 编码方式的 2K 视频(短边 <= 1440 px)时长,单位为秒。</li>
15865
+ :param _MetricName: 指标列表,取值如下:
15866
+ <b>四/七层加速流量:</b><li>acc_flux: 内容加速流量,单位为 Byte;</li><li>smt_flux: 智能加速流量,单位为 Byte;</li><li>l4_flux: 四层加速流量,单位为 Byte;</li><li>sec_flux: 独立防护流量,单位为 Byte;</li><li>zxctg_flux: 中国大陆网络优化流量,单位为 Byte。</li><br><b>四/七层加速带宽:</b><li>acc_bandwidth: 内容加速带宽,单位为 bps;</li><li>smt_bandwidth: 智能加速带宽,单位为 bps;</li><li>l4_bandwidth: 四层加速带宽,单位为 bps;</li><li>sec_bandwidth: 独立防护带宽,单位为 bps;</li><li>zxctg_bandwidth: 中国大陆网络优化带宽,单位为 bps。</li><br><b>HTTP/HTTPS 安全请求数:</b><li>sec_request_clean: HTTP/HTTPS 请求,单位为次。</li><b><br>增值服务用量:</b><li>smt_request_clean: 智能加速请求,单位为次;</li><li>quic_request: QUIC 请求,单位为次;</li><li>bot_request_clean: Bot 请求,单位为次;</li><li>cls_count: 实时日志推送条数,单位为条;</li><li>ddos_bandwidth: 弹性 DDoS 防护带宽,单位为 bps。</li><br><b>边缘计算用量:</b><li>edgefunction_request:边缘函数请求数,单位为次;</li><li>edgefunction_cpu_time:边缘函数CPU处理时间,单位为毫秒。</li>
15867
+ <b>媒体处理用量:</b><li>total_transcode:所有规格音频,视频即时转码,转封装时长,单位为秒;</li><li>remux:转封装时长,单位为秒;</li><li>transcode_audio:音频转码时长,单位为秒;</li><li>transcode_H264_SD:H.264 编码方式的标清视频(短边 <= 480 px)时长,单位为秒;</li><li>transcode_H264_HD:H.264 编码方式的高清视频(短边 <= 720 px)时长,单位为秒;</li><li>transcode_H264_FHD:H.264 编码方式的全高清视频(短边 <= 1080 px)时长,单位为秒;</li><li>transcode_H264_2K:H.264 编码方式的 2K 视频(短边 <= 1440 px)时长,单位为秒。</li>
15745
15868
  :type MetricName: str
15746
15869
  :param _Interval: 查询时间粒度,取值有:
15747
15870
  <li>5min:5 分钟粒度;</li>
@@ -15752,7 +15875,10 @@ class DescribeBillingDataRequest(AbstractModel):
15752
15875
  <li>host:按照域名进行过滤。示例值:test.example.com。<br></li>
15753
15876
  <li>proxy-id:按照四层代理实例 ID 进行过滤。示例值:sid-2rugn89bkla9。<br></li>
15754
15877
  <li>region-id:按照计费大区进行过滤。可选项如下:<br>  CH:中国大陆境内<br>  AF:非洲<br>  AS1:亚太一区<br>  AS2:亚太二区<br>  AS3:亚太三区<br>  EU:欧洲<br>  MidEast:中东<br>  NA:北美<br>  SA:南美</li>
15878
+ 说明:相同 `Type` 的 `BillingDataFilter` 之间为“或”关系,不同 `Type` 的 `BillingDataFilter` 之间为“且”关系。
15755
15879
  :type Filters: list of BillingDataFilter
15880
+ :param _GroupBy: 分组聚合维度。最多允许同时按照两种维度进行分组。取值如下: <li>zone-id:按照站点 ID 进行分组,若使用了内容标识符功能,则优先按照内容标识符分组;<br></li><li>host:按照域名进行分组;<br></li> <li>proxy-id:按照四层代理实例 ID 进行分组;<br></li> <li>region-id:按照计费大区进行分组。</li>
15881
+ :type GroupBy: list of str
15756
15882
  """
15757
15883
  self._StartTime = None
15758
15884
  self._EndTime = None
@@ -15760,6 +15886,7 @@ class DescribeBillingDataRequest(AbstractModel):
15760
15886
  self._MetricName = None
15761
15887
  self._Interval = None
15762
15888
  self._Filters = None
15889
+ self._GroupBy = None
15763
15890
 
15764
15891
  @property
15765
15892
  def StartTime(self):
@@ -15774,7 +15901,7 @@ class DescribeBillingDataRequest(AbstractModel):
15774
15901
 
15775
15902
  @property
15776
15903
  def EndTime(self):
15777
- """结束时间。
15904
+ """结束时间。查询时间范围(`EndTime` - `StartTime`)需小于等于 31 天。
15778
15905
  :rtype: str
15779
15906
  """
15780
15907
  return self._EndTime
@@ -15785,7 +15912,7 @@ class DescribeBillingDataRequest(AbstractModel):
15785
15912
 
15786
15913
  @property
15787
15914
  def ZoneIds(self):
15788
- """站点 ID 集合,此参数必填。
15915
+ """站点 ID 集合,此参数必填。最多传入 100 个站点 ID。若需查询腾讯云主账号下所有站点数据,请用 `*` 代替,查询账号级别数据需具备本接口全部站点资源权限。
15789
15916
  :rtype: list of str
15790
15917
  """
15791
15918
  return self._ZoneIds
@@ -15796,30 +15923,9 @@ class DescribeBillingDataRequest(AbstractModel):
15796
15923
 
15797
15924
  @property
15798
15925
  def MetricName(self):
15799
- """指标列表,取值有:
15800
- <li>acc_flux: 内容加速流量,单位为 Byte;</li>
15801
- <li>smt_flux: 智能加速流量,单位为 Byte;</li>
15802
- <li>l4_flux: 四层加速流量,单位为 Byte;</li>
15803
- <li>sec_flux: 独立防护流量,单位为 Byte;</li>
15804
- <li>zxctg_flux: 中国大陆网络优化流量,单位为 Byte;</li>
15805
- <li>acc_bandwidth: 内容加速带宽,单位为 bps;</li>
15806
- <li>smt_bandwidth: 智能加速带宽,单位为 bps;</li>
15807
- <li>l4_bandwidth: 四层加速带宽,单位为 bps;</li>
15808
- <li>sec_bandwidth: 独立防护带宽,单位为 bps;</li>
15809
- <li>zxctg_bandwidth: 中国大陆网络优化带宽,单位为 bps;</li>
15810
- <li>sec_request_clean: HTTP/HTTPS 请求,单位为次;</li>
15811
- <li>smt_request_clean: 智能加速请求,单位为次;</li>
15812
- <li>quic_request: QUIC 请求,单位为次;</li>
15813
- <li>bot_request_clean: Bot 请求,单位为次;</li>
15814
- <li>cls_count: 实时日志推送条数,单位为条;</li>
15815
- <li>ddos_bandwidth: 弹性 DDoS 防护带宽,单位为 bps;</li>
15816
- <li>total_transcode:所有规格音频,视频即时转码,转封装时长,单位为秒;</li>
15817
- <li>remux:转封装时长,单位为秒;</li>
15818
- <li>transcode_audio:音频转码时长,单位为秒;</li>
15819
- <li>transcode_H264_SD:H.264 编码方式的标清视频(短边 <= 480 px)时长,单位为秒;</li>
15820
- <li>transcode_H264_HD:H.264 编码方式的高清视频(短边 <= 720 px)时长,单位为秒;</li>
15821
- <li>transcode_H264_FHD:H.264 编码方式的全高清视频(短边 <= 1080 px)时长,单位为秒;</li>
15822
- <li>transcode_H264_2K:H.264 编码方式的 2K 视频(短边 <= 1440 px)时长,单位为秒。</li>
15926
+ """指标列表,取值如下:
15927
+ <b>四/七层加速流量:</b><li>acc_flux: 内容加速流量,单位为 Byte;</li><li>smt_flux: 智能加速流量,单位为 Byte;</li><li>l4_flux: 四层加速流量,单位为 Byte;</li><li>sec_flux: 独立防护流量,单位为 Byte;</li><li>zxctg_flux: 中国大陆网络优化流量,单位为 Byte。</li><br><b>四/七层加速带宽:</b><li>acc_bandwidth: 内容加速带宽,单位为 bps;</li><li>smt_bandwidth: 智能加速带宽,单位为 bps;</li><li>l4_bandwidth: 四层加速带宽,单位为 bps;</li><li>sec_bandwidth: 独立防护带宽,单位为 bps;</li><li>zxctg_bandwidth: 中国大陆网络优化带宽,单位为 bps。</li><br><b>HTTP/HTTPS 安全请求数:</b><li>sec_request_clean: HTTP/HTTPS 请求,单位为次。</li><b><br>增值服务用量:</b><li>smt_request_clean: 智能加速请求,单位为次;</li><li>quic_request: QUIC 请求,单位为次;</li><li>bot_request_clean: Bot 请求,单位为次;</li><li>cls_count: 实时日志推送条数,单位为条;</li><li>ddos_bandwidth: 弹性 DDoS 防护带宽,单位为 bps。</li><br><b>边缘计算用量:</b><li>edgefunction_request:边缘函数请求数,单位为次;</li><li>edgefunction_cpu_time:边缘函数CPU处理时间,单位为毫秒。</li>
15928
+ <b>媒体处理用量:</b><li>total_transcode:所有规格音频,视频即时转码,转封装时长,单位为秒;</li><li>remux:转封装时长,单位为秒;</li><li>transcode_audio:音频转码时长,单位为秒;</li><li>transcode_H264_SD:H.264 编码方式的标清视频(短边 <= 480 px)时长,单位为秒;</li><li>transcode_H264_HD:H.264 编码方式的高清视频(短边 <= 720 px)时长,单位为秒;</li><li>transcode_H264_FHD:H.264 编码方式的全高清视频(短边 <= 1080 px)时长,单位为秒;</li><li>transcode_H264_2K:H.264 编码方式的 2K 视频(短边 <= 1440 px)时长,单位为秒。</li>
15823
15929
  :rtype: str
15824
15930
  """
15825
15931
  return self._MetricName
@@ -15848,6 +15954,7 @@ class DescribeBillingDataRequest(AbstractModel):
15848
15954
  <li>host:按照域名进行过滤。示例值:test.example.com。<br></li>
15849
15955
  <li>proxy-id:按照四层代理实例 ID 进行过滤。示例值:sid-2rugn89bkla9。<br></li>
15850
15956
  <li>region-id:按照计费大区进行过滤。可选项如下:<br>  CH:中国大陆境内<br>  AF:非洲<br>  AS1:亚太一区<br>  AS2:亚太二区<br>  AS3:亚太三区<br>  EU:欧洲<br>  MidEast:中东<br>  NA:北美<br>  SA:南美</li>
15957
+ 说明:相同 `Type` 的 `BillingDataFilter` 之间为“或”关系,不同 `Type` 的 `BillingDataFilter` 之间为“且”关系。
15851
15958
  :rtype: list of BillingDataFilter
15852
15959
  """
15853
15960
  return self._Filters
@@ -15856,6 +15963,17 @@ class DescribeBillingDataRequest(AbstractModel):
15856
15963
  def Filters(self, Filters):
15857
15964
  self._Filters = Filters
15858
15965
 
15966
+ @property
15967
+ def GroupBy(self):
15968
+ """分组聚合维度。最多允许同时按照两种维度进行分组。取值如下: <li>zone-id:按照站点 ID 进行分组,若使用了内容标识符功能,则优先按照内容标识符分组;<br></li><li>host:按照域名进行分组;<br></li> <li>proxy-id:按照四层代理实例 ID 进行分组;<br></li> <li>region-id:按照计费大区进行分组。</li>
15969
+ :rtype: list of str
15970
+ """
15971
+ return self._GroupBy
15972
+
15973
+ @GroupBy.setter
15974
+ def GroupBy(self, GroupBy):
15975
+ self._GroupBy = GroupBy
15976
+
15859
15977
 
15860
15978
  def _deserialize(self, params):
15861
15979
  self._StartTime = params.get("StartTime")
@@ -15869,6 +15987,7 @@ class DescribeBillingDataRequest(AbstractModel):
15869
15987
  obj = BillingDataFilter()
15870
15988
  obj._deserialize(item)
15871
15989
  self._Filters.append(obj)
15990
+ self._GroupBy = params.get("GroupBy")
15872
15991
  memeber_set = set(params.keys())
15873
15992
  for name, value in vars(self).items():
15874
15993
  property_name = name[1:]
@@ -17332,6 +17451,87 @@ class DescribeDDoSAttackTopDataResponse(AbstractModel):
17332
17451
  self._RequestId = params.get("RequestId")
17333
17452
 
17334
17453
 
17454
+ class DescribeDDoSProtectionRequest(AbstractModel):
17455
+ """DescribeDDoSProtection请求参数结构体
17456
+
17457
+ """
17458
+
17459
+ def __init__(self):
17460
+ r"""
17461
+ :param _ZoneId: 站点 ID。
17462
+ :type ZoneId: str
17463
+ """
17464
+ self._ZoneId = None
17465
+
17466
+ @property
17467
+ def ZoneId(self):
17468
+ """站点 ID。
17469
+ :rtype: str
17470
+ """
17471
+ return self._ZoneId
17472
+
17473
+ @ZoneId.setter
17474
+ def ZoneId(self, ZoneId):
17475
+ self._ZoneId = ZoneId
17476
+
17477
+
17478
+ def _deserialize(self, params):
17479
+ self._ZoneId = params.get("ZoneId")
17480
+ memeber_set = set(params.keys())
17481
+ for name, value in vars(self).items():
17482
+ property_name = name[1:]
17483
+ if property_name in memeber_set:
17484
+ memeber_set.remove(property_name)
17485
+ if len(memeber_set) > 0:
17486
+ warnings.warn("%s fileds are useless." % ",".join(memeber_set))
17487
+
17488
+
17489
+
17490
+ class DescribeDDoSProtectionResponse(AbstractModel):
17491
+ """DescribeDDoSProtection返回参数结构体
17492
+
17493
+ """
17494
+
17495
+ def __init__(self):
17496
+ r"""
17497
+ :param _DDoSProtection: 独立 DDoS 防护配置。用于控制独立 DDoS 防护的生效范围。
17498
+ :type DDoSProtection: :class:`tencentcloud.teo.v20220901.models.DDoSProtection`
17499
+ :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
17500
+ :type RequestId: str
17501
+ """
17502
+ self._DDoSProtection = None
17503
+ self._RequestId = None
17504
+
17505
+ @property
17506
+ def DDoSProtection(self):
17507
+ """独立 DDoS 防护配置。用于控制独立 DDoS 防护的生效范围。
17508
+ :rtype: :class:`tencentcloud.teo.v20220901.models.DDoSProtection`
17509
+ """
17510
+ return self._DDoSProtection
17511
+
17512
+ @DDoSProtection.setter
17513
+ def DDoSProtection(self, DDoSProtection):
17514
+ self._DDoSProtection = DDoSProtection
17515
+
17516
+ @property
17517
+ def RequestId(self):
17518
+ """唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
17519
+ :rtype: str
17520
+ """
17521
+ return self._RequestId
17522
+
17523
+ @RequestId.setter
17524
+ def RequestId(self, RequestId):
17525
+ self._RequestId = RequestId
17526
+
17527
+
17528
+ def _deserialize(self, params):
17529
+ if params.get("DDoSProtection") is not None:
17530
+ self._DDoSProtection = DDoSProtection()
17531
+ self._DDoSProtection._deserialize(params.get("DDoSProtection"))
17532
+ self._RequestId = params.get("RequestId")
17533
+
17534
+
17335
17535
  class DescribeDefaultCertificatesRequest(AbstractModel):
17336
17536
  """DescribeDefaultCertificates请求参数结构体
17337
17537
 
@@ -25120,6 +25320,61 @@ class DnsVerification(AbstractModel):
25120
25320
 
25121
25321
 
25122
25322
 
25323
+ class DomainDDoSProtection(AbstractModel):
25324
+ """域名的独立 DDoS 防护信息。
25325
+
25326
+ """
25327
+
25328
+ def __init__(self):
25329
+ r"""
25330
+ :param _Domain: 域名。
25331
+ :type Domain: str
25332
+ :param _Switch: 域名的独立 DDoS 开关,取值为:
25333
+ <li> on:已开启;</li>
25334
+ <li> off:已关闭。</li>
25335
+ :type Switch: str
25336
+ """
25337
+ self._Domain = None
25338
+ self._Switch = None
25339
+
25340
+ @property
25341
+ def Domain(self):
25342
+ """域名。
25343
+ :rtype: str
25344
+ """
25345
+ return self._Domain
25346
+
25347
+ @Domain.setter
25348
+ def Domain(self, Domain):
25349
+ self._Domain = Domain
25350
+
25351
+ @property
25352
+ def Switch(self):
25353
+ """域名的独立 DDoS 开关,取值为:
25354
+ <li> on:已开启;</li>
25355
+ <li> off:已关闭。</li>
25356
+ :rtype: str
25357
+ """
25358
+ return self._Switch
25359
+
25360
+ @Switch.setter
25361
+ def Switch(self, Switch):
25362
+ self._Switch = Switch
25363
+
25364
+
25365
+ def _deserialize(self, params):
25366
+ self._Domain = params.get("Domain")
25367
+ self._Switch = params.get("Switch")
25368
+ memeber_set = set(params.keys())
25369
+ for name, value in vars(self).items():
25370
+ property_name = name[1:]
25371
+ if property_name in memeber_set:
25372
+ memeber_set.remove(property_name)
25373
+ if len(memeber_set) > 0:
25374
+ warnings.warn("%s fileds are useless." % ",".join(memeber_set))
25375
+
25376
+
25377
+
25123
25378
  class DownloadL4LogsRequest(AbstractModel):
25124
25379
  """DownloadL4Logs请求参数结构体
25125
25380
 
@@ -33584,6 +33839,87 @@ class ModifyCustomErrorPageResponse(AbstractModel):
33584
33839
  self._RequestId = params.get("RequestId")
33585
33840
 
33586
33841
 
33842
+ class ModifyDDoSProtectionRequest(AbstractModel):
33843
+ """ModifyDDoSProtection请求参数结构体
33844
+
33845
+ """
33846
+
33847
+ def __init__(self):
33848
+ r"""
33849
+ :param _ZoneId: 站点 ID。
33850
+ :type ZoneId: str
33851
+ :param _DDoSProtection: 独立 DDoS 防护配置。
33852
+ :type DDoSProtection: :class:`tencentcloud.teo.v20220901.models.DDoSProtection`
33853
+ """
33854
+ self._ZoneId = None
33855
+ self._DDoSProtection = None
33856
+
33857
+ @property
33858
+ def ZoneId(self):
33859
+ """站点 ID。
33860
+ :rtype: str
33861
+ """
33862
+ return self._ZoneId
33863
+
33864
+ @ZoneId.setter
33865
+ def ZoneId(self, ZoneId):
33866
+ self._ZoneId = ZoneId
33867
+
33868
+ @property
33869
+ def DDoSProtection(self):
33870
+ """独立 DDoS 防护配置。
33871
+ :rtype: :class:`tencentcloud.teo.v20220901.models.DDoSProtection`
33872
+ """
33873
+ return self._DDoSProtection
33874
+
33875
+ @DDoSProtection.setter
33876
+ def DDoSProtection(self, DDoSProtection):
33877
+ self._DDoSProtection = DDoSProtection
33878
+
33879
+
33880
+ def _deserialize(self, params):
33881
+ self._ZoneId = params.get("ZoneId")
33882
+ if params.get("DDoSProtection") is not None:
33883
+ self._DDoSProtection = DDoSProtection()
33884
+ self._DDoSProtection._deserialize(params.get("DDoSProtection"))
33885
+ memeber_set = set(params.keys())
33886
+ for name, value in vars(self).items():
33887
+ property_name = name[1:]
33888
+ if property_name in memeber_set:
33889
+ memeber_set.remove(property_name)
33890
+ if len(memeber_set) > 0:
33891
+ warnings.warn("%s fileds are useless." % ",".join(memeber_set))
33892
+
33893
+
33894
+
33895
+ class ModifyDDoSProtectionResponse(AbstractModel):
33896
+ """ModifyDDoSProtection返回参数结构体
33897
+
33898
+ """
33899
+
33900
+ def __init__(self):
33901
+ r"""
33902
+ :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
33903
+ :type RequestId: str
33904
+ """
33905
+ self._RequestId = None
33906
+
33907
+ @property
33908
+ def RequestId(self):
33909
+ """唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
33910
+ :rtype: str
33911
+ """
33912
+ return self._RequestId
33913
+
33914
+ @RequestId.setter
33915
+ def RequestId(self, RequestId):
33916
+ self._RequestId = RequestId
33917
+
33918
+
33919
+ def _deserialize(self, params):
33920
+ self._RequestId = params.get("RequestId")
33921
+
33922
+
33587
33923
  class ModifyDnsRecordsRequest(AbstractModel):
33588
33924
  """ModifyDnsRecords请求参数结构体
33589
33925
 
@@ -1651,6 +1651,29 @@ class TeoClient(AbstractClient):
1651
1651
  raise TencentCloudSDKException(type(e).__name__, str(e))
1652
1652
 
1653
1653
 
1654
+ def DescribeDDoSProtection(self, request):
1655
+ """获取站点的独立 DDoS 防护信息。
1656
+
1657
+ :param request: Request instance for DescribeDDoSProtection.
1658
+ :type request: :class:`tencentcloud.teo.v20220901.models.DescribeDDoSProtectionRequest`
1659
+ :rtype: :class:`tencentcloud.teo.v20220901.models.DescribeDDoSProtectionResponse`
1660
+
1661
+ """
1662
+ try:
1663
+ params = request._serialize()
1664
+ headers = request.headers
1665
+ body = self.call("DescribeDDoSProtection", params, headers=headers)
1666
+ response = json.loads(body)
1667
+ model = models.DescribeDDoSProtectionResponse()
1668
+ model._deserialize(response["Response"])
1669
+ return model
1670
+ except Exception as e:
1671
+ if isinstance(e, TencentCloudSDKException):
1672
+ raise
1673
+ else:
1674
+ raise TencentCloudSDKException(type(e).__name__, str(e))
1675
+
1676
+
1654
1677
  def DescribeDefaultCertificates(self, request):
1655
1678
  """查询默认证书列表
1656
1679
 
@@ -3170,6 +3193,29 @@ class TeoClient(AbstractClient):
3170
3193
  raise TencentCloudSDKException(type(e).__name__, str(e))
3171
3194
 
3172
3195
 
3196
+ def ModifyDDoSProtection(self, request):
3197
+ """修改站点的独立 DDoS 防护。
3198
+
3199
+ :param request: Request instance for ModifyDDoSProtection.
3200
+ :type request: :class:`tencentcloud.teo.v20220901.models.ModifyDDoSProtectionRequest`
3201
+ :rtype: :class:`tencentcloud.teo.v20220901.models.ModifyDDoSProtectionResponse`
3202
+
3203
+ """
3204
+ try:
3205
+ params = request._serialize()
3206
+ headers = request.headers
3207
+ body = self.call("ModifyDDoSProtection", params, headers=headers)
3208
+ response = json.loads(body)
3209
+ model = models.ModifyDDoSProtectionResponse()
3210
+ model._deserialize(response["Response"])
3211
+ return model
3212
+ except Exception as e:
3213
+ if isinstance(e, TencentCloudSDKException):
3214
+ raise
3215
+ else:
3216
+ raise TencentCloudSDKException(type(e).__name__, str(e))
3217
+
3218
+
3173
3219
  def ModifyDnsRecords(self, request):
3174
3220
  """您可以通过本接口批量修改 DNS 记录。
3175
3221
 
@@ -660,10 +660,9 @@ class TextToVoiceRequest(AbstractModel):
660
660
  :type ProjectId: int
661
661
  :param _ModelType: 模型类型,1-默认模型。
662
662
  :type ModelType: int
663
- :param _VoiceType: 音色 ID,包括标准音色、精品音色、大模型音色与基础版复刻音色。不同音色价格有差异,详情请参见[购买指南](https://cloud.tencent.com/document/product/1073/34112)。完整的音色 ID 列表请参见[音色列表](https://cloud.tencent.com/document/product/1073/92668)
664
-
663
+ :param _VoiceType: 音色 ID,包括标准音色、精品音色、大模型音色与基础版复刻音色。不同音色价格有差异,详情请参见[购买指南](https://cloud.tencent.com/document/product/1073/34112)。完整的音色 ID 列表请参见[音色列表](https://cloud.tencent.com/document/product/1073/92668)。<br>若使用一句话版声音复刻,请填入固定值“200000000”。
665
664
  :type VoiceType: int
666
- :param _FastVoiceType: 一句话版声音复刻音色ID,使用一句话版声音复刻音色时需填写。【已废弃】
665
+ :param _FastVoiceType: 一句话版声音复刻音色ID,使用一句话版声音复刻音色时需填写。
667
666
  :type FastVoiceType: str
668
667
  :param _PrimaryLanguage: 主语言类型:<li>1-中文(默认)</li><li>2-英文</li><li>3-日文</li>
669
668
  :type PrimaryLanguage: int
@@ -769,8 +768,7 @@ class TextToVoiceRequest(AbstractModel):
769
768
 
770
769
  @property
771
770
  def VoiceType(self):
772
- """音色 ID,包括标准音色、精品音色、大模型音色与基础版复刻音色。不同音色价格有差异,详情请参见[购买指南](https://cloud.tencent.com/document/product/1073/34112)。完整的音色 ID 列表请参见[音色列表](https://cloud.tencent.com/document/product/1073/92668)
773
-
771
+ """音色 ID,包括标准音色、精品音色、大模型音色与基础版复刻音色。不同音色价格有差异,详情请参见[购买指南](https://cloud.tencent.com/document/product/1073/34112)。完整的音色 ID 列表请参见[音色列表](https://cloud.tencent.com/document/product/1073/92668)。<br>若使用一句话版声音复刻,请填入固定值“200000000”。
774
772
  :rtype: int
775
773
  """
776
774
  return self._VoiceType
@@ -781,7 +779,7 @@ class TextToVoiceRequest(AbstractModel):
781
779
 
782
780
  @property
783
781
  def FastVoiceType(self):
784
- """一句话版声音复刻音色ID,使用一句话版声音复刻音色时需填写。【已废弃】
782
+ """一句话版声音复刻音色ID,使用一句话版声音复刻音色时需填写。
785
783
  :rtype: str
786
784
  """
787
785
  return self._FastVoiceType