tencentcloud-sdk-python-intl-en 3.0.1068__py2.py3-none-any.whl → 3.0.1070__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/aiart/v20221229/models.py +3 -3
- tencentcloud/antiddos/v20200309/antiddos_client.py +23 -0
- tencentcloud/antiddos/v20200309/models.py +141 -0
- tencentcloud/apigateway/v20180808/apigateway_client.py +0 -1
- tencentcloud/apigateway/v20180808/models.py +5 -5
- tencentcloud/autoscaling/v20180419/errorcodes.py +9 -0
- tencentcloud/autoscaling/v20180419/models.py +216 -70
- tencentcloud/billing/v20180709/billing_client.py +23 -0
- tencentcloud/billing/v20180709/errorcodes.py +6 -0
- tencentcloud/billing/v20180709/models.py +227 -0
- tencentcloud/captcha/v20190722/models.py +17 -5
- tencentcloud/ciam/v20220331/models.py +15 -15
- tencentcloud/cvm/v20170312/models.py +0 -1
- tencentcloud/mdl/v20200326/models.py +12 -0
- tencentcloud/ocr/v20181119/models.py +56 -0
- tencentcloud/ocr/v20181119/ocr_client.py +1 -0
- tencentcloud/tcss/v20201101/models.py +433 -1
- tencentcloud/tmt/v20180321/errorcodes.py +21 -0
- tencentcloud/tmt/v20180321/models.py +1 -1
- tencentcloud/trtc/v20190722/models.py +58 -0
- tencentcloud/trtc/v20190722/trtc_client.py +23 -0
- tencentcloud/vod/v20180717/models.py +896 -9
- tencentcloud/vpc/v20170312/errorcodes.py +1 -1
- tencentcloud/vpc/v20170312/models.py +76 -0
- tencentcloud/vpc/v20170312/vpc_client.py +23 -0
- {tencentcloud_sdk_python_intl_en-3.0.1068.dist-info → tencentcloud_sdk_python_intl_en-3.0.1070.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python_intl_en-3.0.1068.dist-info → tencentcloud_sdk_python_intl_en-3.0.1070.dist-info}/RECORD +30 -30
- {tencentcloud_sdk_python_intl_en-3.0.1068.dist-info → tencentcloud_sdk_python_intl_en-3.0.1070.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python_intl_en-3.0.1068.dist-info → tencentcloud_sdk_python_intl_en-3.0.1070.dist-info}/top_level.txt +0 -0
|
@@ -20490,6 +20490,86 @@ class DescribeAssetImageRegistryRegistryListRequest(AbstractModel):
|
|
|
20490
20490
|
|
|
20491
20491
|
"""
|
|
20492
20492
|
|
|
20493
|
+
def __init__(self):
|
|
20494
|
+
r"""
|
|
20495
|
+
:param _Limit: Number to return, default is 10, maximum is 100
|
|
20496
|
+
:type Limit: int
|
|
20497
|
+
:param _Offset: Offset, the default is 0
|
|
20498
|
+
:type Offset: int
|
|
20499
|
+
:param _Filters: Filter field IsAuthorized Whether to authorize. The value can be all, 0 unauthorized, 1 authorized
|
|
20500
|
+
:type Filters: list of AssetFilters
|
|
20501
|
+
:param _By: Sort field
|
|
20502
|
+
:type By: str
|
|
20503
|
+
:param _Order: Sort by asc, desc
|
|
20504
|
+
:type Order: str
|
|
20505
|
+
"""
|
|
20506
|
+
self._Limit = None
|
|
20507
|
+
self._Offset = None
|
|
20508
|
+
self._Filters = None
|
|
20509
|
+
self._By = None
|
|
20510
|
+
self._Order = None
|
|
20511
|
+
|
|
20512
|
+
@property
|
|
20513
|
+
def Limit(self):
|
|
20514
|
+
return self._Limit
|
|
20515
|
+
|
|
20516
|
+
@Limit.setter
|
|
20517
|
+
def Limit(self, Limit):
|
|
20518
|
+
self._Limit = Limit
|
|
20519
|
+
|
|
20520
|
+
@property
|
|
20521
|
+
def Offset(self):
|
|
20522
|
+
return self._Offset
|
|
20523
|
+
|
|
20524
|
+
@Offset.setter
|
|
20525
|
+
def Offset(self, Offset):
|
|
20526
|
+
self._Offset = Offset
|
|
20527
|
+
|
|
20528
|
+
@property
|
|
20529
|
+
def Filters(self):
|
|
20530
|
+
return self._Filters
|
|
20531
|
+
|
|
20532
|
+
@Filters.setter
|
|
20533
|
+
def Filters(self, Filters):
|
|
20534
|
+
self._Filters = Filters
|
|
20535
|
+
|
|
20536
|
+
@property
|
|
20537
|
+
def By(self):
|
|
20538
|
+
return self._By
|
|
20539
|
+
|
|
20540
|
+
@By.setter
|
|
20541
|
+
def By(self, By):
|
|
20542
|
+
self._By = By
|
|
20543
|
+
|
|
20544
|
+
@property
|
|
20545
|
+
def Order(self):
|
|
20546
|
+
return self._Order
|
|
20547
|
+
|
|
20548
|
+
@Order.setter
|
|
20549
|
+
def Order(self, Order):
|
|
20550
|
+
self._Order = Order
|
|
20551
|
+
|
|
20552
|
+
|
|
20553
|
+
def _deserialize(self, params):
|
|
20554
|
+
self._Limit = params.get("Limit")
|
|
20555
|
+
self._Offset = params.get("Offset")
|
|
20556
|
+
if params.get("Filters") is not None:
|
|
20557
|
+
self._Filters = []
|
|
20558
|
+
for item in params.get("Filters"):
|
|
20559
|
+
obj = AssetFilters()
|
|
20560
|
+
obj._deserialize(item)
|
|
20561
|
+
self._Filters.append(obj)
|
|
20562
|
+
self._By = params.get("By")
|
|
20563
|
+
self._Order = params.get("Order")
|
|
20564
|
+
memeber_set = set(params.keys())
|
|
20565
|
+
for name, value in vars(self).items():
|
|
20566
|
+
property_name = name[1:]
|
|
20567
|
+
if property_name in memeber_set:
|
|
20568
|
+
memeber_set.remove(property_name)
|
|
20569
|
+
if len(memeber_set) > 0:
|
|
20570
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
20571
|
+
|
|
20572
|
+
|
|
20493
20573
|
|
|
20494
20574
|
class DescribeAssetImageRegistryRegistryListResponse(AbstractModel):
|
|
20495
20575
|
"""DescribeAssetImageRegistryRegistryList response structure.
|
|
@@ -20498,11 +20578,33 @@ class DescribeAssetImageRegistryRegistryListResponse(AbstractModel):
|
|
|
20498
20578
|
|
|
20499
20579
|
def __init__(self):
|
|
20500
20580
|
r"""
|
|
20501
|
-
:param
|
|
20581
|
+
:param _List: Mirror repository list
|
|
20582
|
+
:type List: list of ImageRepoRegistryInfo
|
|
20583
|
+
:param _TotalCount: Total quantity
|
|
20584
|
+
:type TotalCount: int
|
|
20585
|
+
: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.
|
|
20502
20586
|
:type RequestId: str
|
|
20503
20587
|
"""
|
|
20588
|
+
self._List = None
|
|
20589
|
+
self._TotalCount = None
|
|
20504
20590
|
self._RequestId = None
|
|
20505
20591
|
|
|
20592
|
+
@property
|
|
20593
|
+
def List(self):
|
|
20594
|
+
return self._List
|
|
20595
|
+
|
|
20596
|
+
@List.setter
|
|
20597
|
+
def List(self, List):
|
|
20598
|
+
self._List = List
|
|
20599
|
+
|
|
20600
|
+
@property
|
|
20601
|
+
def TotalCount(self):
|
|
20602
|
+
return self._TotalCount
|
|
20603
|
+
|
|
20604
|
+
@TotalCount.setter
|
|
20605
|
+
def TotalCount(self, TotalCount):
|
|
20606
|
+
self._TotalCount = TotalCount
|
|
20607
|
+
|
|
20506
20608
|
@property
|
|
20507
20609
|
def RequestId(self):
|
|
20508
20610
|
return self._RequestId
|
|
@@ -20513,6 +20615,13 @@ class DescribeAssetImageRegistryRegistryListResponse(AbstractModel):
|
|
|
20513
20615
|
|
|
20514
20616
|
|
|
20515
20617
|
def _deserialize(self, params):
|
|
20618
|
+
if params.get("List") is not None:
|
|
20619
|
+
self._List = []
|
|
20620
|
+
for item in params.get("List"):
|
|
20621
|
+
obj = ImageRepoRegistryInfo()
|
|
20622
|
+
obj._deserialize(item)
|
|
20623
|
+
self._List.append(obj)
|
|
20624
|
+
self._TotalCount = params.get("TotalCount")
|
|
20516
20625
|
self._RequestId = params.get("RequestId")
|
|
20517
20626
|
|
|
20518
20627
|
|
|
@@ -43571,6 +43680,236 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
43571
43680
|
|
|
43572
43681
|
|
|
43573
43682
|
|
|
43683
|
+
class ImageRepoRegistryInfo(AbstractModel):
|
|
43684
|
+
"""
|
|
43685
|
+
|
|
43686
|
+
"""
|
|
43687
|
+
|
|
43688
|
+
def __init__(self):
|
|
43689
|
+
r"""
|
|
43690
|
+
:param _RegistryId:
|
|
43691
|
+
:type RegistryId: int
|
|
43692
|
+
:param _Name:
|
|
43693
|
+
:type Name: str
|
|
43694
|
+
:param _RegistryType:
|
|
43695
|
+
:type RegistryType: str
|
|
43696
|
+
:param _Url:
|
|
43697
|
+
:type Url: str
|
|
43698
|
+
:param _NetType:
|
|
43699
|
+
:type NetType: str
|
|
43700
|
+
:param _RegistryRegion:
|
|
43701
|
+
:type RegistryRegion: str
|
|
43702
|
+
:param _RegistryVersion:
|
|
43703
|
+
:type RegistryVersion: str
|
|
43704
|
+
:param _ConnectMsg:
|
|
43705
|
+
:type ConnectMsg: str
|
|
43706
|
+
:param _ConnDetectType:
|
|
43707
|
+
:type ConnDetectType: str
|
|
43708
|
+
:param _ConnDetectHostCount:
|
|
43709
|
+
:type ConnDetectHostCount: int
|
|
43710
|
+
:param _ConnDetectDetail:
|
|
43711
|
+
:type ConnDetectDetail: list of RegistryConnDetectResult
|
|
43712
|
+
:param _InstanceID:
|
|
43713
|
+
:type InstanceID: str
|
|
43714
|
+
:param _LatestSyncTime:
|
|
43715
|
+
:type LatestSyncTime: str
|
|
43716
|
+
:param _SyncStatus:
|
|
43717
|
+
:type SyncStatus: str
|
|
43718
|
+
:param _SyncFailReason:
|
|
43719
|
+
:type SyncFailReason: str
|
|
43720
|
+
:param _SyncSolution:
|
|
43721
|
+
:type SyncSolution: str
|
|
43722
|
+
:param _SyncMessage:
|
|
43723
|
+
:type SyncMessage: str
|
|
43724
|
+
"""
|
|
43725
|
+
self._RegistryId = None
|
|
43726
|
+
self._Name = None
|
|
43727
|
+
self._RegistryType = None
|
|
43728
|
+
self._Url = None
|
|
43729
|
+
self._NetType = None
|
|
43730
|
+
self._RegistryRegion = None
|
|
43731
|
+
self._RegistryVersion = None
|
|
43732
|
+
self._ConnectMsg = None
|
|
43733
|
+
self._ConnDetectType = None
|
|
43734
|
+
self._ConnDetectHostCount = None
|
|
43735
|
+
self._ConnDetectDetail = None
|
|
43736
|
+
self._InstanceID = None
|
|
43737
|
+
self._LatestSyncTime = None
|
|
43738
|
+
self._SyncStatus = None
|
|
43739
|
+
self._SyncFailReason = None
|
|
43740
|
+
self._SyncSolution = None
|
|
43741
|
+
self._SyncMessage = None
|
|
43742
|
+
|
|
43743
|
+
@property
|
|
43744
|
+
def RegistryId(self):
|
|
43745
|
+
return self._RegistryId
|
|
43746
|
+
|
|
43747
|
+
@RegistryId.setter
|
|
43748
|
+
def RegistryId(self, RegistryId):
|
|
43749
|
+
self._RegistryId = RegistryId
|
|
43750
|
+
|
|
43751
|
+
@property
|
|
43752
|
+
def Name(self):
|
|
43753
|
+
return self._Name
|
|
43754
|
+
|
|
43755
|
+
@Name.setter
|
|
43756
|
+
def Name(self, Name):
|
|
43757
|
+
self._Name = Name
|
|
43758
|
+
|
|
43759
|
+
@property
|
|
43760
|
+
def RegistryType(self):
|
|
43761
|
+
return self._RegistryType
|
|
43762
|
+
|
|
43763
|
+
@RegistryType.setter
|
|
43764
|
+
def RegistryType(self, RegistryType):
|
|
43765
|
+
self._RegistryType = RegistryType
|
|
43766
|
+
|
|
43767
|
+
@property
|
|
43768
|
+
def Url(self):
|
|
43769
|
+
return self._Url
|
|
43770
|
+
|
|
43771
|
+
@Url.setter
|
|
43772
|
+
def Url(self, Url):
|
|
43773
|
+
self._Url = Url
|
|
43774
|
+
|
|
43775
|
+
@property
|
|
43776
|
+
def NetType(self):
|
|
43777
|
+
return self._NetType
|
|
43778
|
+
|
|
43779
|
+
@NetType.setter
|
|
43780
|
+
def NetType(self, NetType):
|
|
43781
|
+
self._NetType = NetType
|
|
43782
|
+
|
|
43783
|
+
@property
|
|
43784
|
+
def RegistryRegion(self):
|
|
43785
|
+
return self._RegistryRegion
|
|
43786
|
+
|
|
43787
|
+
@RegistryRegion.setter
|
|
43788
|
+
def RegistryRegion(self, RegistryRegion):
|
|
43789
|
+
self._RegistryRegion = RegistryRegion
|
|
43790
|
+
|
|
43791
|
+
@property
|
|
43792
|
+
def RegistryVersion(self):
|
|
43793
|
+
return self._RegistryVersion
|
|
43794
|
+
|
|
43795
|
+
@RegistryVersion.setter
|
|
43796
|
+
def RegistryVersion(self, RegistryVersion):
|
|
43797
|
+
self._RegistryVersion = RegistryVersion
|
|
43798
|
+
|
|
43799
|
+
@property
|
|
43800
|
+
def ConnectMsg(self):
|
|
43801
|
+
return self._ConnectMsg
|
|
43802
|
+
|
|
43803
|
+
@ConnectMsg.setter
|
|
43804
|
+
def ConnectMsg(self, ConnectMsg):
|
|
43805
|
+
self._ConnectMsg = ConnectMsg
|
|
43806
|
+
|
|
43807
|
+
@property
|
|
43808
|
+
def ConnDetectType(self):
|
|
43809
|
+
return self._ConnDetectType
|
|
43810
|
+
|
|
43811
|
+
@ConnDetectType.setter
|
|
43812
|
+
def ConnDetectType(self, ConnDetectType):
|
|
43813
|
+
self._ConnDetectType = ConnDetectType
|
|
43814
|
+
|
|
43815
|
+
@property
|
|
43816
|
+
def ConnDetectHostCount(self):
|
|
43817
|
+
return self._ConnDetectHostCount
|
|
43818
|
+
|
|
43819
|
+
@ConnDetectHostCount.setter
|
|
43820
|
+
def ConnDetectHostCount(self, ConnDetectHostCount):
|
|
43821
|
+
self._ConnDetectHostCount = ConnDetectHostCount
|
|
43822
|
+
|
|
43823
|
+
@property
|
|
43824
|
+
def ConnDetectDetail(self):
|
|
43825
|
+
return self._ConnDetectDetail
|
|
43826
|
+
|
|
43827
|
+
@ConnDetectDetail.setter
|
|
43828
|
+
def ConnDetectDetail(self, ConnDetectDetail):
|
|
43829
|
+
self._ConnDetectDetail = ConnDetectDetail
|
|
43830
|
+
|
|
43831
|
+
@property
|
|
43832
|
+
def InstanceID(self):
|
|
43833
|
+
return self._InstanceID
|
|
43834
|
+
|
|
43835
|
+
@InstanceID.setter
|
|
43836
|
+
def InstanceID(self, InstanceID):
|
|
43837
|
+
self._InstanceID = InstanceID
|
|
43838
|
+
|
|
43839
|
+
@property
|
|
43840
|
+
def LatestSyncTime(self):
|
|
43841
|
+
return self._LatestSyncTime
|
|
43842
|
+
|
|
43843
|
+
@LatestSyncTime.setter
|
|
43844
|
+
def LatestSyncTime(self, LatestSyncTime):
|
|
43845
|
+
self._LatestSyncTime = LatestSyncTime
|
|
43846
|
+
|
|
43847
|
+
@property
|
|
43848
|
+
def SyncStatus(self):
|
|
43849
|
+
return self._SyncStatus
|
|
43850
|
+
|
|
43851
|
+
@SyncStatus.setter
|
|
43852
|
+
def SyncStatus(self, SyncStatus):
|
|
43853
|
+
self._SyncStatus = SyncStatus
|
|
43854
|
+
|
|
43855
|
+
@property
|
|
43856
|
+
def SyncFailReason(self):
|
|
43857
|
+
return self._SyncFailReason
|
|
43858
|
+
|
|
43859
|
+
@SyncFailReason.setter
|
|
43860
|
+
def SyncFailReason(self, SyncFailReason):
|
|
43861
|
+
self._SyncFailReason = SyncFailReason
|
|
43862
|
+
|
|
43863
|
+
@property
|
|
43864
|
+
def SyncSolution(self):
|
|
43865
|
+
return self._SyncSolution
|
|
43866
|
+
|
|
43867
|
+
@SyncSolution.setter
|
|
43868
|
+
def SyncSolution(self, SyncSolution):
|
|
43869
|
+
self._SyncSolution = SyncSolution
|
|
43870
|
+
|
|
43871
|
+
@property
|
|
43872
|
+
def SyncMessage(self):
|
|
43873
|
+
return self._SyncMessage
|
|
43874
|
+
|
|
43875
|
+
@SyncMessage.setter
|
|
43876
|
+
def SyncMessage(self, SyncMessage):
|
|
43877
|
+
self._SyncMessage = SyncMessage
|
|
43878
|
+
|
|
43879
|
+
|
|
43880
|
+
def _deserialize(self, params):
|
|
43881
|
+
self._RegistryId = params.get("RegistryId")
|
|
43882
|
+
self._Name = params.get("Name")
|
|
43883
|
+
self._RegistryType = params.get("RegistryType")
|
|
43884
|
+
self._Url = params.get("Url")
|
|
43885
|
+
self._NetType = params.get("NetType")
|
|
43886
|
+
self._RegistryRegion = params.get("RegistryRegion")
|
|
43887
|
+
self._RegistryVersion = params.get("RegistryVersion")
|
|
43888
|
+
self._ConnectMsg = params.get("ConnectMsg")
|
|
43889
|
+
self._ConnDetectType = params.get("ConnDetectType")
|
|
43890
|
+
self._ConnDetectHostCount = params.get("ConnDetectHostCount")
|
|
43891
|
+
if params.get("ConnDetectDetail") is not None:
|
|
43892
|
+
self._ConnDetectDetail = []
|
|
43893
|
+
for item in params.get("ConnDetectDetail"):
|
|
43894
|
+
obj = RegistryConnDetectResult()
|
|
43895
|
+
obj._deserialize(item)
|
|
43896
|
+
self._ConnDetectDetail.append(obj)
|
|
43897
|
+
self._InstanceID = params.get("InstanceID")
|
|
43898
|
+
self._LatestSyncTime = params.get("LatestSyncTime")
|
|
43899
|
+
self._SyncStatus = params.get("SyncStatus")
|
|
43900
|
+
self._SyncFailReason = params.get("SyncFailReason")
|
|
43901
|
+
self._SyncSolution = params.get("SyncSolution")
|
|
43902
|
+
self._SyncMessage = params.get("SyncMessage")
|
|
43903
|
+
memeber_set = set(params.keys())
|
|
43904
|
+
for name, value in vars(self).items():
|
|
43905
|
+
property_name = name[1:]
|
|
43906
|
+
if property_name in memeber_set:
|
|
43907
|
+
memeber_set.remove(property_name)
|
|
43908
|
+
if len(memeber_set) > 0:
|
|
43909
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
43910
|
+
|
|
43911
|
+
|
|
43912
|
+
|
|
43574
43913
|
class ImageRisk(AbstractModel):
|
|
43575
43914
|
"""Information of a high-risk behavior in the image
|
|
43576
43915
|
|
|
@@ -51074,6 +51413,99 @@ class RegionInfo(AbstractModel):
|
|
|
51074
51413
|
|
|
51075
51414
|
|
|
51076
51415
|
|
|
51416
|
+
class RegistryConnDetectResult(AbstractModel):
|
|
51417
|
+
"""
|
|
51418
|
+
|
|
51419
|
+
"""
|
|
51420
|
+
|
|
51421
|
+
def __init__(self):
|
|
51422
|
+
r"""
|
|
51423
|
+
:param _Quuid:
|
|
51424
|
+
:type Quuid: str
|
|
51425
|
+
:param _Uuid:
|
|
51426
|
+
:type Uuid: str
|
|
51427
|
+
:param _ConnDetectStatus:
|
|
51428
|
+
:type ConnDetectStatus: str
|
|
51429
|
+
:param _ConnDetectMessage:
|
|
51430
|
+
:type ConnDetectMessage: str
|
|
51431
|
+
:param _Solution:
|
|
51432
|
+
:type Solution: str
|
|
51433
|
+
:param _FailReason:
|
|
51434
|
+
:type FailReason: str
|
|
51435
|
+
"""
|
|
51436
|
+
self._Quuid = None
|
|
51437
|
+
self._Uuid = None
|
|
51438
|
+
self._ConnDetectStatus = None
|
|
51439
|
+
self._ConnDetectMessage = None
|
|
51440
|
+
self._Solution = None
|
|
51441
|
+
self._FailReason = None
|
|
51442
|
+
|
|
51443
|
+
@property
|
|
51444
|
+
def Quuid(self):
|
|
51445
|
+
return self._Quuid
|
|
51446
|
+
|
|
51447
|
+
@Quuid.setter
|
|
51448
|
+
def Quuid(self, Quuid):
|
|
51449
|
+
self._Quuid = Quuid
|
|
51450
|
+
|
|
51451
|
+
@property
|
|
51452
|
+
def Uuid(self):
|
|
51453
|
+
return self._Uuid
|
|
51454
|
+
|
|
51455
|
+
@Uuid.setter
|
|
51456
|
+
def Uuid(self, Uuid):
|
|
51457
|
+
self._Uuid = Uuid
|
|
51458
|
+
|
|
51459
|
+
@property
|
|
51460
|
+
def ConnDetectStatus(self):
|
|
51461
|
+
return self._ConnDetectStatus
|
|
51462
|
+
|
|
51463
|
+
@ConnDetectStatus.setter
|
|
51464
|
+
def ConnDetectStatus(self, ConnDetectStatus):
|
|
51465
|
+
self._ConnDetectStatus = ConnDetectStatus
|
|
51466
|
+
|
|
51467
|
+
@property
|
|
51468
|
+
def ConnDetectMessage(self):
|
|
51469
|
+
return self._ConnDetectMessage
|
|
51470
|
+
|
|
51471
|
+
@ConnDetectMessage.setter
|
|
51472
|
+
def ConnDetectMessage(self, ConnDetectMessage):
|
|
51473
|
+
self._ConnDetectMessage = ConnDetectMessage
|
|
51474
|
+
|
|
51475
|
+
@property
|
|
51476
|
+
def Solution(self):
|
|
51477
|
+
return self._Solution
|
|
51478
|
+
|
|
51479
|
+
@Solution.setter
|
|
51480
|
+
def Solution(self, Solution):
|
|
51481
|
+
self._Solution = Solution
|
|
51482
|
+
|
|
51483
|
+
@property
|
|
51484
|
+
def FailReason(self):
|
|
51485
|
+
return self._FailReason
|
|
51486
|
+
|
|
51487
|
+
@FailReason.setter
|
|
51488
|
+
def FailReason(self, FailReason):
|
|
51489
|
+
self._FailReason = FailReason
|
|
51490
|
+
|
|
51491
|
+
|
|
51492
|
+
def _deserialize(self, params):
|
|
51493
|
+
self._Quuid = params.get("Quuid")
|
|
51494
|
+
self._Uuid = params.get("Uuid")
|
|
51495
|
+
self._ConnDetectStatus = params.get("ConnDetectStatus")
|
|
51496
|
+
self._ConnDetectMessage = params.get("ConnDetectMessage")
|
|
51497
|
+
self._Solution = params.get("Solution")
|
|
51498
|
+
self._FailReason = params.get("FailReason")
|
|
51499
|
+
memeber_set = set(params.keys())
|
|
51500
|
+
for name, value in vars(self).items():
|
|
51501
|
+
property_name = name[1:]
|
|
51502
|
+
if property_name in memeber_set:
|
|
51503
|
+
memeber_set.remove(property_name)
|
|
51504
|
+
if len(memeber_set) > 0:
|
|
51505
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
51506
|
+
|
|
51507
|
+
|
|
51508
|
+
|
|
51077
51509
|
class RemoveAssetImageRegistryRegistryDetailRequest(AbstractModel):
|
|
51078
51510
|
"""RemoveAssetImageRegistryRegistryDetail request structure.
|
|
51079
51511
|
|
|
@@ -14,12 +14,24 @@
|
|
|
14
14
|
# limitations under the License.
|
|
15
15
|
|
|
16
16
|
|
|
17
|
+
#
|
|
18
|
+
FAILEDOPERATION_ERRORUSERAREA = 'FailedOperation.ErrorUserArea'
|
|
19
|
+
|
|
20
|
+
#
|
|
21
|
+
FAILEDOPERATION_LANGUAGERECOGNITIONERR = 'FailedOperation.LanguageRecognitionErr'
|
|
22
|
+
|
|
17
23
|
# The free quota for this month is used up. To continue to use the service, you need to upgrade to a paid account in the TMT console.
|
|
18
24
|
FAILEDOPERATION_NOFREEAMOUNT = 'FailedOperation.NoFreeAmount'
|
|
19
25
|
|
|
26
|
+
#
|
|
27
|
+
FAILEDOPERATION_REQUESTAILABERR = 'FailedOperation.RequestAiLabErr'
|
|
28
|
+
|
|
20
29
|
# The service is suspended due to overdue payments. Top up your account first.
|
|
21
30
|
FAILEDOPERATION_SERVICEISOLATE = 'FailedOperation.ServiceIsolate'
|
|
22
31
|
|
|
32
|
+
#
|
|
33
|
+
FAILEDOPERATION_STOPUSING = 'FailedOperation.StopUsing'
|
|
34
|
+
|
|
23
35
|
# The service is not activated. Activate it in the TMT console first.
|
|
24
36
|
FAILEDOPERATION_USERNOTREGISTERED = 'FailedOperation.UserNotRegistered'
|
|
25
37
|
|
|
@@ -29,6 +41,9 @@ INTERNALERROR = 'InternalError'
|
|
|
29
41
|
# Backend service timeout. Please try again later.
|
|
30
42
|
INTERNALERROR_BACKENDTIMEOUT = 'InternalError.BackendTimeout'
|
|
31
43
|
|
|
44
|
+
#
|
|
45
|
+
INTERNALERROR_ERRORGETROUTE = 'InternalError.ErrorGetRoute'
|
|
46
|
+
|
|
32
47
|
# Unknown error.
|
|
33
48
|
INTERNALERROR_ERRORUNKNOWN = 'InternalError.ErrorUnknown'
|
|
34
49
|
|
|
@@ -41,6 +56,9 @@ INVALIDPARAMETER = 'InvalidParameter'
|
|
|
41
56
|
# Invalid parameter.
|
|
42
57
|
INVALIDPARAMETER_MISSINGPARAMETER = 'InvalidParameter.MissingParameter'
|
|
43
58
|
|
|
59
|
+
#
|
|
60
|
+
INVALIDPARAMETERVALUE = 'InvalidParameterValue'
|
|
61
|
+
|
|
44
62
|
# The quota limit is reached.
|
|
45
63
|
LIMITEXCEEDED = 'LimitExceeded'
|
|
46
64
|
|
|
@@ -50,6 +68,9 @@ LIMITEXCEEDED_LIMITEDACCESSFREQUENCY = 'LimitExceeded.LimitedAccessFrequency'
|
|
|
50
68
|
# Missing parameter.
|
|
51
69
|
MISSINGPARAMETER = 'MissingParameter'
|
|
52
70
|
|
|
71
|
+
#
|
|
72
|
+
REQUESTLIMITEXCEEDED_UINLIMITEXCEEDED = 'RequestLimitExceeded.UinLimitExceeded'
|
|
73
|
+
|
|
53
74
|
# Incorrect name entered in the `Action` field.
|
|
54
75
|
UNAUTHORIZEDOPERATION_ACTIONNOTFOUND = 'UnauthorizedOperation.ActionNotFound'
|
|
55
76
|
|
|
@@ -150,7 +150,7 @@ class TextTranslateResponse(AbstractModel):
|
|
|
150
150
|
:type Source: str
|
|
151
151
|
:param _Target: The target language. See the request parameter `Target` for details.
|
|
152
152
|
:type Target: str
|
|
153
|
-
:param _RequestId: The unique request ID,
|
|
153
|
+
: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.
|
|
154
154
|
:type RequestId: str
|
|
155
155
|
"""
|
|
156
156
|
self._TargetText = None
|
|
@@ -7118,6 +7118,64 @@ class StartStreamIngestResponse(AbstractModel):
|
|
|
7118
7118
|
self._RequestId = params.get("RequestId")
|
|
7119
7119
|
|
|
7120
7120
|
|
|
7121
|
+
class StopAIConversationRequest(AbstractModel):
|
|
7122
|
+
"""StopAIConversation request structure.
|
|
7123
|
+
|
|
7124
|
+
"""
|
|
7125
|
+
|
|
7126
|
+
def __init__(self):
|
|
7127
|
+
r"""
|
|
7128
|
+
:param _TaskId: Task Unique ID
|
|
7129
|
+
:type TaskId: str
|
|
7130
|
+
"""
|
|
7131
|
+
self._TaskId = None
|
|
7132
|
+
|
|
7133
|
+
@property
|
|
7134
|
+
def TaskId(self):
|
|
7135
|
+
return self._TaskId
|
|
7136
|
+
|
|
7137
|
+
@TaskId.setter
|
|
7138
|
+
def TaskId(self, TaskId):
|
|
7139
|
+
self._TaskId = TaskId
|
|
7140
|
+
|
|
7141
|
+
|
|
7142
|
+
def _deserialize(self, params):
|
|
7143
|
+
self._TaskId = params.get("TaskId")
|
|
7144
|
+
memeber_set = set(params.keys())
|
|
7145
|
+
for name, value in vars(self).items():
|
|
7146
|
+
property_name = name[1:]
|
|
7147
|
+
if property_name in memeber_set:
|
|
7148
|
+
memeber_set.remove(property_name)
|
|
7149
|
+
if len(memeber_set) > 0:
|
|
7150
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
7151
|
+
|
|
7152
|
+
|
|
7153
|
+
|
|
7154
|
+
class StopAIConversationResponse(AbstractModel):
|
|
7155
|
+
"""StopAIConversation response structure.
|
|
7156
|
+
|
|
7157
|
+
"""
|
|
7158
|
+
|
|
7159
|
+
def __init__(self):
|
|
7160
|
+
r"""
|
|
7161
|
+
: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.
|
|
7162
|
+
:type RequestId: str
|
|
7163
|
+
"""
|
|
7164
|
+
self._RequestId = None
|
|
7165
|
+
|
|
7166
|
+
@property
|
|
7167
|
+
def RequestId(self):
|
|
7168
|
+
return self._RequestId
|
|
7169
|
+
|
|
7170
|
+
@RequestId.setter
|
|
7171
|
+
def RequestId(self, RequestId):
|
|
7172
|
+
self._RequestId = RequestId
|
|
7173
|
+
|
|
7174
|
+
|
|
7175
|
+
def _deserialize(self, params):
|
|
7176
|
+
self._RequestId = params.get("RequestId")
|
|
7177
|
+
|
|
7178
|
+
|
|
7121
7179
|
class StopAITranscriptionRequest(AbstractModel):
|
|
7122
7180
|
"""StopAITranscription request structure.
|
|
7123
7181
|
|
|
@@ -914,6 +914,29 @@ class TrtcClient(AbstractClient):
|
|
|
914
914
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
915
915
|
|
|
916
916
|
|
|
917
|
+
def StopAIConversation(self, request):
|
|
918
|
+
"""Stop AI conversation task
|
|
919
|
+
|
|
920
|
+
:param request: Request instance for StopAIConversation.
|
|
921
|
+
:type request: :class:`tencentcloud.trtc.v20190722.models.StopAIConversationRequest`
|
|
922
|
+
:rtype: :class:`tencentcloud.trtc.v20190722.models.StopAIConversationResponse`
|
|
923
|
+
|
|
924
|
+
"""
|
|
925
|
+
try:
|
|
926
|
+
params = request._serialize()
|
|
927
|
+
headers = request.headers
|
|
928
|
+
body = self.call("StopAIConversation", params, headers=headers)
|
|
929
|
+
response = json.loads(body)
|
|
930
|
+
model = models.StopAIConversationResponse()
|
|
931
|
+
model._deserialize(response["Response"])
|
|
932
|
+
return model
|
|
933
|
+
except Exception as e:
|
|
934
|
+
if isinstance(e, TencentCloudSDKException):
|
|
935
|
+
raise
|
|
936
|
+
else:
|
|
937
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
938
|
+
|
|
939
|
+
|
|
917
940
|
def StopAITranscription(self, request):
|
|
918
941
|
"""Stop AI Transcription task
|
|
919
942
|
|