tencentcloud-sdk-python 3.0.1268__py2.py3-none-any.whl → 3.0.1269__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.
- tencentcloud/__init__.py +1 -1
- tencentcloud/bh/v20230418/models.py +2 -2
- tencentcloud/bpaas/v20181217/errorcodes.py +1 -1
- tencentcloud/cdb/v20170320/cdb_client.py +1 -3
- tencentcloud/cdb/v20170320/errorcodes.py +3 -0
- tencentcloud/cdb/v20170320/models.py +26 -12
- tencentcloud/cfs/v20190719/models.py +15 -0
- tencentcloud/clb/v20180317/clb_client.py +1 -1
- tencentcloud/cls/v20201016/models.py +30 -30
- tencentcloud/cwp/v20180228/cwp_client.py +3 -1
- tencentcloud/emr/v20190103/models.py +8 -28
- tencentcloud/hunyuan/v20230901/models.py +4 -2
- tencentcloud/lcic/v20220817/errorcodes.py +1 -1
- tencentcloud/lcic/v20220817/lcic_client.py +69 -0
- tencentcloud/lcic/v20220817/models.py +458 -0
- tencentcloud/live/v20180801/models.py +8 -8
- tencentcloud/monitor/v20180724/models.py +25 -10
- tencentcloud/mps/v20190612/models.py +500 -8
- tencentcloud/tchd/v20230306/tchd_client.py +2 -0
- tencentcloud/tke/v20220501/models.py +23 -0
- tencentcloud/trtc/v20190722/models.py +32 -2
- tencentcloud/vclm/v20240523/models.py +86 -62
- tencentcloud/vclm/v20240523/vclm_client.py +1 -1
- tencentcloud/vpc/v20170312/errorcodes.py +6 -0
- tencentcloud/vpc/v20170312/models.py +4 -6
- {tencentcloud_sdk_python-3.0.1268.dist-info → tencentcloud_sdk_python-3.0.1269.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1268.dist-info → tencentcloud_sdk_python-3.0.1269.dist-info}/RECORD +30 -30
- {tencentcloud_sdk_python-3.0.1268.dist-info → tencentcloud_sdk_python-3.0.1269.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1268.dist-info → tencentcloud_sdk_python-3.0.1269.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1268.dist-info → tencentcloud_sdk_python-3.0.1269.dist-info}/top_level.txt +0 -0
@@ -2864,6 +2864,147 @@ class CustomMsgContent(AbstractModel):
|
|
2864
2864
|
|
2865
2865
|
|
2866
2866
|
|
2867
|
+
class CustomRecordInfo(AbstractModel):
|
2868
|
+
"""自定义录制信息
|
2869
|
+
|
2870
|
+
"""
|
2871
|
+
|
2872
|
+
def __init__(self):
|
2873
|
+
r"""
|
2874
|
+
:param _StartTime: 开始时间
|
2875
|
+
:type StartTime: int
|
2876
|
+
:param _StopTime: 结束时间
|
2877
|
+
:type StopTime: int
|
2878
|
+
:param _Duration: 总时长
|
2879
|
+
:type Duration: int
|
2880
|
+
:param _FileFormat: 文件格式
|
2881
|
+
:type FileFormat: str
|
2882
|
+
:param _RecordUrl: 流url
|
2883
|
+
:type RecordUrl: str
|
2884
|
+
:param _RecordSize: 流大小
|
2885
|
+
:type RecordSize: int
|
2886
|
+
:param _VideoId: 流ID
|
2887
|
+
:type VideoId: str
|
2888
|
+
:param _TaskId: 任务Id
|
2889
|
+
:type TaskId: str
|
2890
|
+
"""
|
2891
|
+
self._StartTime = None
|
2892
|
+
self._StopTime = None
|
2893
|
+
self._Duration = None
|
2894
|
+
self._FileFormat = None
|
2895
|
+
self._RecordUrl = None
|
2896
|
+
self._RecordSize = None
|
2897
|
+
self._VideoId = None
|
2898
|
+
self._TaskId = None
|
2899
|
+
|
2900
|
+
@property
|
2901
|
+
def StartTime(self):
|
2902
|
+
"""开始时间
|
2903
|
+
:rtype: int
|
2904
|
+
"""
|
2905
|
+
return self._StartTime
|
2906
|
+
|
2907
|
+
@StartTime.setter
|
2908
|
+
def StartTime(self, StartTime):
|
2909
|
+
self._StartTime = StartTime
|
2910
|
+
|
2911
|
+
@property
|
2912
|
+
def StopTime(self):
|
2913
|
+
"""结束时间
|
2914
|
+
:rtype: int
|
2915
|
+
"""
|
2916
|
+
return self._StopTime
|
2917
|
+
|
2918
|
+
@StopTime.setter
|
2919
|
+
def StopTime(self, StopTime):
|
2920
|
+
self._StopTime = StopTime
|
2921
|
+
|
2922
|
+
@property
|
2923
|
+
def Duration(self):
|
2924
|
+
"""总时长
|
2925
|
+
:rtype: int
|
2926
|
+
"""
|
2927
|
+
return self._Duration
|
2928
|
+
|
2929
|
+
@Duration.setter
|
2930
|
+
def Duration(self, Duration):
|
2931
|
+
self._Duration = Duration
|
2932
|
+
|
2933
|
+
@property
|
2934
|
+
def FileFormat(self):
|
2935
|
+
"""文件格式
|
2936
|
+
:rtype: str
|
2937
|
+
"""
|
2938
|
+
return self._FileFormat
|
2939
|
+
|
2940
|
+
@FileFormat.setter
|
2941
|
+
def FileFormat(self, FileFormat):
|
2942
|
+
self._FileFormat = FileFormat
|
2943
|
+
|
2944
|
+
@property
|
2945
|
+
def RecordUrl(self):
|
2946
|
+
"""流url
|
2947
|
+
:rtype: str
|
2948
|
+
"""
|
2949
|
+
return self._RecordUrl
|
2950
|
+
|
2951
|
+
@RecordUrl.setter
|
2952
|
+
def RecordUrl(self, RecordUrl):
|
2953
|
+
self._RecordUrl = RecordUrl
|
2954
|
+
|
2955
|
+
@property
|
2956
|
+
def RecordSize(self):
|
2957
|
+
"""流大小
|
2958
|
+
:rtype: int
|
2959
|
+
"""
|
2960
|
+
return self._RecordSize
|
2961
|
+
|
2962
|
+
@RecordSize.setter
|
2963
|
+
def RecordSize(self, RecordSize):
|
2964
|
+
self._RecordSize = RecordSize
|
2965
|
+
|
2966
|
+
@property
|
2967
|
+
def VideoId(self):
|
2968
|
+
"""流ID
|
2969
|
+
:rtype: str
|
2970
|
+
"""
|
2971
|
+
return self._VideoId
|
2972
|
+
|
2973
|
+
@VideoId.setter
|
2974
|
+
def VideoId(self, VideoId):
|
2975
|
+
self._VideoId = VideoId
|
2976
|
+
|
2977
|
+
@property
|
2978
|
+
def TaskId(self):
|
2979
|
+
"""任务Id
|
2980
|
+
:rtype: str
|
2981
|
+
"""
|
2982
|
+
return self._TaskId
|
2983
|
+
|
2984
|
+
@TaskId.setter
|
2985
|
+
def TaskId(self, TaskId):
|
2986
|
+
self._TaskId = TaskId
|
2987
|
+
|
2988
|
+
|
2989
|
+
def _deserialize(self, params):
|
2990
|
+
self._StartTime = params.get("StartTime")
|
2991
|
+
self._StopTime = params.get("StopTime")
|
2992
|
+
self._Duration = params.get("Duration")
|
2993
|
+
self._FileFormat = params.get("FileFormat")
|
2994
|
+
self._RecordUrl = params.get("RecordUrl")
|
2995
|
+
self._RecordSize = params.get("RecordSize")
|
2996
|
+
self._VideoId = params.get("VideoId")
|
2997
|
+
self._TaskId = params.get("TaskId")
|
2998
|
+
memeber_set = set(params.keys())
|
2999
|
+
for name, value in vars(self).items():
|
3000
|
+
property_name = name[1:]
|
3001
|
+
if property_name in memeber_set:
|
3002
|
+
memeber_set.remove(property_name)
|
3003
|
+
if len(memeber_set) > 0:
|
3004
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
3005
|
+
|
3006
|
+
|
3007
|
+
|
2867
3008
|
class DeleteAppCustomContentRequest(AbstractModel):
|
2868
3009
|
"""DeleteAppCustomContent请求参数结构体
|
2869
3010
|
|
@@ -5233,6 +5374,135 @@ class DescribeQuestionListResponse(AbstractModel):
|
|
5233
5374
|
self._RequestId = params.get("RequestId")
|
5234
5375
|
|
5235
5376
|
|
5377
|
+
class DescribeRecordRequest(AbstractModel):
|
5378
|
+
"""DescribeRecord请求参数结构体
|
5379
|
+
|
5380
|
+
"""
|
5381
|
+
|
5382
|
+
def __init__(self):
|
5383
|
+
r"""
|
5384
|
+
:param _SdkAppId: 学校ID
|
5385
|
+
:type SdkAppId: int
|
5386
|
+
:param _RoomId: 房间ID
|
5387
|
+
:type RoomId: int
|
5388
|
+
"""
|
5389
|
+
self._SdkAppId = None
|
5390
|
+
self._RoomId = None
|
5391
|
+
|
5392
|
+
@property
|
5393
|
+
def SdkAppId(self):
|
5394
|
+
"""学校ID
|
5395
|
+
:rtype: int
|
5396
|
+
"""
|
5397
|
+
return self._SdkAppId
|
5398
|
+
|
5399
|
+
@SdkAppId.setter
|
5400
|
+
def SdkAppId(self, SdkAppId):
|
5401
|
+
self._SdkAppId = SdkAppId
|
5402
|
+
|
5403
|
+
@property
|
5404
|
+
def RoomId(self):
|
5405
|
+
"""房间ID
|
5406
|
+
:rtype: int
|
5407
|
+
"""
|
5408
|
+
return self._RoomId
|
5409
|
+
|
5410
|
+
@RoomId.setter
|
5411
|
+
def RoomId(self, RoomId):
|
5412
|
+
self._RoomId = RoomId
|
5413
|
+
|
5414
|
+
|
5415
|
+
def _deserialize(self, params):
|
5416
|
+
self._SdkAppId = params.get("SdkAppId")
|
5417
|
+
self._RoomId = params.get("RoomId")
|
5418
|
+
memeber_set = set(params.keys())
|
5419
|
+
for name, value in vars(self).items():
|
5420
|
+
property_name = name[1:]
|
5421
|
+
if property_name in memeber_set:
|
5422
|
+
memeber_set.remove(property_name)
|
5423
|
+
if len(memeber_set) > 0:
|
5424
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
5425
|
+
|
5426
|
+
|
5427
|
+
|
5428
|
+
class DescribeRecordResponse(AbstractModel):
|
5429
|
+
"""DescribeRecord返回参数结构体
|
5430
|
+
|
5431
|
+
"""
|
5432
|
+
|
5433
|
+
def __init__(self):
|
5434
|
+
r"""
|
5435
|
+
:param _SchoolId: 学校ID
|
5436
|
+
:type SchoolId: int
|
5437
|
+
:param _ClassId: 课堂ID
|
5438
|
+
:type ClassId: int
|
5439
|
+
:param _RecordInfo: 录制信息
|
5440
|
+
:type RecordInfo: list of CustomRecordInfo
|
5441
|
+
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
5442
|
+
:type RequestId: str
|
5443
|
+
"""
|
5444
|
+
self._SchoolId = None
|
5445
|
+
self._ClassId = None
|
5446
|
+
self._RecordInfo = None
|
5447
|
+
self._RequestId = None
|
5448
|
+
|
5449
|
+
@property
|
5450
|
+
def SchoolId(self):
|
5451
|
+
"""学校ID
|
5452
|
+
:rtype: int
|
5453
|
+
"""
|
5454
|
+
return self._SchoolId
|
5455
|
+
|
5456
|
+
@SchoolId.setter
|
5457
|
+
def SchoolId(self, SchoolId):
|
5458
|
+
self._SchoolId = SchoolId
|
5459
|
+
|
5460
|
+
@property
|
5461
|
+
def ClassId(self):
|
5462
|
+
"""课堂ID
|
5463
|
+
:rtype: int
|
5464
|
+
"""
|
5465
|
+
return self._ClassId
|
5466
|
+
|
5467
|
+
@ClassId.setter
|
5468
|
+
def ClassId(self, ClassId):
|
5469
|
+
self._ClassId = ClassId
|
5470
|
+
|
5471
|
+
@property
|
5472
|
+
def RecordInfo(self):
|
5473
|
+
"""录制信息
|
5474
|
+
:rtype: list of CustomRecordInfo
|
5475
|
+
"""
|
5476
|
+
return self._RecordInfo
|
5477
|
+
|
5478
|
+
@RecordInfo.setter
|
5479
|
+
def RecordInfo(self, RecordInfo):
|
5480
|
+
self._RecordInfo = RecordInfo
|
5481
|
+
|
5482
|
+
@property
|
5483
|
+
def RequestId(self):
|
5484
|
+
"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
5485
|
+
:rtype: str
|
5486
|
+
"""
|
5487
|
+
return self._RequestId
|
5488
|
+
|
5489
|
+
@RequestId.setter
|
5490
|
+
def RequestId(self, RequestId):
|
5491
|
+
self._RequestId = RequestId
|
5492
|
+
|
5493
|
+
|
5494
|
+
def _deserialize(self, params):
|
5495
|
+
self._SchoolId = params.get("SchoolId")
|
5496
|
+
self._ClassId = params.get("ClassId")
|
5497
|
+
if params.get("RecordInfo") is not None:
|
5498
|
+
self._RecordInfo = []
|
5499
|
+
for item in params.get("RecordInfo"):
|
5500
|
+
obj = CustomRecordInfo()
|
5501
|
+
obj._deserialize(item)
|
5502
|
+
self._RecordInfo.append(obj)
|
5503
|
+
self._RequestId = params.get("RequestId")
|
5504
|
+
|
5505
|
+
|
5236
5506
|
class DescribeRecordStreamRequest(AbstractModel):
|
5237
5507
|
"""DescribeRecordStream请求参数结构体
|
5238
5508
|
|
@@ -12491,6 +12761,100 @@ class SingleStreamInfo(AbstractModel):
|
|
12491
12761
|
|
12492
12762
|
|
12493
12763
|
|
12764
|
+
class StartRecordRequest(AbstractModel):
|
12765
|
+
"""StartRecord请求参数结构体
|
12766
|
+
|
12767
|
+
"""
|
12768
|
+
|
12769
|
+
def __init__(self):
|
12770
|
+
r"""
|
12771
|
+
:param _SdkAppId: 学校ID
|
12772
|
+
:type SdkAppId: int
|
12773
|
+
:param _RoomId: 房间ID
|
12774
|
+
:type RoomId: int
|
12775
|
+
"""
|
12776
|
+
self._SdkAppId = None
|
12777
|
+
self._RoomId = None
|
12778
|
+
|
12779
|
+
@property
|
12780
|
+
def SdkAppId(self):
|
12781
|
+
"""学校ID
|
12782
|
+
:rtype: int
|
12783
|
+
"""
|
12784
|
+
return self._SdkAppId
|
12785
|
+
|
12786
|
+
@SdkAppId.setter
|
12787
|
+
def SdkAppId(self, SdkAppId):
|
12788
|
+
self._SdkAppId = SdkAppId
|
12789
|
+
|
12790
|
+
@property
|
12791
|
+
def RoomId(self):
|
12792
|
+
"""房间ID
|
12793
|
+
:rtype: int
|
12794
|
+
"""
|
12795
|
+
return self._RoomId
|
12796
|
+
|
12797
|
+
@RoomId.setter
|
12798
|
+
def RoomId(self, RoomId):
|
12799
|
+
self._RoomId = RoomId
|
12800
|
+
|
12801
|
+
|
12802
|
+
def _deserialize(self, params):
|
12803
|
+
self._SdkAppId = params.get("SdkAppId")
|
12804
|
+
self._RoomId = params.get("RoomId")
|
12805
|
+
memeber_set = set(params.keys())
|
12806
|
+
for name, value in vars(self).items():
|
12807
|
+
property_name = name[1:]
|
12808
|
+
if property_name in memeber_set:
|
12809
|
+
memeber_set.remove(property_name)
|
12810
|
+
if len(memeber_set) > 0:
|
12811
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
12812
|
+
|
12813
|
+
|
12814
|
+
|
12815
|
+
class StartRecordResponse(AbstractModel):
|
12816
|
+
"""StartRecord返回参数结构体
|
12817
|
+
|
12818
|
+
"""
|
12819
|
+
|
12820
|
+
def __init__(self):
|
12821
|
+
r"""
|
12822
|
+
:param _TaskId: 任务ID
|
12823
|
+
:type TaskId: str
|
12824
|
+
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
12825
|
+
:type RequestId: str
|
12826
|
+
"""
|
12827
|
+
self._TaskId = None
|
12828
|
+
self._RequestId = None
|
12829
|
+
|
12830
|
+
@property
|
12831
|
+
def TaskId(self):
|
12832
|
+
"""任务ID
|
12833
|
+
:rtype: str
|
12834
|
+
"""
|
12835
|
+
return self._TaskId
|
12836
|
+
|
12837
|
+
@TaskId.setter
|
12838
|
+
def TaskId(self, TaskId):
|
12839
|
+
self._TaskId = TaskId
|
12840
|
+
|
12841
|
+
@property
|
12842
|
+
def RequestId(self):
|
12843
|
+
"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
12844
|
+
:rtype: str
|
12845
|
+
"""
|
12846
|
+
return self._RequestId
|
12847
|
+
|
12848
|
+
@RequestId.setter
|
12849
|
+
def RequestId(self, RequestId):
|
12850
|
+
self._RequestId = RequestId
|
12851
|
+
|
12852
|
+
|
12853
|
+
def _deserialize(self, params):
|
12854
|
+
self._TaskId = params.get("TaskId")
|
12855
|
+
self._RequestId = params.get("RequestId")
|
12856
|
+
|
12857
|
+
|
12494
12858
|
class StartRoomRequest(AbstractModel):
|
12495
12859
|
"""StartRoom请求参数结构体
|
12496
12860
|
|
@@ -12555,6 +12919,100 @@ class StartRoomResponse(AbstractModel):
|
|
12555
12919
|
self._RequestId = params.get("RequestId")
|
12556
12920
|
|
12557
12921
|
|
12922
|
+
class StopRecordRequest(AbstractModel):
|
12923
|
+
"""StopRecord请求参数结构体
|
12924
|
+
|
12925
|
+
"""
|
12926
|
+
|
12927
|
+
def __init__(self):
|
12928
|
+
r"""
|
12929
|
+
:param _SdkAppId: 学校ID
|
12930
|
+
:type SdkAppId: int
|
12931
|
+
:param _RoomId: 房间ID
|
12932
|
+
:type RoomId: int
|
12933
|
+
:param _TaskId: 任务ID
|
12934
|
+
:type TaskId: str
|
12935
|
+
"""
|
12936
|
+
self._SdkAppId = None
|
12937
|
+
self._RoomId = None
|
12938
|
+
self._TaskId = None
|
12939
|
+
|
12940
|
+
@property
|
12941
|
+
def SdkAppId(self):
|
12942
|
+
"""学校ID
|
12943
|
+
:rtype: int
|
12944
|
+
"""
|
12945
|
+
return self._SdkAppId
|
12946
|
+
|
12947
|
+
@SdkAppId.setter
|
12948
|
+
def SdkAppId(self, SdkAppId):
|
12949
|
+
self._SdkAppId = SdkAppId
|
12950
|
+
|
12951
|
+
@property
|
12952
|
+
def RoomId(self):
|
12953
|
+
"""房间ID
|
12954
|
+
:rtype: int
|
12955
|
+
"""
|
12956
|
+
return self._RoomId
|
12957
|
+
|
12958
|
+
@RoomId.setter
|
12959
|
+
def RoomId(self, RoomId):
|
12960
|
+
self._RoomId = RoomId
|
12961
|
+
|
12962
|
+
@property
|
12963
|
+
def TaskId(self):
|
12964
|
+
"""任务ID
|
12965
|
+
:rtype: str
|
12966
|
+
"""
|
12967
|
+
return self._TaskId
|
12968
|
+
|
12969
|
+
@TaskId.setter
|
12970
|
+
def TaskId(self, TaskId):
|
12971
|
+
self._TaskId = TaskId
|
12972
|
+
|
12973
|
+
|
12974
|
+
def _deserialize(self, params):
|
12975
|
+
self._SdkAppId = params.get("SdkAppId")
|
12976
|
+
self._RoomId = params.get("RoomId")
|
12977
|
+
self._TaskId = params.get("TaskId")
|
12978
|
+
memeber_set = set(params.keys())
|
12979
|
+
for name, value in vars(self).items():
|
12980
|
+
property_name = name[1:]
|
12981
|
+
if property_name in memeber_set:
|
12982
|
+
memeber_set.remove(property_name)
|
12983
|
+
if len(memeber_set) > 0:
|
12984
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
12985
|
+
|
12986
|
+
|
12987
|
+
|
12988
|
+
class StopRecordResponse(AbstractModel):
|
12989
|
+
"""StopRecord返回参数结构体
|
12990
|
+
|
12991
|
+
"""
|
12992
|
+
|
12993
|
+
def __init__(self):
|
12994
|
+
r"""
|
12995
|
+
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
12996
|
+
:type RequestId: str
|
12997
|
+
"""
|
12998
|
+
self._RequestId = None
|
12999
|
+
|
13000
|
+
@property
|
13001
|
+
def RequestId(self):
|
13002
|
+
"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
13003
|
+
:rtype: str
|
13004
|
+
"""
|
13005
|
+
return self._RequestId
|
13006
|
+
|
13007
|
+
@RequestId.setter
|
13008
|
+
def RequestId(self, RequestId):
|
13009
|
+
self._RequestId = RequestId
|
13010
|
+
|
13011
|
+
|
13012
|
+
def _deserialize(self, params):
|
13013
|
+
self._RequestId = params.get("RequestId")
|
13014
|
+
|
13015
|
+
|
12558
13016
|
class TextMarkConfig(AbstractModel):
|
12559
13017
|
"""文字水印配置
|
12560
13018
|
|
@@ -1756,10 +1756,10 @@ class CasterBriefInfo(AbstractModel):
|
|
1756
1756
|
注意:此字段可能返回 null,表示取不到有效值。
|
1757
1757
|
:type CreateTime: int
|
1758
1758
|
:param _Status: 导播台状态
|
1759
|
-
0
|
1760
|
-
1
|
1761
|
-
2
|
1762
|
-
3
|
1759
|
+
0:停止状态,无预监,无主监
|
1760
|
+
1:无预监,有主监
|
1761
|
+
2:有预监,无主监
|
1762
|
+
3:有预监,有主监
|
1763
1763
|
注意:此字段可能返回 null,表示取不到有效值。
|
1764
1764
|
:type Status: int
|
1765
1765
|
:param _ExpireTime: 导播台的过期时间,值为-1或unix时间戳。
|
@@ -1855,10 +1855,10 @@ class CasterBriefInfo(AbstractModel):
|
|
1855
1855
|
@property
|
1856
1856
|
def Status(self):
|
1857
1857
|
"""导播台状态
|
1858
|
-
0
|
1859
|
-
1
|
1860
|
-
2
|
1861
|
-
3
|
1858
|
+
0:停止状态,无预监,无主监
|
1859
|
+
1:无预监,有主监
|
1860
|
+
2:有预监,无主监
|
1861
|
+
3:有预监,有主监
|
1862
1862
|
注意:此字段可能返回 null,表示取不到有效值。
|
1863
1863
|
:rtype: int
|
1864
1864
|
"""
|
@@ -30834,18 +30834,20 @@ class PrometheusClusterAgentBasic(AbstractModel):
|
|
30834
30834
|
:type Region: str
|
30835
30835
|
:param _ClusterType: 集群类型。可填入tke、eks、tkeedge、tdcc,分别代表标准集群、弹性集群、边缘集群、注册集群
|
30836
30836
|
:type ClusterType: str
|
30837
|
-
:param _ClusterId: 集群ID
|
30837
|
+
:param _ClusterId: 集群 ID
|
30838
30838
|
:type ClusterId: str
|
30839
|
-
:param _EnableExternal: 是否开启公网CLB
|
30839
|
+
:param _EnableExternal: 是否开启公网 CLB
|
30840
30840
|
:type EnableExternal: bool
|
30841
|
-
:param _InClusterPodConfig: 集群内部署组件的pod配置
|
30841
|
+
:param _InClusterPodConfig: 集群内部署组件的pod 配置
|
30842
30842
|
:type InClusterPodConfig: :class:`tencentcloud.monitor.v20180724.models.PrometheusClusterAgentPodConfig`
|
30843
30843
|
:param _ExternalLabels: 该集群采集的所有指标都会带上这些labels
|
30844
30844
|
:type ExternalLabels: list of Label
|
30845
|
-
:param _NotInstallBasicScrape:
|
30845
|
+
:param _NotInstallBasicScrape: 是否安装默认采集 exporter 和采集配置
|
30846
30846
|
:type NotInstallBasicScrape: bool
|
30847
|
-
:param _NotScrape:
|
30847
|
+
:param _NotScrape: 是否安装采集配置,true 只安装采集 exporter 不会安装采集配置,false 会同时安装采集配置
|
30848
30848
|
:type NotScrape: bool
|
30849
|
+
:param _DropAll: 是否丢弃所有指标,true 代表丢弃所有指标,false 代表采集默认指标
|
30850
|
+
:type DropAll: bool
|
30849
30851
|
:param _OpenDefaultRecord: 是否开启默认预聚合规则
|
30850
30852
|
:type OpenDefaultRecord: bool
|
30851
30853
|
"""
|
@@ -30857,6 +30859,7 @@ class PrometheusClusterAgentBasic(AbstractModel):
|
|
30857
30859
|
self._ExternalLabels = None
|
30858
30860
|
self._NotInstallBasicScrape = None
|
30859
30861
|
self._NotScrape = None
|
30862
|
+
self._DropAll = None
|
30860
30863
|
self._OpenDefaultRecord = None
|
30861
30864
|
|
30862
30865
|
@property
|
@@ -30883,7 +30886,7 @@ class PrometheusClusterAgentBasic(AbstractModel):
|
|
30883
30886
|
|
30884
30887
|
@property
|
30885
30888
|
def ClusterId(self):
|
30886
|
-
"""集群ID
|
30889
|
+
"""集群 ID
|
30887
30890
|
:rtype: str
|
30888
30891
|
"""
|
30889
30892
|
return self._ClusterId
|
@@ -30894,7 +30897,7 @@ class PrometheusClusterAgentBasic(AbstractModel):
|
|
30894
30897
|
|
30895
30898
|
@property
|
30896
30899
|
def EnableExternal(self):
|
30897
|
-
"""是否开启公网CLB
|
30900
|
+
"""是否开启公网 CLB
|
30898
30901
|
:rtype: bool
|
30899
30902
|
"""
|
30900
30903
|
return self._EnableExternal
|
@@ -30905,7 +30908,7 @@ class PrometheusClusterAgentBasic(AbstractModel):
|
|
30905
30908
|
|
30906
30909
|
@property
|
30907
30910
|
def InClusterPodConfig(self):
|
30908
|
-
"""集群内部署组件的pod配置
|
30911
|
+
"""集群内部署组件的pod 配置
|
30909
30912
|
:rtype: :class:`tencentcloud.monitor.v20180724.models.PrometheusClusterAgentPodConfig`
|
30910
30913
|
"""
|
30911
30914
|
return self._InClusterPodConfig
|
@@ -30927,7 +30930,7 @@ class PrometheusClusterAgentBasic(AbstractModel):
|
|
30927
30930
|
|
30928
30931
|
@property
|
30929
30932
|
def NotInstallBasicScrape(self):
|
30930
|
-
"""
|
30933
|
+
"""是否安装默认采集 exporter 和采集配置
|
30931
30934
|
:rtype: bool
|
30932
30935
|
"""
|
30933
30936
|
return self._NotInstallBasicScrape
|
@@ -30938,7 +30941,7 @@ class PrometheusClusterAgentBasic(AbstractModel):
|
|
30938
30941
|
|
30939
30942
|
@property
|
30940
30943
|
def NotScrape(self):
|
30941
|
-
"""
|
30944
|
+
"""是否安装采集配置,true 只安装采集 exporter 不会安装采集配置,false 会同时安装采集配置
|
30942
30945
|
:rtype: bool
|
30943
30946
|
"""
|
30944
30947
|
return self._NotScrape
|
@@ -30947,6 +30950,17 @@ class PrometheusClusterAgentBasic(AbstractModel):
|
|
30947
30950
|
def NotScrape(self, NotScrape):
|
30948
30951
|
self._NotScrape = NotScrape
|
30949
30952
|
|
30953
|
+
@property
|
30954
|
+
def DropAll(self):
|
30955
|
+
"""是否丢弃所有指标,true 代表丢弃所有指标,false 代表采集默认指标
|
30956
|
+
:rtype: bool
|
30957
|
+
"""
|
30958
|
+
return self._DropAll
|
30959
|
+
|
30960
|
+
@DropAll.setter
|
30961
|
+
def DropAll(self, DropAll):
|
30962
|
+
self._DropAll = DropAll
|
30963
|
+
|
30950
30964
|
@property
|
30951
30965
|
def OpenDefaultRecord(self):
|
30952
30966
|
"""是否开启默认预聚合规则
|
@@ -30975,6 +30989,7 @@ class PrometheusClusterAgentBasic(AbstractModel):
|
|
30975
30989
|
self._ExternalLabels.append(obj)
|
30976
30990
|
self._NotInstallBasicScrape = params.get("NotInstallBasicScrape")
|
30977
30991
|
self._NotScrape = params.get("NotScrape")
|
30992
|
+
self._DropAll = params.get("DropAll")
|
30978
30993
|
self._OpenDefaultRecord = params.get("OpenDefaultRecord")
|
30979
30994
|
memeber_set = set(params.keys())
|
30980
30995
|
for name, value in vars(self).items():
|