tencentcloud-sdk-python 3.0.1360__py2.py3-none-any.whl → 3.0.1362__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.
Files changed (51) hide show
  1. tencentcloud/__init__.py +1 -1
  2. tencentcloud/bh/v20230418/bh_client.py +23 -0
  3. tencentcloud/bh/v20230418/models.py +139 -0
  4. tencentcloud/cdb/v20170320/cdb_client.py +1 -1
  5. tencentcloud/cdb/v20170320/models.py +6 -6
  6. tencentcloud/cdwdoris/v20211228/models.py +30 -0
  7. tencentcloud/cdwpg/v20201230/models.py +22 -334
  8. tencentcloud/cvm/v20170312/models.py +20 -10
  9. tencentcloud/cwp/v20180228/models.py +138 -12
  10. tencentcloud/cynosdb/v20190107/models.py +45 -0
  11. tencentcloud/dlc/v20210125/models.py +107 -566
  12. tencentcloud/dsgc/v20190723/models.py +30 -0
  13. tencentcloud/emr/v20190103/emr_client.py +23 -0
  14. tencentcloud/emr/v20190103/models.py +214 -0
  15. tencentcloud/es/v20250101/es_client.py +23 -0
  16. tencentcloud/es/v20250101/models.py +356 -1
  17. tencentcloud/ess/v20201111/models.py +256 -0
  18. tencentcloud/essbasic/v20210526/models.py +281 -13
  19. tencentcloud/gaap/v20180529/gaap_client.py +1 -1
  20. tencentcloud/gaap/v20180529/models.py +2 -186
  21. tencentcloud/gs/v20191118/gs_client.py +46 -0
  22. tencentcloud/gs/v20191118/models.py +385 -8
  23. tencentcloud/ioa/v20220601/ioa_client.py +46 -0
  24. tencentcloud/ioa/v20220601/models.py +358 -0
  25. tencentcloud/iotexplorer/v20190423/iotexplorer_client.py +115 -0
  26. tencentcloud/iotexplorer/v20190423/models.py +1228 -50
  27. tencentcloud/kms/v20190118/models.py +71 -0
  28. tencentcloud/lcic/v20220817/models.py +64 -0
  29. tencentcloud/lighthouse/v20200324/errorcodes.py +0 -6
  30. tencentcloud/lighthouse/v20200324/lighthouse_client.py +4 -57
  31. tencentcloud/lighthouse/v20200324/models.py +14 -168
  32. tencentcloud/monitor/v20180724/models.py +2 -2
  33. tencentcloud/monitor/v20180724/monitor_client.py +1 -1
  34. tencentcloud/mps/v20190612/models.py +168 -17
  35. tencentcloud/oceanus/v20190422/models.py +2 -2
  36. tencentcloud/privatedns/v20201028/models.py +6 -6
  37. tencentcloud/tan/v20220420/tan_client.py +3 -1
  38. tencentcloud/tcbr/v20220217/models.py +15 -0
  39. tencentcloud/tione/v20211111/models.py +91 -0
  40. tencentcloud/trocket/v20230308/models.py +1451 -66
  41. tencentcloud/trocket/v20230308/trocket_client.py +215 -0
  42. tencentcloud/vcube/v20220410/models.py +15 -0
  43. tencentcloud/vdb/v20230616/models.py +15 -0
  44. tencentcloud/vpc/v20170312/models.py +307 -78
  45. tencentcloud/vpc/v20170312/vpc_client.py +31 -3
  46. tencentcloud/wedata/v20210820/models.py +6 -6
  47. {tencentcloud_sdk_python-3.0.1360.dist-info → tencentcloud_sdk_python-3.0.1362.dist-info}/METADATA +1 -1
  48. {tencentcloud_sdk_python-3.0.1360.dist-info → tencentcloud_sdk_python-3.0.1362.dist-info}/RECORD +51 -51
  49. {tencentcloud_sdk_python-3.0.1360.dist-info → tencentcloud_sdk_python-3.0.1362.dist-info}/LICENSE +0 -0
  50. {tencentcloud_sdk_python-3.0.1360.dist-info → tencentcloud_sdk_python-3.0.1362.dist-info}/WHEEL +0 -0
  51. {tencentcloud_sdk_python-3.0.1360.dist-info → tencentcloud_sdk_python-3.0.1362.dist-info}/top_level.txt +0 -0
@@ -24734,7 +24734,7 @@ class GetMonitorDataRequest(AbstractModel):
24734
24734
  :type StartTime: str
24735
24735
  :param _EndTime: 结束时间,如2018-09-22T20:51:23+08:00,默认为当前时间。 EndTime不能小于StartTime
24736
24736
  :type EndTime: str
24737
- :param _SpecifyStatistics: 返回多种统计方式数据。avg, max, min (1,2,4)可以自由组合
24737
+ :param _SpecifyStatistics: 返回多种统计方式数据。avg, max, min (1,2,4)可以自由组合。注意: 仅支持对API配置文档中展示的统计方式返回对应的统计数据。如所需的统计方式不满足您的查询需求,请提工单反馈。
24738
24738
  :type SpecifyStatistics: int
24739
24739
  """
24740
24740
  self._Namespace = None
@@ -24813,7 +24813,7 @@ class GetMonitorDataRequest(AbstractModel):
24813
24813
 
24814
24814
  @property
24815
24815
  def SpecifyStatistics(self):
24816
- """返回多种统计方式数据。avg, max, min (1,2,4)可以自由组合
24816
+ """返回多种统计方式数据。avg, max, min (1,2,4)可以自由组合。注意: 仅支持对API配置文档中展示的统计方式返回对应的统计数据。如所需的统计方式不满足您的查询需求,请提工单反馈。
24817
24817
  :rtype: int
24818
24818
  """
24819
24819
  return self._SpecifyStatistics
@@ -2649,7 +2649,7 @@ class MonitorClient(AbstractClient):
2649
2649
  若您需要调用的指标、对象较多,可能存在因限频出现拉取失败的情况,建议尽量将请求按时间维度均摊。
2650
2650
  参数SpecifyStatistics目前可支持返回三种统计方式(avg,max,min),分别为二进制1,2,4。
2651
2651
  例子:3:avg+max,5:avg+min,6:max+min,7:avg+max+min
2652
- 拉取数据的粒度和统计方式的对应关系尽量在接入平台进行配置,如果没有配置,因为更小粒度数据存储时间有限,拉取时间范围也是有限。
2652
+ 拉取数据的粒度和统计方式的对应关系尽量在接入平台进行配置,如果没有配置对应统计方式,请提工单反馈。
2653
2653
 
2654
2654
  >?
2655
2655
  >- 2022年9月1日起,腾讯云可观测平台开始对GetMonitorData接口计费。每个主账号每月可获得100万次免费请求额度,超过免费额度后如需继续调用接口需要开通 [API请求按量付费](https://buy.cloud.tencent.com/APIRequestBuy)。计费规则可查看[API计费文档](https://cloud.tencent.com/document/product/248/77914)。
@@ -11595,7 +11595,7 @@ class AudioTemplateInfo(AbstractModel):
11595
11595
 
11596
11596
 
11597
11597
  :type Bitrate: int
11598
- :param _SampleRate: 音频流的采样率,不同编码标准支持的采样率选项不同。详细参考[音频采样率支持范围文档]https://cloud.tencent.com/document/product/862/77166#f3b039f1-d817-4a96-b4e4-90132d31cd53
11598
+ :param _SampleRate: 音频流的采样率,不同编码标准支持的采样率选项不同。详细参考[音频采样率支持范围文档](https://cloud.tencent.com/document/product/862/77166#f3b039f1-d817-4a96-b4e4-90132d31cd53)
11599
11599
  单位:Hz
11600
11600
  注意:请确保源音频流的采样率在上述选项范围内,否则可能导致转码失败!
11601
11601
  :type SampleRate: int
@@ -11666,7 +11666,7 @@ class AudioTemplateInfo(AbstractModel):
11666
11666
 
11667
11667
  @property
11668
11668
  def SampleRate(self):
11669
- """音频流的采样率,不同编码标准支持的采样率选项不同。详细参考[音频采样率支持范围文档]https://cloud.tencent.com/document/product/862/77166#f3b039f1-d817-4a96-b4e4-90132d31cd53
11669
+ """音频流的采样率,不同编码标准支持的采样率选项不同。详细参考[音频采样率支持范围文档](https://cloud.tencent.com/document/product/862/77166#f3b039f1-d817-4a96-b4e4-90132d31cd53)
11670
11670
  单位:Hz
11671
11671
  注意:请确保源音频流的采样率在上述选项范围内,否则可能导致转码失败!
11672
11672
  :rtype: int
@@ -17482,6 +17482,10 @@ class CreateOutputInfo(AbstractModel):
17482
17482
  :type Protocol: str
17483
17483
  :param _OutputRegion: 输出地区。
17484
17484
  :type OutputRegion: str
17485
+ :param _OutputType: 输出类型:Internet/TencentCSS
17486
+ :type OutputType: str
17487
+ :param _OutputKind: 输出模块类型,包括Pinpoint(单点输出,最多支持四路并发输出);MultiMesh(多路输出,支持大于四路的并发输出,目前可以达到200路)。默认类型为 Pinpoint 输出。对于单个 Flow 一个区域最多只能有一个 MultiMesh 输出
17488
+ :type OutputKind: str
17485
17489
  :param _SRTSettings: 输出的SRT的配置。
17486
17490
  :type SRTSettings: :class:`tencentcloud.mps.v20190612.models.CreateOutputSRTSettings`
17487
17491
  :param _RTMPSettings: 输出的RTMP的配置。
@@ -17497,8 +17501,6 @@ class CreateOutputInfo(AbstractModel):
17497
17501
  :type SecurityGroupIds: list of str
17498
17502
  :param _Zones: 可用区,output最多只支持输入一个可用区。
17499
17503
  :type Zones: list of str
17500
- :param _OutputType: 输出类型:Internet/TencentCSS/StreamLive
17501
- :type OutputType: str
17502
17504
  :param _RISTSettings: 输出的RIST的配置。
17503
17505
  :type RISTSettings: :class:`tencentcloud.mps.v20190612.models.CreateOutputRistSettings`
17504
17506
  :param _PidSelector: 对于含有多个音/视频轨的流,可以指定需要使用的轨道
@@ -17508,6 +17510,8 @@ class CreateOutputInfo(AbstractModel):
17508
17510
  self._Description = None
17509
17511
  self._Protocol = None
17510
17512
  self._OutputRegion = None
17513
+ self._OutputType = None
17514
+ self._OutputKind = None
17511
17515
  self._SRTSettings = None
17512
17516
  self._RTMPSettings = None
17513
17517
  self._RTPSettings = None
@@ -17515,7 +17519,6 @@ class CreateOutputInfo(AbstractModel):
17515
17519
  self._MaxConcurrent = None
17516
17520
  self._SecurityGroupIds = None
17517
17521
  self._Zones = None
17518
- self._OutputType = None
17519
17522
  self._RISTSettings = None
17520
17523
  self._PidSelector = None
17521
17524
 
@@ -17563,6 +17566,28 @@ class CreateOutputInfo(AbstractModel):
17563
17566
  def OutputRegion(self, OutputRegion):
17564
17567
  self._OutputRegion = OutputRegion
17565
17568
 
17569
+ @property
17570
+ def OutputType(self):
17571
+ """输出类型:Internet/TencentCSS
17572
+ :rtype: str
17573
+ """
17574
+ return self._OutputType
17575
+
17576
+ @OutputType.setter
17577
+ def OutputType(self, OutputType):
17578
+ self._OutputType = OutputType
17579
+
17580
+ @property
17581
+ def OutputKind(self):
17582
+ """输出模块类型,包括Pinpoint(单点输出,最多支持四路并发输出);MultiMesh(多路输出,支持大于四路的并发输出,目前可以达到200路)。默认类型为 Pinpoint 输出。对于单个 Flow 一个区域最多只能有一个 MultiMesh 输出
17583
+ :rtype: str
17584
+ """
17585
+ return self._OutputKind
17586
+
17587
+ @OutputKind.setter
17588
+ def OutputKind(self, OutputKind):
17589
+ self._OutputKind = OutputKind
17590
+
17566
17591
  @property
17567
17592
  def SRTSettings(self):
17568
17593
  """输出的SRT的配置。
@@ -17641,17 +17666,6 @@ class CreateOutputInfo(AbstractModel):
17641
17666
  def Zones(self, Zones):
17642
17667
  self._Zones = Zones
17643
17668
 
17644
- @property
17645
- def OutputType(self):
17646
- """输出类型:Internet/TencentCSS/StreamLive
17647
- :rtype: str
17648
- """
17649
- return self._OutputType
17650
-
17651
- @OutputType.setter
17652
- def OutputType(self, OutputType):
17653
- self._OutputType = OutputType
17654
-
17655
17669
  @property
17656
17670
  def RISTSettings(self):
17657
17671
  """输出的RIST的配置。
@@ -17680,6 +17694,8 @@ class CreateOutputInfo(AbstractModel):
17680
17694
  self._Description = params.get("Description")
17681
17695
  self._Protocol = params.get("Protocol")
17682
17696
  self._OutputRegion = params.get("OutputRegion")
17697
+ self._OutputType = params.get("OutputType")
17698
+ self._OutputKind = params.get("OutputKind")
17683
17699
  if params.get("SRTSettings") is not None:
17684
17700
  self._SRTSettings = CreateOutputSRTSettings()
17685
17701
  self._SRTSettings._deserialize(params.get("SRTSettings"))
@@ -17693,7 +17709,6 @@ class CreateOutputInfo(AbstractModel):
17693
17709
  self._MaxConcurrent = params.get("MaxConcurrent")
17694
17710
  self._SecurityGroupIds = params.get("SecurityGroupIds")
17695
17711
  self._Zones = params.get("Zones")
17696
- self._OutputType = params.get("OutputType")
17697
17712
  if params.get("RISTSettings") is not None:
17698
17713
  self._RISTSettings = CreateOutputRistSettings()
17699
17714
  self._RISTSettings._deserialize(params.get("RISTSettings"))
@@ -24508,6 +24523,8 @@ class DescribeInput(AbstractModel):
24508
24523
  :param _RISTSettings: 输入的RIST配置信息。
24509
24524
  注意:此字段可能返回 null,表示取不到有效值。
24510
24525
  :type RISTSettings: :class:`tencentcloud.mps.v20190612.models.DescribeInputRISTSettings`
24526
+ :param _StreamUrls: 输入模块配置相关的URL信息,包含提供的推流地址,或者配置的第三方源流地址
24527
+ :type StreamUrls: list of StreamUrlDetail
24511
24528
  """
24512
24529
  self._InputId = None
24513
24530
  self._InputName = None
@@ -24527,6 +24544,7 @@ class DescribeInput(AbstractModel):
24527
24544
  self._SecurityGroupIds = None
24528
24545
  self._Zones = None
24529
24546
  self._RISTSettings = None
24547
+ self._StreamUrls = None
24530
24548
 
24531
24549
  @property
24532
24550
  def InputId(self):
@@ -24736,6 +24754,17 @@ class DescribeInput(AbstractModel):
24736
24754
  def RISTSettings(self, RISTSettings):
24737
24755
  self._RISTSettings = RISTSettings
24738
24756
 
24757
+ @property
24758
+ def StreamUrls(self):
24759
+ """输入模块配置相关的URL信息,包含提供的推流地址,或者配置的第三方源流地址
24760
+ :rtype: list of StreamUrlDetail
24761
+ """
24762
+ return self._StreamUrls
24763
+
24764
+ @StreamUrls.setter
24765
+ def StreamUrls(self, StreamUrls):
24766
+ self._StreamUrls = StreamUrls
24767
+
24739
24768
 
24740
24769
  def _deserialize(self, params):
24741
24770
  self._InputId = params.get("InputId")
@@ -24777,6 +24806,12 @@ class DescribeInput(AbstractModel):
24777
24806
  if params.get("RISTSettings") is not None:
24778
24807
  self._RISTSettings = DescribeInputRISTSettings()
24779
24808
  self._RISTSettings._deserialize(params.get("RISTSettings"))
24809
+ if params.get("StreamUrls") is not None:
24810
+ self._StreamUrls = []
24811
+ for item in params.get("StreamUrls"):
24812
+ obj = StreamUrlDetail()
24813
+ obj._deserialize(item)
24814
+ self._StreamUrls.append(obj)
24780
24815
  memeber_set = set(params.keys())
24781
24816
  for name, value in vars(self).items():
24782
24817
  property_name = name[1:]
@@ -25506,6 +25541,8 @@ class DescribeOutput(AbstractModel):
25506
25541
  :type OutputName: str
25507
25542
  :param _OutputType: 输出类型。
25508
25543
  :type OutputType: str
25544
+ :param _OutputKind: 输出模块类型,包括Pinpoint(单点输出,最多支持四路并发输出);MultiMesh(多路输出,支持大于四路的并发输出,目前可以达到200路)。默认类型为 Pinpoint 输出。对于单个 Flow 一个区域最多只能有一个 MultiMesh 输出。
25545
+ :type OutputKind: str
25509
25546
  :param _Description: 输出描述。
25510
25547
  注意:此字段可能返回 null,表示取不到有效值。
25511
25548
  :type Description: str
@@ -25550,10 +25587,13 @@ class DescribeOutput(AbstractModel):
25550
25587
  :type RISTSettings: :class:`tencentcloud.mps.v20190612.models.DescribeOutputRISTSettings`
25551
25588
  :param _PidSelector: 对于含有多个音/视频轨的流,可以指定需要使用的轨道
25552
25589
  :type PidSelector: :class:`tencentcloud.mps.v20190612.models.PidSelector`
25590
+ :param _StreamUrls: 输出模块配置,相关的URL,包括提供的拉流地址,或者配置的输出到第三方的转推地址
25591
+ :type StreamUrls: list of StreamUrlDetail
25553
25592
  """
25554
25593
  self._OutputId = None
25555
25594
  self._OutputName = None
25556
25595
  self._OutputType = None
25596
+ self._OutputKind = None
25557
25597
  self._Description = None
25558
25598
  self._Protocol = None
25559
25599
  self._OutputAddressList = None
@@ -25570,6 +25610,7 @@ class DescribeOutput(AbstractModel):
25570
25610
  self._Zones = None
25571
25611
  self._RISTSettings = None
25572
25612
  self._PidSelector = None
25613
+ self._StreamUrls = None
25573
25614
 
25574
25615
  @property
25575
25616
  def OutputId(self):
@@ -25604,6 +25645,17 @@ class DescribeOutput(AbstractModel):
25604
25645
  def OutputType(self, OutputType):
25605
25646
  self._OutputType = OutputType
25606
25647
 
25648
+ @property
25649
+ def OutputKind(self):
25650
+ """输出模块类型,包括Pinpoint(单点输出,最多支持四路并发输出);MultiMesh(多路输出,支持大于四路的并发输出,目前可以达到200路)。默认类型为 Pinpoint 输出。对于单个 Flow 一个区域最多只能有一个 MultiMesh 输出。
25651
+ :rtype: str
25652
+ """
25653
+ return self._OutputKind
25654
+
25655
+ @OutputKind.setter
25656
+ def OutputKind(self, OutputKind):
25657
+ self._OutputKind = OutputKind
25658
+
25607
25659
  @property
25608
25660
  def Description(self):
25609
25661
  """输出描述。
@@ -25792,11 +25844,23 @@ class DescribeOutput(AbstractModel):
25792
25844
  def PidSelector(self, PidSelector):
25793
25845
  self._PidSelector = PidSelector
25794
25846
 
25847
+ @property
25848
+ def StreamUrls(self):
25849
+ """输出模块配置,相关的URL,包括提供的拉流地址,或者配置的输出到第三方的转推地址
25850
+ :rtype: list of StreamUrlDetail
25851
+ """
25852
+ return self._StreamUrls
25853
+
25854
+ @StreamUrls.setter
25855
+ def StreamUrls(self, StreamUrls):
25856
+ self._StreamUrls = StreamUrls
25857
+
25795
25858
 
25796
25859
  def _deserialize(self, params):
25797
25860
  self._OutputId = params.get("OutputId")
25798
25861
  self._OutputName = params.get("OutputName")
25799
25862
  self._OutputType = params.get("OutputType")
25863
+ self._OutputKind = params.get("OutputKind")
25800
25864
  self._Description = params.get("Description")
25801
25865
  self._Protocol = params.get("Protocol")
25802
25866
  if params.get("OutputAddressList") is not None:
@@ -25834,6 +25898,12 @@ class DescribeOutput(AbstractModel):
25834
25898
  if params.get("PidSelector") is not None:
25835
25899
  self._PidSelector = PidSelector()
25836
25900
  self._PidSelector._deserialize(params.get("PidSelector"))
25901
+ if params.get("StreamUrls") is not None:
25902
+ self._StreamUrls = []
25903
+ for item in params.get("StreamUrls"):
25904
+ obj = StreamUrlDetail()
25905
+ obj._deserialize(item)
25906
+ self._StreamUrls.append(obj)
25837
25907
  memeber_set = set(params.keys())
25838
25908
  for name, value in vars(self).items():
25839
25909
  property_name = name[1:]
@@ -44567,6 +44637,8 @@ class ModifyOutputInfo(AbstractModel):
44567
44637
  :type Description: str
44568
44638
  :param _Protocol: 输出的转推协议,支持SRT|RTP|RTMP|RTMP_PULL|RTSP_PULL|RIST。
44569
44639
  :type Protocol: str
44640
+ :param _OutputKind: 输出模块类型,包括Pinpoint(单点输出,最多支持四路并发输出);MultiMesh(多路输出,支持大于四路的并发输出,目前可以达到200路)。默认类型为 Pinpoint 输出。对于单个 Flow 一个区域最多只能有一个 MultiMesh 输出。
44641
+ :type OutputKind: str
44570
44642
  :param _SRTSettings: 转推SRT的配置。
44571
44643
  :type SRTSettings: :class:`tencentcloud.mps.v20190612.models.CreateOutputSRTSettings`
44572
44644
  :param _RTPSettings: 转推RTP的配置。
@@ -44593,6 +44665,7 @@ class ModifyOutputInfo(AbstractModel):
44593
44665
  self._OutputName = None
44594
44666
  self._Description = None
44595
44667
  self._Protocol = None
44668
+ self._OutputKind = None
44596
44669
  self._SRTSettings = None
44597
44670
  self._RTPSettings = None
44598
44671
  self._RTMPSettings = None
@@ -44648,6 +44721,17 @@ class ModifyOutputInfo(AbstractModel):
44648
44721
  def Protocol(self, Protocol):
44649
44722
  self._Protocol = Protocol
44650
44723
 
44724
+ @property
44725
+ def OutputKind(self):
44726
+ """输出模块类型,包括Pinpoint(单点输出,最多支持四路并发输出);MultiMesh(多路输出,支持大于四路的并发输出,目前可以达到200路)。默认类型为 Pinpoint 输出。对于单个 Flow 一个区域最多只能有一个 MultiMesh 输出。
44727
+ :rtype: str
44728
+ """
44729
+ return self._OutputKind
44730
+
44731
+ @OutputKind.setter
44732
+ def OutputKind(self, OutputKind):
44733
+ self._OutputKind = OutputKind
44734
+
44651
44735
  @property
44652
44736
  def SRTSettings(self):
44653
44737
  """转推SRT的配置。
@@ -44765,6 +44849,7 @@ class ModifyOutputInfo(AbstractModel):
44765
44849
  self._OutputName = params.get("OutputName")
44766
44850
  self._Description = params.get("Description")
44767
44851
  self._Protocol = params.get("Protocol")
44852
+ self._OutputKind = params.get("OutputKind")
44768
44853
  if params.get("SRTSettings") is not None:
44769
44854
  self._SRTSettings = CreateOutputSRTSettings()
44770
44855
  self._SRTSettings._deserialize(params.get("SRTSettings"))
@@ -57090,6 +57175,72 @@ class StreamLinkRegionInfo(AbstractModel):
57090
57175
 
57091
57176
 
57092
57177
 
57178
+ class StreamUrlDetail(AbstractModel):
57179
+ """描述 URL 的完整信息
57180
+
57181
+ """
57182
+
57183
+ def __init__(self):
57184
+ r"""
57185
+ :param _Label: 会描述运营商信息等
57186
+ :type Label: str
57187
+ :param _Url: URL
57188
+ :type Url: str
57189
+ :param _Type: Playback: 拉流播放地址; RelayDestination:转推目的地址;SourceCaptureUrl:回源拉流地址;IngestEndpoint:推流地址
57190
+ :type Type: str
57191
+ """
57192
+ self._Label = None
57193
+ self._Url = None
57194
+ self._Type = None
57195
+
57196
+ @property
57197
+ def Label(self):
57198
+ """会描述运营商信息等
57199
+ :rtype: str
57200
+ """
57201
+ return self._Label
57202
+
57203
+ @Label.setter
57204
+ def Label(self, Label):
57205
+ self._Label = Label
57206
+
57207
+ @property
57208
+ def Url(self):
57209
+ """URL
57210
+ :rtype: str
57211
+ """
57212
+ return self._Url
57213
+
57214
+ @Url.setter
57215
+ def Url(self, Url):
57216
+ self._Url = Url
57217
+
57218
+ @property
57219
+ def Type(self):
57220
+ """Playback: 拉流播放地址; RelayDestination:转推目的地址;SourceCaptureUrl:回源拉流地址;IngestEndpoint:推流地址
57221
+ :rtype: str
57222
+ """
57223
+ return self._Type
57224
+
57225
+ @Type.setter
57226
+ def Type(self, Type):
57227
+ self._Type = Type
57228
+
57229
+
57230
+ def _deserialize(self, params):
57231
+ self._Label = params.get("Label")
57232
+ self._Url = params.get("Url")
57233
+ self._Type = params.get("Type")
57234
+ memeber_set = set(params.keys())
57235
+ for name, value in vars(self).items():
57236
+ property_name = name[1:]
57237
+ if property_name in memeber_set:
57238
+ memeber_set.remove(property_name)
57239
+ if len(memeber_set) > 0:
57240
+ warnings.warn("%s fileds are useless." % ",".join(memeber_set))
57241
+
57242
+
57243
+
57093
57244
  class SubtitleTemplate(AbstractModel):
57094
57245
  """字幕流配置参数。
57095
57246
 
@@ -2573,7 +2573,7 @@ class CreateJobConfigRequest(AbstractModel):
2573
2573
  :type JobId: str
2574
2574
  :param _EntrypointClass: 主类
2575
2575
  :type EntrypointClass: str
2576
- :param _ProgramArgs: 主类入参
2576
+ :param _ProgramArgs: 主类入参,需要区分下Sql作业配置,Jar作业配置,Python作业配置,具体参考下面的示例值
2577
2577
  :type ProgramArgs: str
2578
2578
  :param _Remark: 备注
2579
2579
  :type Remark: str
@@ -2694,7 +2694,7 @@ class CreateJobConfigRequest(AbstractModel):
2694
2694
 
2695
2695
  @property
2696
2696
  def ProgramArgs(self):
2697
- """主类入参
2697
+ """主类入参,需要区分下Sql作业配置,Jar作业配置,Python作业配置,具体参考下面的示例值
2698
2698
  :rtype: str
2699
2699
  """
2700
2700
  return self._ProgramArgs
@@ -1009,7 +1009,7 @@ class CreatePrivateZoneResponse(AbstractModel):
1009
1009
 
1010
1010
  def __init__(self):
1011
1011
  r"""
1012
- :param _ZoneId: 私有域ID, zone-xxxxxx
1012
+ :param _ZoneId: 私有域ID, zone-12345678
1013
1013
  :type ZoneId: str
1014
1014
  :param _Domain: 私有域名
1015
1015
  :type Domain: str
@@ -1022,7 +1022,7 @@ class CreatePrivateZoneResponse(AbstractModel):
1022
1022
 
1023
1023
  @property
1024
1024
  def ZoneId(self):
1025
- """私有域ID, zone-xxxxxx
1025
+ """私有域ID, zone-12345678
1026
1026
  :rtype: str
1027
1027
  """
1028
1028
  return self._ZoneId
@@ -2360,14 +2360,14 @@ class DescribePrivateZoneRequest(AbstractModel):
2360
2360
 
2361
2361
  def __init__(self):
2362
2362
  r"""
2363
- :param _ZoneId: 域名,格式必须是标准的TLD
2363
+ :param _ZoneId: 私有域id
2364
2364
  :type ZoneId: str
2365
2365
  """
2366
2366
  self._ZoneId = None
2367
2367
 
2368
2368
  @property
2369
2369
  def ZoneId(self):
2370
- """域名,格式必须是标准的TLD
2370
+ """私有域id
2371
2371
  :rtype: str
2372
2372
  """
2373
2373
  return self._ZoneId
@@ -3277,7 +3277,7 @@ class ModifyPrivateZoneVpcResponse(AbstractModel):
3277
3277
 
3278
3278
  def __init__(self):
3279
3279
  r"""
3280
- :param _ZoneId: 私有域ID, zone-xxxxxx
3280
+ :param _ZoneId: 私有域ID, zone-12345ds6
3281
3281
  :type ZoneId: str
3282
3282
  :param _VpcSet: 解析域关联的VPC列表
3283
3283
  :type VpcSet: list of VpcInfo
@@ -3293,7 +3293,7 @@ class ModifyPrivateZoneVpcResponse(AbstractModel):
3293
3293
 
3294
3294
  @property
3295
3295
  def ZoneId(self):
3296
- """私有域ID, zone-xxxxxx
3296
+ """私有域ID, zone-12345ds6
3297
3297
  :rtype: str
3298
3298
  """
3299
3299
  return self._ZoneId
@@ -27,7 +27,9 @@ class TanClient(AbstractClient):
27
27
 
28
28
 
29
29
  def CreateBlockNodeRecords(self, request):
30
- """推送节点数据
30
+ """产品下线
31
+
32
+ 推送节点数据
31
33
 
32
34
  :param request: Request instance for CreateBlockNodeRecords.
33
35
  :type request: :class:`tencentcloud.tan.v20220420.models.CreateBlockNodeRecordsRequest`
@@ -2680,6 +2680,8 @@ class ServerBaseConfig(AbstractModel):
2680
2680
  :type LogParseType: str
2681
2681
  :param _Tag: 服务标签, function: 函数托管
2682
2682
  :type Tag: str
2683
+ :param _InternalAccess: 内网访问开关 close | open
2684
+ :type InternalAccess: str
2683
2685
  """
2684
2686
  self._EnvId = None
2685
2687
  self._ServerName = None
@@ -2702,6 +2704,7 @@ class ServerBaseConfig(AbstractModel):
2702
2704
  self._LogTopicId = None
2703
2705
  self._LogParseType = None
2704
2706
  self._Tag = None
2707
+ self._InternalAccess = None
2705
2708
 
2706
2709
  @property
2707
2710
  def EnvId(self):
@@ -2934,6 +2937,17 @@ class ServerBaseConfig(AbstractModel):
2934
2937
  def Tag(self, Tag):
2935
2938
  self._Tag = Tag
2936
2939
 
2940
+ @property
2941
+ def InternalAccess(self):
2942
+ """内网访问开关 close | open
2943
+ :rtype: str
2944
+ """
2945
+ return self._InternalAccess
2946
+
2947
+ @InternalAccess.setter
2948
+ def InternalAccess(self, InternalAccess):
2949
+ self._InternalAccess = InternalAccess
2950
+
2937
2951
 
2938
2952
  def _deserialize(self, params):
2939
2953
  self._EnvId = params.get("EnvId")
@@ -2962,6 +2976,7 @@ class ServerBaseConfig(AbstractModel):
2962
2976
  self._LogTopicId = params.get("LogTopicId")
2963
2977
  self._LogParseType = params.get("LogParseType")
2964
2978
  self._Tag = params.get("Tag")
2979
+ self._InternalAccess = params.get("InternalAccess")
2965
2980
  memeber_set = set(params.keys())
2966
2981
  for name, value in vars(self).items():
2967
2982
  property_name = name[1:]
@@ -462,6 +462,57 @@ class Choice(AbstractModel):
462
462
 
463
463
 
464
464
 
465
+ class CodeRepoConfig(AbstractModel):
466
+ """代码仓库配置
467
+
468
+ """
469
+
470
+ def __init__(self):
471
+ r"""
472
+ :param _Id: 代码仓库Id
473
+ :type Id: str
474
+ :param _TargetPath: 代码仓下载目标地址
475
+ :type TargetPath: str
476
+ """
477
+ self._Id = None
478
+ self._TargetPath = None
479
+
480
+ @property
481
+ def Id(self):
482
+ """代码仓库Id
483
+ :rtype: str
484
+ """
485
+ return self._Id
486
+
487
+ @Id.setter
488
+ def Id(self, Id):
489
+ self._Id = Id
490
+
491
+ @property
492
+ def TargetPath(self):
493
+ """代码仓下载目标地址
494
+ :rtype: str
495
+ """
496
+ return self._TargetPath
497
+
498
+ @TargetPath.setter
499
+ def TargetPath(self, TargetPath):
500
+ self._TargetPath = TargetPath
501
+
502
+
503
+ def _deserialize(self, params):
504
+ self._Id = params.get("Id")
505
+ self._TargetPath = params.get("TargetPath")
506
+ memeber_set = set(params.keys())
507
+ for name, value in vars(self).items():
508
+ property_name = name[1:]
509
+ if property_name in memeber_set:
510
+ memeber_set.remove(property_name)
511
+ if len(memeber_set) > 0:
512
+ warnings.warn("%s fileds are useless." % ",".join(memeber_set))
513
+
514
+
515
+
465
516
  class Container(AbstractModel):
466
517
  """容器信息
467
518
 
@@ -2852,6 +2903,8 @@ POSTPAID_BY_HOUR 按量计费
2852
2903
  :type CallbackUrl: str
2853
2904
  :param _EncodedStartCmdInfo: 编码后的任务启动命令,与StartCmdInfo同时配置时,仅当前参数生效
2854
2905
  :type EncodedStartCmdInfo: :class:`tencentcloud.tione.v20211111.models.EncodedStartCmdInfo`
2906
+ :param _CodeRepos: 代码仓库配置
2907
+ :type CodeRepos: list of CodeRepoConfig
2855
2908
  """
2856
2909
  self._Name = None
2857
2910
  self._ChargeType = None
@@ -2876,6 +2929,7 @@ POSTPAID_BY_HOUR 按量计费
2876
2929
  self._DataSource = None
2877
2930
  self._CallbackUrl = None
2878
2931
  self._EncodedStartCmdInfo = None
2932
+ self._CodeRepos = None
2879
2933
 
2880
2934
  @property
2881
2935
  def Name(self):
@@ -3131,6 +3185,17 @@ POSTPAID_BY_HOUR 按量计费
3131
3185
  def EncodedStartCmdInfo(self, EncodedStartCmdInfo):
3132
3186
  self._EncodedStartCmdInfo = EncodedStartCmdInfo
3133
3187
 
3188
+ @property
3189
+ def CodeRepos(self):
3190
+ """代码仓库配置
3191
+ :rtype: list of CodeRepoConfig
3192
+ """
3193
+ return self._CodeRepos
3194
+
3195
+ @CodeRepos.setter
3196
+ def CodeRepos(self, CodeRepos):
3197
+ self._CodeRepos = CodeRepos
3198
+
3134
3199
 
3135
3200
  def _deserialize(self, params):
3136
3201
  self._Name = params.get("Name")
@@ -3183,6 +3248,12 @@ POSTPAID_BY_HOUR 按量计费
3183
3248
  if params.get("EncodedStartCmdInfo") is not None:
3184
3249
  self._EncodedStartCmdInfo = EncodedStartCmdInfo()
3185
3250
  self._EncodedStartCmdInfo._deserialize(params.get("EncodedStartCmdInfo"))
3251
+ if params.get("CodeRepos") is not None:
3252
+ self._CodeRepos = []
3253
+ for item in params.get("CodeRepos"):
3254
+ obj = CodeRepoConfig()
3255
+ obj._deserialize(item)
3256
+ self._CodeRepos.append(obj)
3186
3257
  memeber_set = set(params.keys())
3187
3258
  for name, value in vars(self).items():
3188
3259
  property_name = name[1:]
@@ -19784,6 +19855,8 @@ class TrainingTaskDetail(AbstractModel):
19784
19855
  :param _CallbackUrl: 回调地址
19785
19856
  注意:此字段可能返回 null,表示取不到有效值。
19786
19857
  :type CallbackUrl: str
19858
+ :param _CodeRepos: 任务关联的代码仓库配置
19859
+ :type CodeRepos: list of CodeRepoConfig
19787
19860
  """
19788
19861
  self._Id = None
19789
19862
  self._Name = None
@@ -19825,6 +19898,7 @@ class TrainingTaskDetail(AbstractModel):
19825
19898
  self._Message = None
19826
19899
  self._Status = None
19827
19900
  self._CallbackUrl = None
19901
+ self._CodeRepos = None
19828
19902
 
19829
19903
  @property
19830
19904
  def Id(self):
@@ -20291,6 +20365,17 @@ class TrainingTaskDetail(AbstractModel):
20291
20365
  def CallbackUrl(self, CallbackUrl):
20292
20366
  self._CallbackUrl = CallbackUrl
20293
20367
 
20368
+ @property
20369
+ def CodeRepos(self):
20370
+ """任务关联的代码仓库配置
20371
+ :rtype: list of CodeRepoConfig
20372
+ """
20373
+ return self._CodeRepos
20374
+
20375
+ @CodeRepos.setter
20376
+ def CodeRepos(self, CodeRepos):
20377
+ self._CodeRepos = CodeRepos
20378
+
20294
20379
 
20295
20380
  def _deserialize(self, params):
20296
20381
  self._Id = params.get("Id")
@@ -20358,6 +20443,12 @@ class TrainingTaskDetail(AbstractModel):
20358
20443
  self._Message = params.get("Message")
20359
20444
  self._Status = params.get("Status")
20360
20445
  self._CallbackUrl = params.get("CallbackUrl")
20446
+ if params.get("CodeRepos") is not None:
20447
+ self._CodeRepos = []
20448
+ for item in params.get("CodeRepos"):
20449
+ obj = CodeRepoConfig()
20450
+ obj._deserialize(item)
20451
+ self._CodeRepos.append(obj)
20361
20452
  memeber_set = set(params.keys())
20362
20453
  for name, value in vars(self).items():
20363
20454
  property_name = name[1:]