tencentcloud-sdk-python 3.0.1318__py2.py3-none-any.whl → 3.0.1319__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/antiddos/v20200309/antiddos_client.py +1 -1
- tencentcloud/antiddos/v20200309/models.py +42 -72
- tencentcloud/cbs/v20170312/models.py +30 -0
- tencentcloud/cwp/v20180228/models.py +17 -2
- tencentcloud/lcic/v20220817/lcic_client.py +23 -0
- tencentcloud/lcic/v20220817/models.py +94 -0
- tencentcloud/live/v20180801/models.py +90 -0
- tencentcloud/ocr/v20181119/models.py +46 -16
- tencentcloud/postgres/v20170312/postgres_client.py +1 -1
- tencentcloud/rum/v20210622/models.py +4 -0
- tencentcloud/smh/v20210712/models.py +32 -8
- tencentcloud/tdmq/v20200217/models.py +166 -0
- tencentcloud/teo/v20220901/models.py +10 -14
- tencentcloud/thpc/v20230321/models.py +30 -0
- tencentcloud/trocket/v20230308/models.py +218 -15
- tencentcloud/trocket/v20230308/trocket_client.py +1 -0
- tencentcloud/vpc/v20170312/models.py +20 -12
- tencentcloud/wedata/v20210820/models.py +39 -4
- tencentcloud/wedata/v20210820/wedata_client.py +8 -2
- {tencentcloud_sdk_python-3.0.1318.dist-info → tencentcloud_sdk_python-3.0.1319.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1318.dist-info → tencentcloud_sdk_python-3.0.1319.dist-info}/RECORD +25 -25
- {tencentcloud_sdk_python-3.0.1318.dist-info → tencentcloud_sdk_python-3.0.1319.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1318.dist-info → tencentcloud_sdk_python-3.0.1319.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1318.dist-info → tencentcloud_sdk_python-3.0.1319.dist-info}/top_level.txt +0 -0
@@ -1794,6 +1794,10 @@ class CallBackTemplateInfo(AbstractModel):
|
|
1794
1794
|
:param _AudioAuditNotifyUrl: 音频审核回调 URL。
|
1795
1795
|
注意:此字段可能返回 null,表示取不到有效值。
|
1796
1796
|
:type AudioAuditNotifyUrl: str
|
1797
|
+
:param _RecordExceptionNotifyUrl: 录制异常回调 URL。
|
1798
|
+
:type RecordExceptionNotifyUrl: str
|
1799
|
+
:param _RecordExceptionLevels: 录制异常回调级别,可选择:error: 错误。alarm: 告警。
|
1800
|
+
:type RecordExceptionLevels: list of str
|
1797
1801
|
"""
|
1798
1802
|
self._TemplateId = None
|
1799
1803
|
self._TemplateName = None
|
@@ -1807,6 +1811,8 @@ class CallBackTemplateInfo(AbstractModel):
|
|
1807
1811
|
self._CallbackKey = None
|
1808
1812
|
self._PushExceptionNotifyUrl = None
|
1809
1813
|
self._AudioAuditNotifyUrl = None
|
1814
|
+
self._RecordExceptionNotifyUrl = None
|
1815
|
+
self._RecordExceptionLevels = None
|
1810
1816
|
|
1811
1817
|
@property
|
1812
1818
|
def TemplateId(self):
|
@@ -1942,6 +1948,28 @@ class CallBackTemplateInfo(AbstractModel):
|
|
1942
1948
|
def AudioAuditNotifyUrl(self, AudioAuditNotifyUrl):
|
1943
1949
|
self._AudioAuditNotifyUrl = AudioAuditNotifyUrl
|
1944
1950
|
|
1951
|
+
@property
|
1952
|
+
def RecordExceptionNotifyUrl(self):
|
1953
|
+
"""录制异常回调 URL。
|
1954
|
+
:rtype: str
|
1955
|
+
"""
|
1956
|
+
return self._RecordExceptionNotifyUrl
|
1957
|
+
|
1958
|
+
@RecordExceptionNotifyUrl.setter
|
1959
|
+
def RecordExceptionNotifyUrl(self, RecordExceptionNotifyUrl):
|
1960
|
+
self._RecordExceptionNotifyUrl = RecordExceptionNotifyUrl
|
1961
|
+
|
1962
|
+
@property
|
1963
|
+
def RecordExceptionLevels(self):
|
1964
|
+
"""录制异常回调级别,可选择:error: 错误。alarm: 告警。
|
1965
|
+
:rtype: list of str
|
1966
|
+
"""
|
1967
|
+
return self._RecordExceptionLevels
|
1968
|
+
|
1969
|
+
@RecordExceptionLevels.setter
|
1970
|
+
def RecordExceptionLevels(self, RecordExceptionLevels):
|
1971
|
+
self._RecordExceptionLevels = RecordExceptionLevels
|
1972
|
+
|
1945
1973
|
|
1946
1974
|
def _deserialize(self, params):
|
1947
1975
|
self._TemplateId = params.get("TemplateId")
|
@@ -1956,6 +1984,8 @@ class CallBackTemplateInfo(AbstractModel):
|
|
1956
1984
|
self._CallbackKey = params.get("CallbackKey")
|
1957
1985
|
self._PushExceptionNotifyUrl = params.get("PushExceptionNotifyUrl")
|
1958
1986
|
self._AudioAuditNotifyUrl = params.get("AudioAuditNotifyUrl")
|
1987
|
+
self._RecordExceptionNotifyUrl = params.get("RecordExceptionNotifyUrl")
|
1988
|
+
self._RecordExceptionLevels = params.get("RecordExceptionLevels")
|
1959
1989
|
memeber_set = set(params.keys())
|
1960
1990
|
for name, value in vars(self).items():
|
1961
1991
|
property_name = name[1:]
|
@@ -6167,6 +6197,10 @@ class CreateLiveCallbackTemplateRequest(AbstractModel):
|
|
6167
6197
|
:type PushExceptionNotifyUrl: str
|
6168
6198
|
:param _AudioAuditNotifyUrl: 音频审核回调 URL。
|
6169
6199
|
:type AudioAuditNotifyUrl: str
|
6200
|
+
:param _RecordExceptionNotifyUrl: 录制异常回调 URL。
|
6201
|
+
:type RecordExceptionNotifyUrl: str
|
6202
|
+
:param _RecordExceptionLevels: 录制异常回调级别,可选择:error、warning、info。
|
6203
|
+
:type RecordExceptionLevels: list of str
|
6170
6204
|
"""
|
6171
6205
|
self._TemplateName = None
|
6172
6206
|
self._Description = None
|
@@ -6180,6 +6214,8 @@ class CreateLiveCallbackTemplateRequest(AbstractModel):
|
|
6180
6214
|
self._StreamMixNotifyUrl = None
|
6181
6215
|
self._PushExceptionNotifyUrl = None
|
6182
6216
|
self._AudioAuditNotifyUrl = None
|
6217
|
+
self._RecordExceptionNotifyUrl = None
|
6218
|
+
self._RecordExceptionLevels = None
|
6183
6219
|
|
6184
6220
|
@property
|
6185
6221
|
def TemplateName(self):
|
@@ -6324,6 +6360,28 @@ class CreateLiveCallbackTemplateRequest(AbstractModel):
|
|
6324
6360
|
def AudioAuditNotifyUrl(self, AudioAuditNotifyUrl):
|
6325
6361
|
self._AudioAuditNotifyUrl = AudioAuditNotifyUrl
|
6326
6362
|
|
6363
|
+
@property
|
6364
|
+
def RecordExceptionNotifyUrl(self):
|
6365
|
+
"""录制异常回调 URL。
|
6366
|
+
:rtype: str
|
6367
|
+
"""
|
6368
|
+
return self._RecordExceptionNotifyUrl
|
6369
|
+
|
6370
|
+
@RecordExceptionNotifyUrl.setter
|
6371
|
+
def RecordExceptionNotifyUrl(self, RecordExceptionNotifyUrl):
|
6372
|
+
self._RecordExceptionNotifyUrl = RecordExceptionNotifyUrl
|
6373
|
+
|
6374
|
+
@property
|
6375
|
+
def RecordExceptionLevels(self):
|
6376
|
+
"""录制异常回调级别,可选择:error、warning、info。
|
6377
|
+
:rtype: list of str
|
6378
|
+
"""
|
6379
|
+
return self._RecordExceptionLevels
|
6380
|
+
|
6381
|
+
@RecordExceptionLevels.setter
|
6382
|
+
def RecordExceptionLevels(self, RecordExceptionLevels):
|
6383
|
+
self._RecordExceptionLevels = RecordExceptionLevels
|
6384
|
+
|
6327
6385
|
|
6328
6386
|
def _deserialize(self, params):
|
6329
6387
|
self._TemplateName = params.get("TemplateName")
|
@@ -6338,6 +6396,8 @@ class CreateLiveCallbackTemplateRequest(AbstractModel):
|
|
6338
6396
|
self._StreamMixNotifyUrl = params.get("StreamMixNotifyUrl")
|
6339
6397
|
self._PushExceptionNotifyUrl = params.get("PushExceptionNotifyUrl")
|
6340
6398
|
self._AudioAuditNotifyUrl = params.get("AudioAuditNotifyUrl")
|
6399
|
+
self._RecordExceptionNotifyUrl = params.get("RecordExceptionNotifyUrl")
|
6400
|
+
self._RecordExceptionLevels = params.get("RecordExceptionLevels")
|
6341
6401
|
memeber_set = set(params.keys())
|
6342
6402
|
for name, value in vars(self).items():
|
6343
6403
|
property_name = name[1:]
|
@@ -28757,6 +28817,10 @@ class ModifyLiveCallbackTemplateRequest(AbstractModel):
|
|
28757
28817
|
:type PushExceptionNotifyUrl: str
|
28758
28818
|
:param _AudioAuditNotifyUrl: 音频审核回调 URL。
|
28759
28819
|
:type AudioAuditNotifyUrl: str
|
28820
|
+
:param _RecordExceptionNotifyUrl: 录制异常回调 URL。
|
28821
|
+
:type RecordExceptionNotifyUrl: str
|
28822
|
+
:param _RecordExceptionLevels: 录制异常回调级别,可选择:error、warning、info。
|
28823
|
+
:type RecordExceptionLevels: list of str
|
28760
28824
|
"""
|
28761
28825
|
self._TemplateId = None
|
28762
28826
|
self._TemplateName = None
|
@@ -28770,6 +28834,8 @@ class ModifyLiveCallbackTemplateRequest(AbstractModel):
|
|
28770
28834
|
self._CallbackKey = None
|
28771
28835
|
self._PushExceptionNotifyUrl = None
|
28772
28836
|
self._AudioAuditNotifyUrl = None
|
28837
|
+
self._RecordExceptionNotifyUrl = None
|
28838
|
+
self._RecordExceptionLevels = None
|
28773
28839
|
|
28774
28840
|
@property
|
28775
28841
|
def TemplateId(self):
|
@@ -28904,6 +28970,28 @@ class ModifyLiveCallbackTemplateRequest(AbstractModel):
|
|
28904
28970
|
def AudioAuditNotifyUrl(self, AudioAuditNotifyUrl):
|
28905
28971
|
self._AudioAuditNotifyUrl = AudioAuditNotifyUrl
|
28906
28972
|
|
28973
|
+
@property
|
28974
|
+
def RecordExceptionNotifyUrl(self):
|
28975
|
+
"""录制异常回调 URL。
|
28976
|
+
:rtype: str
|
28977
|
+
"""
|
28978
|
+
return self._RecordExceptionNotifyUrl
|
28979
|
+
|
28980
|
+
@RecordExceptionNotifyUrl.setter
|
28981
|
+
def RecordExceptionNotifyUrl(self, RecordExceptionNotifyUrl):
|
28982
|
+
self._RecordExceptionNotifyUrl = RecordExceptionNotifyUrl
|
28983
|
+
|
28984
|
+
@property
|
28985
|
+
def RecordExceptionLevels(self):
|
28986
|
+
"""录制异常回调级别,可选择:error、warning、info。
|
28987
|
+
:rtype: list of str
|
28988
|
+
"""
|
28989
|
+
return self._RecordExceptionLevels
|
28990
|
+
|
28991
|
+
@RecordExceptionLevels.setter
|
28992
|
+
def RecordExceptionLevels(self, RecordExceptionLevels):
|
28993
|
+
self._RecordExceptionLevels = RecordExceptionLevels
|
28994
|
+
|
28907
28995
|
|
28908
28996
|
def _deserialize(self, params):
|
28909
28997
|
self._TemplateId = params.get("TemplateId")
|
@@ -28918,6 +29006,8 @@ class ModifyLiveCallbackTemplateRequest(AbstractModel):
|
|
28918
29006
|
self._CallbackKey = params.get("CallbackKey")
|
28919
29007
|
self._PushExceptionNotifyUrl = params.get("PushExceptionNotifyUrl")
|
28920
29008
|
self._AudioAuditNotifyUrl = params.get("AudioAuditNotifyUrl")
|
29009
|
+
self._RecordExceptionNotifyUrl = params.get("RecordExceptionNotifyUrl")
|
29010
|
+
self._RecordExceptionLevels = params.get("RecordExceptionLevels")
|
28921
29011
|
memeber_set = set(params.keys())
|
28922
29012
|
for name, value in vars(self).items():
|
28923
29013
|
property_name = name[1:]
|
@@ -12143,6 +12143,8 @@ class IDCardConfig(AbstractModel):
|
|
12143
12143
|
:type InvalidDateWarn: bool
|
12144
12144
|
:param _ReflectWarn: 是否开启反光检测,默认为false
|
12145
12145
|
:type ReflectWarn: bool
|
12146
|
+
:param _CropPortrait: 是否开启头像剪切
|
12147
|
+
:type CropPortrait: bool
|
12146
12148
|
"""
|
12147
12149
|
self._CopyWarn = None
|
12148
12150
|
self._BorderCheckWarn = None
|
@@ -12151,6 +12153,7 @@ class IDCardConfig(AbstractModel):
|
|
12151
12153
|
self._TempIdWarn = None
|
12152
12154
|
self._InvalidDateWarn = None
|
12153
12155
|
self._ReflectWarn = None
|
12156
|
+
self._CropPortrait = None
|
12154
12157
|
|
12155
12158
|
@property
|
12156
12159
|
def CopyWarn(self):
|
@@ -12229,6 +12232,17 @@ class IDCardConfig(AbstractModel):
|
|
12229
12232
|
def ReflectWarn(self, ReflectWarn):
|
12230
12233
|
self._ReflectWarn = ReflectWarn
|
12231
12234
|
|
12235
|
+
@property
|
12236
|
+
def CropPortrait(self):
|
12237
|
+
"""是否开启头像剪切
|
12238
|
+
:rtype: bool
|
12239
|
+
"""
|
12240
|
+
return self._CropPortrait
|
12241
|
+
|
12242
|
+
@CropPortrait.setter
|
12243
|
+
def CropPortrait(self, CropPortrait):
|
12244
|
+
self._CropPortrait = CropPortrait
|
12245
|
+
|
12232
12246
|
|
12233
12247
|
def _deserialize(self, params):
|
12234
12248
|
self._CopyWarn = params.get("CopyWarn")
|
@@ -12238,6 +12252,7 @@ class IDCardConfig(AbstractModel):
|
|
12238
12252
|
self._TempIdWarn = params.get("TempIdWarn")
|
12239
12253
|
self._InvalidDateWarn = params.get("InvalidDateWarn")
|
12240
12254
|
self._ReflectWarn = params.get("ReflectWarn")
|
12255
|
+
self._CropPortrait = params.get("CropPortrait")
|
12241
12256
|
memeber_set = set(params.keys())
|
12242
12257
|
for name, value in vars(self).items():
|
12243
12258
|
property_name = name[1:]
|
@@ -12466,28 +12481,28 @@ class IDCardInfoResult(AbstractModel):
|
|
12466
12481
|
:param _WarnCodes: 警告代码
|
12467
12482
|
注意:此字段可能返回 null,表示取不到有效值。
|
12468
12483
|
:type WarnCodes: list of int
|
12469
|
-
:param _Address:
|
12484
|
+
:param _Address: 地址(人像面)
|
12470
12485
|
注意:此字段可能返回 null,表示取不到有效值。
|
12471
12486
|
:type Address: str
|
12472
|
-
:param _Authority:
|
12487
|
+
:param _Authority: 发证机关(国徽面)
|
12473
12488
|
注意:此字段可能返回 null,表示取不到有效值。
|
12474
12489
|
:type Authority: str
|
12475
|
-
:param _Birth:
|
12490
|
+
:param _Birth: 出生日期(人像面)
|
12476
12491
|
注意:此字段可能返回 null,表示取不到有效值。
|
12477
12492
|
:type Birth: str
|
12478
|
-
:param _IdNum:
|
12493
|
+
:param _IdNum: 身份证号(人像面)
|
12479
12494
|
注意:此字段可能返回 null,表示取不到有效值。
|
12480
12495
|
:type IdNum: str
|
12481
|
-
:param _Name:
|
12496
|
+
:param _Name: 名字(人像面)
|
12482
12497
|
注意:此字段可能返回 null,表示取不到有效值。
|
12483
12498
|
:type Name: str
|
12484
|
-
:param _Nation:
|
12499
|
+
:param _Nation: 民族(人像面)
|
12485
12500
|
注意:此字段可能返回 null,表示取不到有效值。
|
12486
12501
|
:type Nation: str
|
12487
|
-
:param _Sex:
|
12502
|
+
:param _Sex: 性别(人像面)
|
12488
12503
|
注意:此字段可能返回 null,表示取不到有效值。
|
12489
12504
|
:type Sex: str
|
12490
|
-
:param _ValidDate:
|
12505
|
+
:param _ValidDate: 证件有效期(国徽面)
|
12491
12506
|
注意:此字段可能返回 null,表示取不到有效值。
|
12492
12507
|
:type ValidDate: str
|
12493
12508
|
:param _RequestId: 请求的id
|
@@ -12501,6 +12516,8 @@ class IDCardInfoResult(AbstractModel):
|
|
12501
12516
|
:type ErrorMessage: str
|
12502
12517
|
:param _ImageUrl: 原图地址
|
12503
12518
|
:type ImageUrl: str
|
12519
|
+
:param _PortraitUrl: 身份证头像照片的地址(人像面)
|
12520
|
+
:type PortraitUrl: str
|
12504
12521
|
"""
|
12505
12522
|
self._WarnCodes = None
|
12506
12523
|
self._Address = None
|
@@ -12515,6 +12532,7 @@ class IDCardInfoResult(AbstractModel):
|
|
12515
12532
|
self._ErrorCode = None
|
12516
12533
|
self._ErrorMessage = None
|
12517
12534
|
self._ImageUrl = None
|
12535
|
+
self._PortraitUrl = None
|
12518
12536
|
|
12519
12537
|
@property
|
12520
12538
|
def WarnCodes(self):
|
@@ -12530,7 +12548,7 @@ class IDCardInfoResult(AbstractModel):
|
|
12530
12548
|
|
12531
12549
|
@property
|
12532
12550
|
def Address(self):
|
12533
|
-
"""
|
12551
|
+
"""地址(人像面)
|
12534
12552
|
注意:此字段可能返回 null,表示取不到有效值。
|
12535
12553
|
:rtype: str
|
12536
12554
|
"""
|
@@ -12542,7 +12560,7 @@ class IDCardInfoResult(AbstractModel):
|
|
12542
12560
|
|
12543
12561
|
@property
|
12544
12562
|
def Authority(self):
|
12545
|
-
"""
|
12563
|
+
"""发证机关(国徽面)
|
12546
12564
|
注意:此字段可能返回 null,表示取不到有效值。
|
12547
12565
|
:rtype: str
|
12548
12566
|
"""
|
@@ -12554,7 +12572,7 @@ class IDCardInfoResult(AbstractModel):
|
|
12554
12572
|
|
12555
12573
|
@property
|
12556
12574
|
def Birth(self):
|
12557
|
-
"""
|
12575
|
+
"""出生日期(人像面)
|
12558
12576
|
注意:此字段可能返回 null,表示取不到有效值。
|
12559
12577
|
:rtype: str
|
12560
12578
|
"""
|
@@ -12566,7 +12584,7 @@ class IDCardInfoResult(AbstractModel):
|
|
12566
12584
|
|
12567
12585
|
@property
|
12568
12586
|
def IdNum(self):
|
12569
|
-
"""
|
12587
|
+
"""身份证号(人像面)
|
12570
12588
|
注意:此字段可能返回 null,表示取不到有效值。
|
12571
12589
|
:rtype: str
|
12572
12590
|
"""
|
@@ -12578,7 +12596,7 @@ class IDCardInfoResult(AbstractModel):
|
|
12578
12596
|
|
12579
12597
|
@property
|
12580
12598
|
def Name(self):
|
12581
|
-
"""
|
12599
|
+
"""名字(人像面)
|
12582
12600
|
注意:此字段可能返回 null,表示取不到有效值。
|
12583
12601
|
:rtype: str
|
12584
12602
|
"""
|
@@ -12590,7 +12608,7 @@ class IDCardInfoResult(AbstractModel):
|
|
12590
12608
|
|
12591
12609
|
@property
|
12592
12610
|
def Nation(self):
|
12593
|
-
"""
|
12611
|
+
"""民族(人像面)
|
12594
12612
|
注意:此字段可能返回 null,表示取不到有效值。
|
12595
12613
|
:rtype: str
|
12596
12614
|
"""
|
@@ -12602,7 +12620,7 @@ class IDCardInfoResult(AbstractModel):
|
|
12602
12620
|
|
12603
12621
|
@property
|
12604
12622
|
def Sex(self):
|
12605
|
-
"""
|
12623
|
+
"""性别(人像面)
|
12606
12624
|
注意:此字段可能返回 null,表示取不到有效值。
|
12607
12625
|
:rtype: str
|
12608
12626
|
"""
|
@@ -12614,7 +12632,7 @@ class IDCardInfoResult(AbstractModel):
|
|
12614
12632
|
|
12615
12633
|
@property
|
12616
12634
|
def ValidDate(self):
|
12617
|
-
"""
|
12635
|
+
"""证件有效期(国徽面)
|
12618
12636
|
注意:此字段可能返回 null,表示取不到有效值。
|
12619
12637
|
:rtype: str
|
12620
12638
|
"""
|
@@ -12671,6 +12689,17 @@ class IDCardInfoResult(AbstractModel):
|
|
12671
12689
|
def ImageUrl(self, ImageUrl):
|
12672
12690
|
self._ImageUrl = ImageUrl
|
12673
12691
|
|
12692
|
+
@property
|
12693
|
+
def PortraitUrl(self):
|
12694
|
+
"""身份证头像照片的地址(人像面)
|
12695
|
+
:rtype: str
|
12696
|
+
"""
|
12697
|
+
return self._PortraitUrl
|
12698
|
+
|
12699
|
+
@PortraitUrl.setter
|
12700
|
+
def PortraitUrl(self, PortraitUrl):
|
12701
|
+
self._PortraitUrl = PortraitUrl
|
12702
|
+
|
12674
12703
|
|
12675
12704
|
def _deserialize(self, params):
|
12676
12705
|
self._WarnCodes = params.get("WarnCodes")
|
@@ -12686,6 +12715,7 @@ class IDCardInfoResult(AbstractModel):
|
|
12686
12715
|
self._ErrorCode = params.get("ErrorCode")
|
12687
12716
|
self._ErrorMessage = params.get("ErrorMessage")
|
12688
12717
|
self._ImageUrl = params.get("ImageUrl")
|
12718
|
+
self._PortraitUrl = params.get("PortraitUrl")
|
12689
12719
|
memeber_set = set(params.keys())
|
12690
12720
|
for name, value in vars(self).items():
|
12691
12721
|
property_name = name[1:]
|
@@ -2313,7 +2313,7 @@ class PostgresClient(AbstractClient):
|
|
2313
2313
|
|
2314
2314
|
|
2315
2315
|
def UnlockAccount(self, request):
|
2316
|
-
"""
|
2316
|
+
"""解除数据库账号的锁定,解锁后账号可以登录数据库。
|
2317
2317
|
|
2318
2318
|
:param request: Request instance for UnlockAccount.
|
2319
2319
|
:type request: :class:`tencentcloud.postgres.v20170312.models.UnlockAccountRequest`
|
@@ -10049,6 +10049,8 @@ class DescribeTawInstancesRequest(AbstractModel):
|
|
10049
10049
|
|
10050
10050
|
@property
|
10051
10051
|
def InstanceStatuses(self):
|
10052
|
+
warnings.warn("parameter `InstanceStatuses` is deprecated", DeprecationWarning)
|
10053
|
+
|
10052
10054
|
"""实例状态(1=创建中,2=运行中,3=异常,4=重启中,5=停止中,6=已停止,7=销毁中,8=已销毁), 该参数已废弃,请在Filters内注明
|
10053
10055
|
:rtype: list of int
|
10054
10056
|
"""
|
@@ -10056,6 +10058,8 @@ class DescribeTawInstancesRequest(AbstractModel):
|
|
10056
10058
|
|
10057
10059
|
@InstanceStatuses.setter
|
10058
10060
|
def InstanceStatuses(self, InstanceStatuses):
|
10061
|
+
warnings.warn("parameter `InstanceStatuses` is deprecated", DeprecationWarning)
|
10062
|
+
|
10059
10063
|
self._InstanceStatuses = InstanceStatuses
|
10060
10064
|
|
10061
10065
|
@property
|
@@ -568,16 +568,12 @@ class CreateUserResponse(AbstractModel):
|
|
568
568
|
注意:此字段可能返回 null,表示取不到有效值。
|
569
569
|
:type AccountUserId: str
|
570
570
|
:param _Comment: 备注。
|
571
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
572
571
|
:type Comment: str
|
573
572
|
:param _Nickname: 昵称。
|
574
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
575
573
|
:type Nickname: str
|
576
574
|
:param _Avatar: 用户头像地址。
|
577
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
578
575
|
:type Avatar: str
|
579
576
|
:param _Customize: 自定义信息。
|
580
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
581
577
|
:type Customize: str
|
582
578
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
583
579
|
:type RequestId: str
|
@@ -716,7 +712,6 @@ class CreateUserResponse(AbstractModel):
|
|
716
712
|
@property
|
717
713
|
def Comment(self):
|
718
714
|
"""备注。
|
719
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
720
715
|
:rtype: str
|
721
716
|
"""
|
722
717
|
return self._Comment
|
@@ -728,7 +723,6 @@ class CreateUserResponse(AbstractModel):
|
|
728
723
|
@property
|
729
724
|
def Nickname(self):
|
730
725
|
"""昵称。
|
731
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
732
726
|
:rtype: str
|
733
727
|
"""
|
734
728
|
return self._Nickname
|
@@ -740,7 +734,6 @@ class CreateUserResponse(AbstractModel):
|
|
740
734
|
@property
|
741
735
|
def Avatar(self):
|
742
736
|
"""用户头像地址。
|
743
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
744
737
|
:rtype: str
|
745
738
|
"""
|
746
739
|
return self._Avatar
|
@@ -752,7 +745,6 @@ class CreateUserResponse(AbstractModel):
|
|
752
745
|
@property
|
753
746
|
def Customize(self):
|
754
747
|
"""自定义信息。
|
755
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
756
748
|
:rtype: str
|
757
749
|
"""
|
758
750
|
return self._Customize
|
@@ -1797,6 +1789,11 @@ class Instance(AbstractModel):
|
|
1797
1789
|
:param _SuperAdminAccount: 超级管理员账号,如果未选择查询实例绑定的超级管理员账号或当前实例未绑定超级管理员账号,则该属性为 null。
|
1798
1790
|
注意:此字段可能返回 null,表示取不到有效值。
|
1799
1791
|
:type SuperAdminAccount: str
|
1792
|
+
:param _Bucket: 自选桶模式下,展示存储桶使用
|
1793
|
+
:type Bucket: str
|
1794
|
+
:param _LogBucket: 自选桶模式下,展示日志桶使用
|
1795
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
1796
|
+
:type LogBucket: str
|
1800
1797
|
"""
|
1801
1798
|
self._InstanceId = None
|
1802
1799
|
self._Domain = None
|
@@ -1808,6 +1805,8 @@ class Instance(AbstractModel):
|
|
1808
1805
|
self._Isolated = None
|
1809
1806
|
self._AutoRenew = None
|
1810
1807
|
self._SuperAdminAccount = None
|
1808
|
+
self._Bucket = None
|
1809
|
+
self._LogBucket = None
|
1811
1810
|
|
1812
1811
|
@property
|
1813
1812
|
def InstanceId(self):
|
@@ -1925,6 +1924,29 @@ class Instance(AbstractModel):
|
|
1925
1924
|
def SuperAdminAccount(self, SuperAdminAccount):
|
1926
1925
|
self._SuperAdminAccount = SuperAdminAccount
|
1927
1926
|
|
1927
|
+
@property
|
1928
|
+
def Bucket(self):
|
1929
|
+
"""自选桶模式下,展示存储桶使用
|
1930
|
+
:rtype: str
|
1931
|
+
"""
|
1932
|
+
return self._Bucket
|
1933
|
+
|
1934
|
+
@Bucket.setter
|
1935
|
+
def Bucket(self, Bucket):
|
1936
|
+
self._Bucket = Bucket
|
1937
|
+
|
1938
|
+
@property
|
1939
|
+
def LogBucket(self):
|
1940
|
+
"""自选桶模式下,展示日志桶使用
|
1941
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
1942
|
+
:rtype: str
|
1943
|
+
"""
|
1944
|
+
return self._LogBucket
|
1945
|
+
|
1946
|
+
@LogBucket.setter
|
1947
|
+
def LogBucket(self, LogBucket):
|
1948
|
+
self._LogBucket = LogBucket
|
1949
|
+
|
1928
1950
|
|
1929
1951
|
def _deserialize(self, params):
|
1930
1952
|
self._InstanceId = params.get("InstanceId")
|
@@ -1937,6 +1959,8 @@ class Instance(AbstractModel):
|
|
1937
1959
|
self._Isolated = params.get("Isolated")
|
1938
1960
|
self._AutoRenew = params.get("AutoRenew")
|
1939
1961
|
self._SuperAdminAccount = params.get("SuperAdminAccount")
|
1962
|
+
self._Bucket = params.get("Bucket")
|
1963
|
+
self._LogBucket = params.get("LogBucket")
|
1940
1964
|
memeber_set = set(params.keys())
|
1941
1965
|
for name, value in vars(self).items():
|
1942
1966
|
property_name = name[1:]
|