tencentcloud-sdk-python-intl-en 3.0.1092__py2.py3-none-any.whl → 3.0.1094__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-intl-en might be problematic. Click here for more details.
- tencentcloud/__init__.py +1 -1
- tencentcloud/cdn/v20180606/models.py +88 -88
- tencentcloud/csip/v20221121/models.py +15 -0
- tencentcloud/cvm/v20170312/models.py +76 -80
- tencentcloud/cwp/v20180228/cwp_client.py +18 -56
- tencentcloud/cwp/v20180228/models.py +35 -291
- tencentcloud/faceid/v20180301/models.py +4 -4
- tencentcloud/kms/v20190118/kms_client.py +1 -1
- tencentcloud/kms/v20190118/models.py +2 -2
- tencentcloud/mdl/v20200326/models.py +70 -0
- tencentcloud/ssm/v20190923/models.py +2 -2
- tencentcloud/tcss/v20201101/models.py +698 -674
- tencentcloud/tcss/v20201101/tcss_client.py +18 -6
- {tencentcloud_sdk_python_intl_en-3.0.1092.dist-info → tencentcloud_sdk_python_intl_en-3.0.1094.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python_intl_en-3.0.1092.dist-info → tencentcloud_sdk_python_intl_en-3.0.1094.dist-info}/RECORD +17 -17
- {tencentcloud_sdk_python_intl_en-3.0.1092.dist-info → tencentcloud_sdk_python_intl_en-3.0.1094.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python_intl_en-3.0.1092.dist-info → tencentcloud_sdk_python_intl_en-3.0.1094.dist-info}/top_level.txt +0 -0
|
@@ -16402,102 +16402,6 @@ class ClearLocalStorageResponse(AbstractModel):
|
|
|
16402
16402
|
self._RequestId = params.get("RequestId")
|
|
16403
16403
|
|
|
16404
16404
|
|
|
16405
|
-
class CloudProtectService(AbstractModel):
|
|
16406
|
-
"""
|
|
16407
|
-
|
|
16408
|
-
"""
|
|
16409
|
-
|
|
16410
|
-
def __init__(self):
|
|
16411
|
-
r"""
|
|
16412
|
-
:param _ResourceId: Resource ID
|
|
16413
|
-
:type ResourceId: str
|
|
16414
|
-
:param _Type: Type: new purchase in this case
|
|
16415
|
-
:type Type: str
|
|
16416
|
-
:param _Config: Configuration: information of purchased configuration
|
|
16417
|
-
:type Config: str
|
|
16418
|
-
:param _ServiceName: Service name
|
|
16419
|
-
:type ServiceName: str
|
|
16420
|
-
:param _BeginTime: Time of purchase
|
|
16421
|
-
:type BeginTime: str
|
|
16422
|
-
"""
|
|
16423
|
-
self._ResourceId = None
|
|
16424
|
-
self._Type = None
|
|
16425
|
-
self._Config = None
|
|
16426
|
-
self._ServiceName = None
|
|
16427
|
-
self._BeginTime = None
|
|
16428
|
-
|
|
16429
|
-
@property
|
|
16430
|
-
def ResourceId(self):
|
|
16431
|
-
"""Resource ID
|
|
16432
|
-
:rtype: str
|
|
16433
|
-
"""
|
|
16434
|
-
return self._ResourceId
|
|
16435
|
-
|
|
16436
|
-
@ResourceId.setter
|
|
16437
|
-
def ResourceId(self, ResourceId):
|
|
16438
|
-
self._ResourceId = ResourceId
|
|
16439
|
-
|
|
16440
|
-
@property
|
|
16441
|
-
def Type(self):
|
|
16442
|
-
"""Type: new purchase in this case
|
|
16443
|
-
:rtype: str
|
|
16444
|
-
"""
|
|
16445
|
-
return self._Type
|
|
16446
|
-
|
|
16447
|
-
@Type.setter
|
|
16448
|
-
def Type(self, Type):
|
|
16449
|
-
self._Type = Type
|
|
16450
|
-
|
|
16451
|
-
@property
|
|
16452
|
-
def Config(self):
|
|
16453
|
-
"""Configuration: information of purchased configuration
|
|
16454
|
-
:rtype: str
|
|
16455
|
-
"""
|
|
16456
|
-
return self._Config
|
|
16457
|
-
|
|
16458
|
-
@Config.setter
|
|
16459
|
-
def Config(self, Config):
|
|
16460
|
-
self._Config = Config
|
|
16461
|
-
|
|
16462
|
-
@property
|
|
16463
|
-
def ServiceName(self):
|
|
16464
|
-
"""Service name
|
|
16465
|
-
:rtype: str
|
|
16466
|
-
"""
|
|
16467
|
-
return self._ServiceName
|
|
16468
|
-
|
|
16469
|
-
@ServiceName.setter
|
|
16470
|
-
def ServiceName(self, ServiceName):
|
|
16471
|
-
self._ServiceName = ServiceName
|
|
16472
|
-
|
|
16473
|
-
@property
|
|
16474
|
-
def BeginTime(self):
|
|
16475
|
-
"""Time of purchase
|
|
16476
|
-
:rtype: str
|
|
16477
|
-
"""
|
|
16478
|
-
return self._BeginTime
|
|
16479
|
-
|
|
16480
|
-
@BeginTime.setter
|
|
16481
|
-
def BeginTime(self, BeginTime):
|
|
16482
|
-
self._BeginTime = BeginTime
|
|
16483
|
-
|
|
16484
|
-
|
|
16485
|
-
def _deserialize(self, params):
|
|
16486
|
-
self._ResourceId = params.get("ResourceId")
|
|
16487
|
-
self._Type = params.get("Type")
|
|
16488
|
-
self._Config = params.get("Config")
|
|
16489
|
-
self._ServiceName = params.get("ServiceName")
|
|
16490
|
-
self._BeginTime = params.get("BeginTime")
|
|
16491
|
-
memeber_set = set(params.keys())
|
|
16492
|
-
for name, value in vars(self).items():
|
|
16493
|
-
property_name = name[1:]
|
|
16494
|
-
if property_name in memeber_set:
|
|
16495
|
-
memeber_set.remove(property_name)
|
|
16496
|
-
if len(memeber_set) > 0:
|
|
16497
|
-
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
16498
|
-
|
|
16499
|
-
|
|
16500
|
-
|
|
16501
16405
|
class ComponentStatistics(AbstractModel):
|
|
16502
16406
|
"""Component statistics
|
|
16503
16407
|
|
|
@@ -17017,85 +16921,6 @@ class CreateBuyBindTaskResponse(AbstractModel):
|
|
|
17017
16921
|
self._RequestId = params.get("RequestId")
|
|
17018
16922
|
|
|
17019
16923
|
|
|
17020
|
-
class CreateCloudProtectServiceOrderRecordRequest(AbstractModel):
|
|
17021
|
-
"""CreateCloudProtectServiceOrderRecord request structure.
|
|
17022
|
-
|
|
17023
|
-
"""
|
|
17024
|
-
|
|
17025
|
-
def __init__(self):
|
|
17026
|
-
r"""
|
|
17027
|
-
:param _ResourceIds: Resource ID corresponding to cloud escort service
|
|
17028
|
-
:type ResourceIds: list of str
|
|
17029
|
-
"""
|
|
17030
|
-
self._ResourceIds = None
|
|
17031
|
-
|
|
17032
|
-
@property
|
|
17033
|
-
def ResourceIds(self):
|
|
17034
|
-
"""Resource ID corresponding to cloud escort service
|
|
17035
|
-
:rtype: list of str
|
|
17036
|
-
"""
|
|
17037
|
-
return self._ResourceIds
|
|
17038
|
-
|
|
17039
|
-
@ResourceIds.setter
|
|
17040
|
-
def ResourceIds(self, ResourceIds):
|
|
17041
|
-
self._ResourceIds = ResourceIds
|
|
17042
|
-
|
|
17043
|
-
|
|
17044
|
-
def _deserialize(self, params):
|
|
17045
|
-
self._ResourceIds = params.get("ResourceIds")
|
|
17046
|
-
memeber_set = set(params.keys())
|
|
17047
|
-
for name, value in vars(self).items():
|
|
17048
|
-
property_name = name[1:]
|
|
17049
|
-
if property_name in memeber_set:
|
|
17050
|
-
memeber_set.remove(property_name)
|
|
17051
|
-
if len(memeber_set) > 0:
|
|
17052
|
-
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
17053
|
-
|
|
17054
|
-
|
|
17055
|
-
|
|
17056
|
-
class CreateCloudProtectServiceOrderRecordResponse(AbstractModel):
|
|
17057
|
-
"""CreateCloudProtectServiceOrderRecord response structure.
|
|
17058
|
-
|
|
17059
|
-
"""
|
|
17060
|
-
|
|
17061
|
-
def __init__(self):
|
|
17062
|
-
r"""
|
|
17063
|
-
:param _Success: ID of the successfully received resource
|
|
17064
|
-
:type Success: list of str
|
|
17065
|
-
:param _RequestId: The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
17066
|
-
:type RequestId: str
|
|
17067
|
-
"""
|
|
17068
|
-
self._Success = None
|
|
17069
|
-
self._RequestId = None
|
|
17070
|
-
|
|
17071
|
-
@property
|
|
17072
|
-
def Success(self):
|
|
17073
|
-
"""ID of the successfully received resource
|
|
17074
|
-
:rtype: list of str
|
|
17075
|
-
"""
|
|
17076
|
-
return self._Success
|
|
17077
|
-
|
|
17078
|
-
@Success.setter
|
|
17079
|
-
def Success(self, Success):
|
|
17080
|
-
self._Success = Success
|
|
17081
|
-
|
|
17082
|
-
@property
|
|
17083
|
-
def RequestId(self):
|
|
17084
|
-
"""The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
17085
|
-
:rtype: str
|
|
17086
|
-
"""
|
|
17087
|
-
return self._RequestId
|
|
17088
|
-
|
|
17089
|
-
@RequestId.setter
|
|
17090
|
-
def RequestId(self, RequestId):
|
|
17091
|
-
self._RequestId = RequestId
|
|
17092
|
-
|
|
17093
|
-
|
|
17094
|
-
def _deserialize(self, params):
|
|
17095
|
-
self._Success = params.get("Success")
|
|
17096
|
-
self._RequestId = params.get("RequestId")
|
|
17097
|
-
|
|
17098
|
-
|
|
17099
16924
|
class CreateEmergencyVulScanRequest(AbstractModel):
|
|
17100
16925
|
"""CreateEmergencyVulScan request structure.
|
|
17101
16926
|
|
|
@@ -34939,107 +34764,6 @@ class DescribeClientExceptionResponse(AbstractModel):
|
|
|
34939
34764
|
self._RequestId = params.get("RequestId")
|
|
34940
34765
|
|
|
34941
34766
|
|
|
34942
|
-
class DescribeCloudProtectServiceOrderListRequest(AbstractModel):
|
|
34943
|
-
"""DescribeCloudProtectServiceOrderList request structure.
|
|
34944
|
-
|
|
34945
|
-
"""
|
|
34946
|
-
|
|
34947
|
-
def __init__(self):
|
|
34948
|
-
r"""
|
|
34949
|
-
:param _Order: Sorting field, which currently supports BeginTime
|
|
34950
|
-
:type Order: str
|
|
34951
|
-
:param _By: Sorting method, which currently supports:
|
|
34952
|
-
ASC for ascending order; DESC for descending order
|
|
34953
|
-
:type By: str
|
|
34954
|
-
"""
|
|
34955
|
-
self._Order = None
|
|
34956
|
-
self._By = None
|
|
34957
|
-
|
|
34958
|
-
@property
|
|
34959
|
-
def Order(self):
|
|
34960
|
-
"""Sorting field, which currently supports BeginTime
|
|
34961
|
-
:rtype: str
|
|
34962
|
-
"""
|
|
34963
|
-
return self._Order
|
|
34964
|
-
|
|
34965
|
-
@Order.setter
|
|
34966
|
-
def Order(self, Order):
|
|
34967
|
-
self._Order = Order
|
|
34968
|
-
|
|
34969
|
-
@property
|
|
34970
|
-
def By(self):
|
|
34971
|
-
"""Sorting method, which currently supports:
|
|
34972
|
-
ASC for ascending order; DESC for descending order
|
|
34973
|
-
:rtype: str
|
|
34974
|
-
"""
|
|
34975
|
-
return self._By
|
|
34976
|
-
|
|
34977
|
-
@By.setter
|
|
34978
|
-
def By(self, By):
|
|
34979
|
-
self._By = By
|
|
34980
|
-
|
|
34981
|
-
|
|
34982
|
-
def _deserialize(self, params):
|
|
34983
|
-
self._Order = params.get("Order")
|
|
34984
|
-
self._By = params.get("By")
|
|
34985
|
-
memeber_set = set(params.keys())
|
|
34986
|
-
for name, value in vars(self).items():
|
|
34987
|
-
property_name = name[1:]
|
|
34988
|
-
if property_name in memeber_set:
|
|
34989
|
-
memeber_set.remove(property_name)
|
|
34990
|
-
if len(memeber_set) > 0:
|
|
34991
|
-
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
34992
|
-
|
|
34993
|
-
|
|
34994
|
-
|
|
34995
|
-
class DescribeCloudProtectServiceOrderListResponse(AbstractModel):
|
|
34996
|
-
"""DescribeCloudProtectServiceOrderList response structure.
|
|
34997
|
-
|
|
34998
|
-
"""
|
|
34999
|
-
|
|
35000
|
-
def __init__(self):
|
|
35001
|
-
r"""
|
|
35002
|
-
:param _Data: Cloud escort order list
|
|
35003
|
-
:type Data: list of CloudProtectService
|
|
35004
|
-
:param _RequestId: The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
35005
|
-
:type RequestId: str
|
|
35006
|
-
"""
|
|
35007
|
-
self._Data = None
|
|
35008
|
-
self._RequestId = None
|
|
35009
|
-
|
|
35010
|
-
@property
|
|
35011
|
-
def Data(self):
|
|
35012
|
-
"""Cloud escort order list
|
|
35013
|
-
:rtype: list of CloudProtectService
|
|
35014
|
-
"""
|
|
35015
|
-
return self._Data
|
|
35016
|
-
|
|
35017
|
-
@Data.setter
|
|
35018
|
-
def Data(self, Data):
|
|
35019
|
-
self._Data = Data
|
|
35020
|
-
|
|
35021
|
-
@property
|
|
35022
|
-
def RequestId(self):
|
|
35023
|
-
"""The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
35024
|
-
:rtype: str
|
|
35025
|
-
"""
|
|
35026
|
-
return self._RequestId
|
|
35027
|
-
|
|
35028
|
-
@RequestId.setter
|
|
35029
|
-
def RequestId(self, RequestId):
|
|
35030
|
-
self._RequestId = RequestId
|
|
35031
|
-
|
|
35032
|
-
|
|
35033
|
-
def _deserialize(self, params):
|
|
35034
|
-
if params.get("Data") is not None:
|
|
35035
|
-
self._Data = []
|
|
35036
|
-
for item in params.get("Data"):
|
|
35037
|
-
obj = CloudProtectService()
|
|
35038
|
-
obj._deserialize(item)
|
|
35039
|
-
self._Data.append(obj)
|
|
35040
|
-
self._RequestId = params.get("RequestId")
|
|
35041
|
-
|
|
35042
|
-
|
|
35043
34767
|
class DescribeComponentStatisticsRequest(AbstractModel):
|
|
35044
34768
|
"""DescribeComponentStatistics request structure.
|
|
35045
34769
|
|
|
@@ -41986,6 +41710,8 @@ class DescribeMachineGeneralResponse(AbstractModel):
|
|
|
41986
41710
|
|
|
41987
41711
|
@property
|
|
41988
41712
|
def TencentCloudMachineCnt(self):
|
|
41713
|
+
warnings.warn("parameter `TencentCloudMachineCnt` is deprecated", DeprecationWarning)
|
|
41714
|
+
|
|
41989
41715
|
"""Number of Tencent Cloud machines
|
|
41990
41716
|
:rtype: int
|
|
41991
41717
|
"""
|
|
@@ -41993,10 +41719,14 @@ class DescribeMachineGeneralResponse(AbstractModel):
|
|
|
41993
41719
|
|
|
41994
41720
|
@TencentCloudMachineCnt.setter
|
|
41995
41721
|
def TencentCloudMachineCnt(self, TencentCloudMachineCnt):
|
|
41722
|
+
warnings.warn("parameter `TencentCloudMachineCnt` is deprecated", DeprecationWarning)
|
|
41723
|
+
|
|
41996
41724
|
self._TencentCloudMachineCnt = TencentCloudMachineCnt
|
|
41997
41725
|
|
|
41998
41726
|
@property
|
|
41999
41727
|
def AliCloudMachineCnt(self):
|
|
41728
|
+
warnings.warn("parameter `AliCloudMachineCnt` is deprecated", DeprecationWarning)
|
|
41729
|
+
|
|
42000
41730
|
"""Number of Alibaba Cloud machines
|
|
42001
41731
|
:rtype: int
|
|
42002
41732
|
"""
|
|
@@ -42004,10 +41734,14 @@ class DescribeMachineGeneralResponse(AbstractModel):
|
|
|
42004
41734
|
|
|
42005
41735
|
@AliCloudMachineCnt.setter
|
|
42006
41736
|
def AliCloudMachineCnt(self, AliCloudMachineCnt):
|
|
41737
|
+
warnings.warn("parameter `AliCloudMachineCnt` is deprecated", DeprecationWarning)
|
|
41738
|
+
|
|
42007
41739
|
self._AliCloudMachineCnt = AliCloudMachineCnt
|
|
42008
41740
|
|
|
42009
41741
|
@property
|
|
42010
41742
|
def BaiduCloudMachineCnt(self):
|
|
41743
|
+
warnings.warn("parameter `BaiduCloudMachineCnt` is deprecated", DeprecationWarning)
|
|
41744
|
+
|
|
42011
41745
|
"""Number of Baidu Cloud machines
|
|
42012
41746
|
:rtype: int
|
|
42013
41747
|
"""
|
|
@@ -42015,10 +41749,14 @@ class DescribeMachineGeneralResponse(AbstractModel):
|
|
|
42015
41749
|
|
|
42016
41750
|
@BaiduCloudMachineCnt.setter
|
|
42017
41751
|
def BaiduCloudMachineCnt(self, BaiduCloudMachineCnt):
|
|
41752
|
+
warnings.warn("parameter `BaiduCloudMachineCnt` is deprecated", DeprecationWarning)
|
|
41753
|
+
|
|
42018
41754
|
self._BaiduCloudMachineCnt = BaiduCloudMachineCnt
|
|
42019
41755
|
|
|
42020
41756
|
@property
|
|
42021
41757
|
def IDCMachineCnt(self):
|
|
41758
|
+
warnings.warn("parameter `IDCMachineCnt` is deprecated", DeprecationWarning)
|
|
41759
|
+
|
|
42022
41760
|
"""Number of IDC machines
|
|
42023
41761
|
:rtype: int
|
|
42024
41762
|
"""
|
|
@@ -42026,10 +41764,14 @@ class DescribeMachineGeneralResponse(AbstractModel):
|
|
|
42026
41764
|
|
|
42027
41765
|
@IDCMachineCnt.setter
|
|
42028
41766
|
def IDCMachineCnt(self, IDCMachineCnt):
|
|
41767
|
+
warnings.warn("parameter `IDCMachineCnt` is deprecated", DeprecationWarning)
|
|
41768
|
+
|
|
42029
41769
|
self._IDCMachineCnt = IDCMachineCnt
|
|
42030
41770
|
|
|
42031
41771
|
@property
|
|
42032
41772
|
def OtherCloudMachineCnt(self):
|
|
41773
|
+
warnings.warn("parameter `OtherCloudMachineCnt` is deprecated", DeprecationWarning)
|
|
41774
|
+
|
|
42033
41775
|
"""Number of machines from other cloud service vendors
|
|
42034
41776
|
:rtype: int
|
|
42035
41777
|
"""
|
|
@@ -42037,6 +41779,8 @@ class DescribeMachineGeneralResponse(AbstractModel):
|
|
|
42037
41779
|
|
|
42038
41780
|
@OtherCloudMachineCnt.setter
|
|
42039
41781
|
def OtherCloudMachineCnt(self, OtherCloudMachineCnt):
|
|
41782
|
+
warnings.warn("parameter `OtherCloudMachineCnt` is deprecated", DeprecationWarning)
|
|
41783
|
+
|
|
42040
41784
|
self._OtherCloudMachineCnt = OtherCloudMachineCnt
|
|
42041
41785
|
|
|
42042
41786
|
@property
|
|
@@ -76428,24 +76172,13 @@ class ModifyJavaMemShellsStatusRequest(AbstractModel):
|
|
|
76428
76172
|
|
|
76429
76173
|
def __init__(self):
|
|
76430
76174
|
r"""
|
|
76431
|
-
:param _Ids: Event ID Array
|
|
76432
|
-
:type Ids: list of int non-negative
|
|
76433
76175
|
:param _Status: Target Processing Status: 0 - Pending, 1 - Allowlisted, 2 - Deleted, 3 - Ignored, 4 - Manually Processed
|
|
76434
76176
|
:type Status: int
|
|
76177
|
+
:param _Ids: Event ID Array
|
|
76178
|
+
:type Ids: list of int non-negative
|
|
76435
76179
|
"""
|
|
76436
|
-
self._Ids = None
|
|
76437
76180
|
self._Status = None
|
|
76438
|
-
|
|
76439
|
-
@property
|
|
76440
|
-
def Ids(self):
|
|
76441
|
-
"""Event ID Array
|
|
76442
|
-
:rtype: list of int non-negative
|
|
76443
|
-
"""
|
|
76444
|
-
return self._Ids
|
|
76445
|
-
|
|
76446
|
-
@Ids.setter
|
|
76447
|
-
def Ids(self, Ids):
|
|
76448
|
-
self._Ids = Ids
|
|
76181
|
+
self._Ids = None
|
|
76449
76182
|
|
|
76450
76183
|
@property
|
|
76451
76184
|
def Status(self):
|
|
@@ -76458,10 +76191,21 @@ class ModifyJavaMemShellsStatusRequest(AbstractModel):
|
|
|
76458
76191
|
def Status(self, Status):
|
|
76459
76192
|
self._Status = Status
|
|
76460
76193
|
|
|
76194
|
+
@property
|
|
76195
|
+
def Ids(self):
|
|
76196
|
+
"""Event ID Array
|
|
76197
|
+
:rtype: list of int non-negative
|
|
76198
|
+
"""
|
|
76199
|
+
return self._Ids
|
|
76200
|
+
|
|
76201
|
+
@Ids.setter
|
|
76202
|
+
def Ids(self, Ids):
|
|
76203
|
+
self._Ids = Ids
|
|
76204
|
+
|
|
76461
76205
|
|
|
76462
76206
|
def _deserialize(self, params):
|
|
76463
|
-
self._Ids = params.get("Ids")
|
|
76464
76207
|
self._Status = params.get("Status")
|
|
76208
|
+
self._Ids = params.get("Ids")
|
|
76465
76209
|
memeber_set = set(params.keys())
|
|
76466
76210
|
for name, value in vars(self).items():
|
|
76467
76211
|
property_name = name[1:]
|
|
@@ -1863,8 +1863,8 @@ The size of videos data encoded by Base64 shall not exceed 8M, only mp4,avi,flv
|
|
|
1863
1863
|
Please use standard Base64 encoding (use = for padding). Refer to RFC4648 for encoding specifications.
|
|
1864
1864
|
Example values: "/9j/4AAQSk... (total length:61944)KiiK//2Q=="
|
|
1865
1865
|
:type VideoBase64: str
|
|
1866
|
-
:param _LivenessType: The liveness detection type. Valid values: `
|
|
1867
|
-
`
|
|
1866
|
+
:param _LivenessType: The liveness detection type. Valid values: `ACTION`, and `SILENT`.
|
|
1867
|
+
`ACTION`: Motion mode; `SILENT`: silent mode. Select one of them.
|
|
1868
1868
|
Example value: "SILENT"
|
|
1869
1869
|
:type LivenessType: str
|
|
1870
1870
|
:param _ValidateData: When the "LivenessType" parameter is "ACTION", it must be specified.
|
|
@@ -1915,8 +1915,8 @@ Example values: "/9j/4AAQSk... (total length:61944)KiiK//2Q=="
|
|
|
1915
1915
|
|
|
1916
1916
|
@property
|
|
1917
1917
|
def LivenessType(self):
|
|
1918
|
-
"""The liveness detection type. Valid values: `
|
|
1919
|
-
`
|
|
1918
|
+
"""The liveness detection type. Valid values: `ACTION`, and `SILENT`.
|
|
1919
|
+
`ACTION`: Motion mode; `SILENT`: silent mode. Select one of them.
|
|
1920
1920
|
Example value: "SILENT"
|
|
1921
1921
|
:rtype: str
|
|
1922
1922
|
"""
|
|
@@ -27,7 +27,7 @@ class KmsClient(AbstractClient):
|
|
|
27
27
|
|
|
28
28
|
|
|
29
29
|
def ArchiveKey(self, request):
|
|
30
|
-
"""This API is used to archive keys.
|
|
30
|
+
"""This API is used to archive keys.The archived keys can only be used for decryption but not encryption.
|
|
31
31
|
|
|
32
32
|
:param request: Request instance for ArchiveKey.
|
|
33
33
|
:type request: :class:`tencentcloud.kms.v20190118.models.ArchiveKeyRequest`
|
|
@@ -112,14 +112,14 @@ class ArchiveKeyResponse(AbstractModel):
|
|
|
112
112
|
|
|
113
113
|
def __init__(self):
|
|
114
114
|
r"""
|
|
115
|
-
:param _RequestId: The unique request ID,
|
|
115
|
+
:param _RequestId: The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
116
116
|
:type RequestId: str
|
|
117
117
|
"""
|
|
118
118
|
self._RequestId = None
|
|
119
119
|
|
|
120
120
|
@property
|
|
121
121
|
def RequestId(self):
|
|
122
|
-
"""The unique request ID,
|
|
122
|
+
"""The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
123
123
|
:rtype: str
|
|
124
124
|
"""
|
|
125
125
|
return self._RequestId
|
|
@@ -100,6 +100,8 @@ Valid values: `6000`, `7000`, `8000`, `10000`, `12000`, `14000`, `16000`, `20000
|
|
|
100
100
|
:type GopSize: int
|
|
101
101
|
:param _GopSizeUnits: Keyframe units, only support MILLISECONDS (milliseconds).
|
|
102
102
|
:type GopSizeUnits: str
|
|
103
|
+
:param _ColorSpaceSettings: Color space setting.
|
|
104
|
+
:type ColorSpaceSettings: :class:`tencentcloud.mdl.v20200326.models.ColorSpaceSetting`
|
|
103
105
|
"""
|
|
104
106
|
self._Name = None
|
|
105
107
|
self._NeedVideo = None
|
|
@@ -135,6 +137,7 @@ Valid values: `6000`, `7000`, `8000`, `10000`, `12000`, `14000`, `16000`, `20000
|
|
|
135
137
|
self._VideoEnhanceSettings = None
|
|
136
138
|
self._GopSize = None
|
|
137
139
|
self._GopSizeUnits = None
|
|
140
|
+
self._ColorSpaceSettings = None
|
|
138
141
|
|
|
139
142
|
@property
|
|
140
143
|
def Name(self):
|
|
@@ -517,6 +520,17 @@ Valid values: `6000`, `7000`, `8000`, `10000`, `12000`, `14000`, `16000`, `20000
|
|
|
517
520
|
def GopSizeUnits(self, GopSizeUnits):
|
|
518
521
|
self._GopSizeUnits = GopSizeUnits
|
|
519
522
|
|
|
523
|
+
@property
|
|
524
|
+
def ColorSpaceSettings(self):
|
|
525
|
+
"""Color space setting.
|
|
526
|
+
:rtype: :class:`tencentcloud.mdl.v20200326.models.ColorSpaceSetting`
|
|
527
|
+
"""
|
|
528
|
+
return self._ColorSpaceSettings
|
|
529
|
+
|
|
530
|
+
@ColorSpaceSettings.setter
|
|
531
|
+
def ColorSpaceSettings(self, ColorSpaceSettings):
|
|
532
|
+
self._ColorSpaceSettings = ColorSpaceSettings
|
|
533
|
+
|
|
520
534
|
|
|
521
535
|
def _deserialize(self, params):
|
|
522
536
|
self._Name = params.get("Name")
|
|
@@ -571,6 +585,9 @@ Valid values: `6000`, `7000`, `8000`, `10000`, `12000`, `14000`, `16000`, `20000
|
|
|
571
585
|
self._VideoEnhanceSettings.append(obj)
|
|
572
586
|
self._GopSize = params.get("GopSize")
|
|
573
587
|
self._GopSizeUnits = params.get("GopSizeUnits")
|
|
588
|
+
if params.get("ColorSpaceSettings") is not None:
|
|
589
|
+
self._ColorSpaceSettings = ColorSpaceSetting()
|
|
590
|
+
self._ColorSpaceSettings._deserialize(params.get("ColorSpaceSettings"))
|
|
574
591
|
memeber_set = set(params.keys())
|
|
575
592
|
for name, value in vars(self).items():
|
|
576
593
|
property_name = name[1:]
|
|
@@ -1769,6 +1786,42 @@ This time is available only after the alarm ends.
|
|
|
1769
1786
|
|
|
1770
1787
|
|
|
1771
1788
|
|
|
1789
|
+
class ColorSpaceSetting(AbstractModel):
|
|
1790
|
+
"""Color space setting.
|
|
1791
|
+
|
|
1792
|
+
"""
|
|
1793
|
+
|
|
1794
|
+
def __init__(self):
|
|
1795
|
+
r"""
|
|
1796
|
+
:param _ColorSpace: Color space, supports `PASSTHROUGH` (transparent transmission, only supports H265); optional.
|
|
1797
|
+
:type ColorSpace: str
|
|
1798
|
+
"""
|
|
1799
|
+
self._ColorSpace = None
|
|
1800
|
+
|
|
1801
|
+
@property
|
|
1802
|
+
def ColorSpace(self):
|
|
1803
|
+
"""Color space, supports `PASSTHROUGH` (transparent transmission, only supports H265); optional.
|
|
1804
|
+
:rtype: str
|
|
1805
|
+
"""
|
|
1806
|
+
return self._ColorSpace
|
|
1807
|
+
|
|
1808
|
+
@ColorSpace.setter
|
|
1809
|
+
def ColorSpace(self, ColorSpace):
|
|
1810
|
+
self._ColorSpace = ColorSpace
|
|
1811
|
+
|
|
1812
|
+
|
|
1813
|
+
def _deserialize(self, params):
|
|
1814
|
+
self._ColorSpace = params.get("ColorSpace")
|
|
1815
|
+
memeber_set = set(params.keys())
|
|
1816
|
+
for name, value in vars(self).items():
|
|
1817
|
+
property_name = name[1:]
|
|
1818
|
+
if property_name in memeber_set:
|
|
1819
|
+
memeber_set.remove(property_name)
|
|
1820
|
+
if len(memeber_set) > 0:
|
|
1821
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
1822
|
+
|
|
1823
|
+
|
|
1824
|
+
|
|
1772
1825
|
class CosSettings(AbstractModel):
|
|
1773
1826
|
"""Cos destination setting.
|
|
1774
1827
|
|
|
@@ -12141,6 +12194,8 @@ Note: This field may return `null`, indicating that no valid value was found.
|
|
|
12141
12194
|
:type VideoEnhanceEnabled: int
|
|
12142
12195
|
:param _VideoEnhanceSettings:
|
|
12143
12196
|
:type VideoEnhanceSettings: list of VideoEnhanceSetting
|
|
12197
|
+
:param _ColorSpaceSettings: Color space setting.
|
|
12198
|
+
:type ColorSpaceSettings: :class:`tencentcloud.mdl.v20200326.models.ColorSpaceSetting`
|
|
12144
12199
|
"""
|
|
12145
12200
|
self._Name = None
|
|
12146
12201
|
self._Vcodec = None
|
|
@@ -12162,6 +12217,7 @@ Note: This field may return `null`, indicating that no valid value was found.
|
|
|
12162
12217
|
self._VideoCodecDetails = None
|
|
12163
12218
|
self._VideoEnhanceEnabled = None
|
|
12164
12219
|
self._VideoEnhanceSettings = None
|
|
12220
|
+
self._ColorSpaceSettings = None
|
|
12165
12221
|
|
|
12166
12222
|
@property
|
|
12167
12223
|
def Name(self):
|
|
@@ -12384,6 +12440,17 @@ Note: This field may return `null`, indicating that no valid value was found.
|
|
|
12384
12440
|
def VideoEnhanceSettings(self, VideoEnhanceSettings):
|
|
12385
12441
|
self._VideoEnhanceSettings = VideoEnhanceSettings
|
|
12386
12442
|
|
|
12443
|
+
@property
|
|
12444
|
+
def ColorSpaceSettings(self):
|
|
12445
|
+
"""Color space setting.
|
|
12446
|
+
:rtype: :class:`tencentcloud.mdl.v20200326.models.ColorSpaceSetting`
|
|
12447
|
+
"""
|
|
12448
|
+
return self._ColorSpaceSettings
|
|
12449
|
+
|
|
12450
|
+
@ColorSpaceSettings.setter
|
|
12451
|
+
def ColorSpaceSettings(self, ColorSpaceSettings):
|
|
12452
|
+
self._ColorSpaceSettings = ColorSpaceSettings
|
|
12453
|
+
|
|
12387
12454
|
|
|
12388
12455
|
def _deserialize(self, params):
|
|
12389
12456
|
self._Name = params.get("Name")
|
|
@@ -12415,6 +12482,9 @@ Note: This field may return `null`, indicating that no valid value was found.
|
|
|
12415
12482
|
obj = VideoEnhanceSetting()
|
|
12416
12483
|
obj._deserialize(item)
|
|
12417
12484
|
self._VideoEnhanceSettings.append(obj)
|
|
12485
|
+
if params.get("ColorSpaceSettings") is not None:
|
|
12486
|
+
self._ColorSpaceSettings = ColorSpaceSetting()
|
|
12487
|
+
self._ColorSpaceSettings._deserialize(params.get("ColorSpaceSettings"))
|
|
12418
12488
|
memeber_set = set(params.keys())
|
|
12419
12489
|
for name, value in vars(self).items():
|
|
12420
12490
|
property_name = name[1:]
|
|
@@ -1960,7 +1960,7 @@ class GetRegionsResponse(AbstractModel):
|
|
|
1960
1960
|
r"""
|
|
1961
1961
|
:param _Regions: List of regions.
|
|
1962
1962
|
:type Regions: list of str
|
|
1963
|
-
:param _RequestId: The unique request ID,
|
|
1963
|
+
:param _RequestId: The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
1964
1964
|
:type RequestId: str
|
|
1965
1965
|
"""
|
|
1966
1966
|
self._Regions = None
|
|
@@ -1979,7 +1979,7 @@ class GetRegionsResponse(AbstractModel):
|
|
|
1979
1979
|
|
|
1980
1980
|
@property
|
|
1981
1981
|
def RequestId(self):
|
|
1982
|
-
"""The unique request ID,
|
|
1982
|
+
"""The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
1983
1983
|
:rtype: str
|
|
1984
1984
|
"""
|
|
1985
1985
|
return self._RequestId
|