tencentcloud-sdk-python 3.0.1329__py2.py3-none-any.whl → 3.0.1331__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/ams/v20201229/models.py +207 -14
- tencentcloud/batch/v20170312/models.py +2 -26
- tencentcloud/cfw/v20190904/cfw_client.py +9 -3
- tencentcloud/cvm/v20170312/models.py +37 -38
- tencentcloud/cynosdb/v20190107/models.py +23 -4
- tencentcloud/emr/v20190103/models.py +4 -4
- tencentcloud/ess/v20201111/ess_client.py +57 -0
- tencentcloud/ess/v20201111/models.py +406 -322
- tencentcloud/essbasic/v20210526/essbasic_client.py +57 -0
- tencentcloud/essbasic/v20210526/models.py +388 -238
- tencentcloud/ims/v20201229/models.py +157 -0
- tencentcloud/lcic/v20220817/models.py +12 -2
- tencentcloud/lighthouse/v20200324/models.py +12 -12
- tencentcloud/live/v20180801/models.py +0 -78
- tencentcloud/lke/v20231130/lke_client.py +23 -0
- tencentcloud/lke/v20231130/models.py +128 -4
- tencentcloud/lkeap/v20240522/lkeap_client.py +5 -1
- tencentcloud/ocr/v20181119/errorcodes.py +6 -0
- tencentcloud/rce/v20201103/models.py +16 -52
- tencentcloud/taf/v20200210/models.py +0 -2
- tencentcloud/teo/v20220901/models.py +18 -4
- tencentcloud/tione/v20211111/tione_client.py +3 -1
- tencentcloud/tke/v20180525/models.py +2 -178
- tencentcloud/trtc/v20190722/models.py +15 -0
- tencentcloud/tse/v20201207/models.py +153 -0
- tencentcloud/vm/v20201229/models.py +615 -68
- tencentcloud/vm/v20210922/models.py +737 -102
- tencentcloud/wedata/v20210820/models.py +19 -4
- {tencentcloud_sdk_python-3.0.1329.dist-info → tencentcloud_sdk_python-3.0.1331.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1329.dist-info → tencentcloud_sdk_python-3.0.1331.dist-info}/RECORD +34 -34
- {tencentcloud_sdk_python-3.0.1329.dist-info → tencentcloud_sdk_python-3.0.1331.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1329.dist-info → tencentcloud_sdk_python-3.0.1331.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1329.dist-info → tencentcloud_sdk_python-3.0.1331.dist-info}/top_level.txt +0 -0
@@ -14798,11 +14798,14 @@ class UpdateStreamIngestRequest(AbstractModel):
|
|
14798
14798
|
:type StreamUrl: str
|
14799
14799
|
:param _Volume: 音量,取值范围[0, 100],默认100,表示原音量。
|
14800
14800
|
:type Volume: int
|
14801
|
+
:param _IsPause: 是否暂停,默认false表示不暂停。暂停期间任务仍在进行中仍会计费,如果要销毁任务请调用停止接口。
|
14802
|
+
:type IsPause: bool
|
14801
14803
|
"""
|
14802
14804
|
self._SdkAppId = None
|
14803
14805
|
self._TaskId = None
|
14804
14806
|
self._StreamUrl = None
|
14805
14807
|
self._Volume = None
|
14808
|
+
self._IsPause = None
|
14806
14809
|
|
14807
14810
|
@property
|
14808
14811
|
def SdkAppId(self):
|
@@ -14848,12 +14851,24 @@ class UpdateStreamIngestRequest(AbstractModel):
|
|
14848
14851
|
def Volume(self, Volume):
|
14849
14852
|
self._Volume = Volume
|
14850
14853
|
|
14854
|
+
@property
|
14855
|
+
def IsPause(self):
|
14856
|
+
"""是否暂停,默认false表示不暂停。暂停期间任务仍在进行中仍会计费,如果要销毁任务请调用停止接口。
|
14857
|
+
:rtype: bool
|
14858
|
+
"""
|
14859
|
+
return self._IsPause
|
14860
|
+
|
14861
|
+
@IsPause.setter
|
14862
|
+
def IsPause(self, IsPause):
|
14863
|
+
self._IsPause = IsPause
|
14864
|
+
|
14851
14865
|
|
14852
14866
|
def _deserialize(self, params):
|
14853
14867
|
self._SdkAppId = params.get("SdkAppId")
|
14854
14868
|
self._TaskId = params.get("TaskId")
|
14855
14869
|
self._StreamUrl = params.get("StreamUrl")
|
14856
14870
|
self._Volume = params.get("Volume")
|
14871
|
+
self._IsPause = params.get("IsPause")
|
14857
14872
|
memeber_set = set(params.keys())
|
14858
14873
|
for name, value in vars(self).items():
|
14859
14874
|
property_name = name[1:]
|
@@ -677,6 +677,59 @@ class CLBMultiRegion(AbstractModel):
|
|
677
677
|
|
678
678
|
|
679
679
|
|
680
|
+
class CanaryPriorityRule(AbstractModel):
|
681
|
+
"""灰度规则 Priority - Rule
|
682
|
+
|
683
|
+
"""
|
684
|
+
|
685
|
+
def __init__(self):
|
686
|
+
r"""
|
687
|
+
:param _Priority: 优先级
|
688
|
+
:type Priority: int
|
689
|
+
:param _CanaryRule: 灰度规则配置
|
690
|
+
:type CanaryRule: :class:`tencentcloud.tse.v20201207.models.CloudNativeAPIGatewayCanaryRule`
|
691
|
+
"""
|
692
|
+
self._Priority = None
|
693
|
+
self._CanaryRule = None
|
694
|
+
|
695
|
+
@property
|
696
|
+
def Priority(self):
|
697
|
+
"""优先级
|
698
|
+
:rtype: int
|
699
|
+
"""
|
700
|
+
return self._Priority
|
701
|
+
|
702
|
+
@Priority.setter
|
703
|
+
def Priority(self, Priority):
|
704
|
+
self._Priority = Priority
|
705
|
+
|
706
|
+
@property
|
707
|
+
def CanaryRule(self):
|
708
|
+
"""灰度规则配置
|
709
|
+
:rtype: :class:`tencentcloud.tse.v20201207.models.CloudNativeAPIGatewayCanaryRule`
|
710
|
+
"""
|
711
|
+
return self._CanaryRule
|
712
|
+
|
713
|
+
@CanaryRule.setter
|
714
|
+
def CanaryRule(self, CanaryRule):
|
715
|
+
self._CanaryRule = CanaryRule
|
716
|
+
|
717
|
+
|
718
|
+
def _deserialize(self, params):
|
719
|
+
self._Priority = params.get("Priority")
|
720
|
+
if params.get("CanaryRule") is not None:
|
721
|
+
self._CanaryRule = CloudNativeAPIGatewayCanaryRule()
|
722
|
+
self._CanaryRule._deserialize(params.get("CanaryRule"))
|
723
|
+
memeber_set = set(params.keys())
|
724
|
+
for name, value in vars(self).items():
|
725
|
+
property_name = name[1:]
|
726
|
+
if property_name in memeber_set:
|
727
|
+
memeber_set.remove(property_name)
|
728
|
+
if len(memeber_set) > 0:
|
729
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
730
|
+
|
731
|
+
|
732
|
+
|
680
733
|
class CertificateInfo(AbstractModel):
|
681
734
|
"""证书信息
|
682
735
|
|
@@ -5151,10 +5204,13 @@ class CreateCloudNativeAPIGatewayCanaryRuleRequest(AbstractModel):
|
|
5151
5204
|
:type ServiceId: str
|
5152
5205
|
:param _CanaryRule: 灰度规则配置
|
5153
5206
|
:type CanaryRule: :class:`tencentcloud.tse.v20201207.models.CloudNativeAPIGatewayCanaryRule`
|
5207
|
+
:param _CanaryRuleList: 灰度规则配置列表,如果配置了此参数,将以此参数为准,忽略CanaryRule参数
|
5208
|
+
:type CanaryRuleList: list of CloudNativeAPIGatewayCanaryRule
|
5154
5209
|
"""
|
5155
5210
|
self._GatewayId = None
|
5156
5211
|
self._ServiceId = None
|
5157
5212
|
self._CanaryRule = None
|
5213
|
+
self._CanaryRuleList = None
|
5158
5214
|
|
5159
5215
|
@property
|
5160
5216
|
def GatewayId(self):
|
@@ -5189,6 +5245,17 @@ class CreateCloudNativeAPIGatewayCanaryRuleRequest(AbstractModel):
|
|
5189
5245
|
def CanaryRule(self, CanaryRule):
|
5190
5246
|
self._CanaryRule = CanaryRule
|
5191
5247
|
|
5248
|
+
@property
|
5249
|
+
def CanaryRuleList(self):
|
5250
|
+
"""灰度规则配置列表,如果配置了此参数,将以此参数为准,忽略CanaryRule参数
|
5251
|
+
:rtype: list of CloudNativeAPIGatewayCanaryRule
|
5252
|
+
"""
|
5253
|
+
return self._CanaryRuleList
|
5254
|
+
|
5255
|
+
@CanaryRuleList.setter
|
5256
|
+
def CanaryRuleList(self, CanaryRuleList):
|
5257
|
+
self._CanaryRuleList = CanaryRuleList
|
5258
|
+
|
5192
5259
|
|
5193
5260
|
def _deserialize(self, params):
|
5194
5261
|
self._GatewayId = params.get("GatewayId")
|
@@ -5196,6 +5263,12 @@ class CreateCloudNativeAPIGatewayCanaryRuleRequest(AbstractModel):
|
|
5196
5263
|
if params.get("CanaryRule") is not None:
|
5197
5264
|
self._CanaryRule = CloudNativeAPIGatewayCanaryRule()
|
5198
5265
|
self._CanaryRule._deserialize(params.get("CanaryRule"))
|
5266
|
+
if params.get("CanaryRuleList") is not None:
|
5267
|
+
self._CanaryRuleList = []
|
5268
|
+
for item in params.get("CanaryRuleList"):
|
5269
|
+
obj = CloudNativeAPIGatewayCanaryRule()
|
5270
|
+
obj._deserialize(item)
|
5271
|
+
self._CanaryRuleList.append(obj)
|
5199
5272
|
memeber_set = set(params.keys())
|
5200
5273
|
for name, value in vars(self).items():
|
5201
5274
|
property_name = name[1:]
|
@@ -6052,6 +6125,8 @@ class CreateCloudNativeAPIGatewayRouteRequest(AbstractModel):
|
|
6052
6125
|
:type RequestBuffering: bool
|
6053
6126
|
:param _ResponseBuffering: 是否缓存响应body,默认true
|
6054
6127
|
:type ResponseBuffering: bool
|
6128
|
+
:param _RegexPriority: 正则优先级
|
6129
|
+
:type RegexPriority: int
|
6055
6130
|
"""
|
6056
6131
|
self._GatewayId = None
|
6057
6132
|
self._ServiceID = None
|
@@ -6068,6 +6143,7 @@ class CreateCloudNativeAPIGatewayRouteRequest(AbstractModel):
|
|
6068
6143
|
self._Headers = None
|
6069
6144
|
self._RequestBuffering = None
|
6070
6145
|
self._ResponseBuffering = None
|
6146
|
+
self._RegexPriority = None
|
6071
6147
|
|
6072
6148
|
@property
|
6073
6149
|
def GatewayId(self):
|
@@ -6256,6 +6332,17 @@ class CreateCloudNativeAPIGatewayRouteRequest(AbstractModel):
|
|
6256
6332
|
def ResponseBuffering(self, ResponseBuffering):
|
6257
6333
|
self._ResponseBuffering = ResponseBuffering
|
6258
6334
|
|
6335
|
+
@property
|
6336
|
+
def RegexPriority(self):
|
6337
|
+
"""正则优先级
|
6338
|
+
:rtype: int
|
6339
|
+
"""
|
6340
|
+
return self._RegexPriority
|
6341
|
+
|
6342
|
+
@RegexPriority.setter
|
6343
|
+
def RegexPriority(self, RegexPriority):
|
6344
|
+
self._RegexPriority = RegexPriority
|
6345
|
+
|
6259
6346
|
|
6260
6347
|
def _deserialize(self, params):
|
6261
6348
|
self._GatewayId = params.get("GatewayId")
|
@@ -6278,6 +6365,7 @@ class CreateCloudNativeAPIGatewayRouteRequest(AbstractModel):
|
|
6278
6365
|
self._Headers.append(obj)
|
6279
6366
|
self._RequestBuffering = params.get("RequestBuffering")
|
6280
6367
|
self._ResponseBuffering = params.get("ResponseBuffering")
|
6368
|
+
self._RegexPriority = params.get("RegexPriority")
|
6281
6369
|
memeber_set = set(params.keys())
|
6282
6370
|
for name, value in vars(self).items():
|
6283
6371
|
property_name = name[1:]
|
@@ -8662,10 +8750,13 @@ class DeleteCloudNativeAPIGatewayCanaryRuleRequest(AbstractModel):
|
|
8662
8750
|
:type ServiceId: str
|
8663
8751
|
:param _Priority: 优先级
|
8664
8752
|
:type Priority: int
|
8753
|
+
:param _PriorityList: 优先级列表,如果配置了此参数,将以此参数为准,忽略Priority参数
|
8754
|
+
:type PriorityList: list of int
|
8665
8755
|
"""
|
8666
8756
|
self._GatewayId = None
|
8667
8757
|
self._ServiceId = None
|
8668
8758
|
self._Priority = None
|
8759
|
+
self._PriorityList = None
|
8669
8760
|
|
8670
8761
|
@property
|
8671
8762
|
def GatewayId(self):
|
@@ -8700,11 +8791,23 @@ class DeleteCloudNativeAPIGatewayCanaryRuleRequest(AbstractModel):
|
|
8700
8791
|
def Priority(self, Priority):
|
8701
8792
|
self._Priority = Priority
|
8702
8793
|
|
8794
|
+
@property
|
8795
|
+
def PriorityList(self):
|
8796
|
+
"""优先级列表,如果配置了此参数,将以此参数为准,忽略Priority参数
|
8797
|
+
:rtype: list of int
|
8798
|
+
"""
|
8799
|
+
return self._PriorityList
|
8800
|
+
|
8801
|
+
@PriorityList.setter
|
8802
|
+
def PriorityList(self, PriorityList):
|
8803
|
+
self._PriorityList = PriorityList
|
8804
|
+
|
8703
8805
|
|
8704
8806
|
def _deserialize(self, params):
|
8705
8807
|
self._GatewayId = params.get("GatewayId")
|
8706
8808
|
self._ServiceId = params.get("ServiceId")
|
8707
8809
|
self._Priority = params.get("Priority")
|
8810
|
+
self._PriorityList = params.get("PriorityList")
|
8708
8811
|
memeber_set = set(params.keys())
|
8709
8812
|
for name, value in vars(self).items():
|
8710
8813
|
property_name = name[1:]
|
@@ -22453,6 +22556,8 @@ class KongRoutePreview(AbstractModel):
|
|
22453
22556
|
:type RequestBuffering: bool
|
22454
22557
|
:param _ResponseBuffering: 是否缓存响应body,默认true
|
22455
22558
|
:type ResponseBuffering: bool
|
22559
|
+
:param _RegexPriority: 正则优先级
|
22560
|
+
:type RegexPriority: int
|
22456
22561
|
"""
|
22457
22562
|
self._ID = None
|
22458
22563
|
self._Name = None
|
@@ -22471,6 +22576,7 @@ class KongRoutePreview(AbstractModel):
|
|
22471
22576
|
self._Headers = None
|
22472
22577
|
self._RequestBuffering = None
|
22473
22578
|
self._ResponseBuffering = None
|
22579
|
+
self._RegexPriority = None
|
22474
22580
|
|
22475
22581
|
@property
|
22476
22582
|
def ID(self):
|
@@ -22678,6 +22784,17 @@ class KongRoutePreview(AbstractModel):
|
|
22678
22784
|
def ResponseBuffering(self, ResponseBuffering):
|
22679
22785
|
self._ResponseBuffering = ResponseBuffering
|
22680
22786
|
|
22787
|
+
@property
|
22788
|
+
def RegexPriority(self):
|
22789
|
+
"""正则优先级
|
22790
|
+
:rtype: int
|
22791
|
+
"""
|
22792
|
+
return self._RegexPriority
|
22793
|
+
|
22794
|
+
@RegexPriority.setter
|
22795
|
+
def RegexPriority(self, RegexPriority):
|
22796
|
+
self._RegexPriority = RegexPriority
|
22797
|
+
|
22681
22798
|
|
22682
22799
|
def _deserialize(self, params):
|
22683
22800
|
self._ID = params.get("ID")
|
@@ -22702,6 +22819,7 @@ class KongRoutePreview(AbstractModel):
|
|
22702
22819
|
self._Headers.append(obj)
|
22703
22820
|
self._RequestBuffering = params.get("RequestBuffering")
|
22704
22821
|
self._ResponseBuffering = params.get("ResponseBuffering")
|
22822
|
+
self._RegexPriority = params.get("RegexPriority")
|
22705
22823
|
memeber_set = set(params.keys())
|
22706
22824
|
for name, value in vars(self).items():
|
22707
22825
|
property_name = name[1:]
|
@@ -24580,11 +24698,14 @@ class ModifyCloudNativeAPIGatewayCanaryRuleRequest(AbstractModel):
|
|
24580
24698
|
:type Priority: int
|
24581
24699
|
:param _CanaryRule: 灰度规则配置
|
24582
24700
|
:type CanaryRule: :class:`tencentcloud.tse.v20201207.models.CloudNativeAPIGatewayCanaryRule`
|
24701
|
+
:param _CanaryRuleList: 灰度规则配置列表,如果配置了此参数,将以此参数为准,忽略Priority和CanaryRule参数
|
24702
|
+
:type CanaryRuleList: list of CanaryPriorityRule
|
24583
24703
|
"""
|
24584
24704
|
self._GatewayId = None
|
24585
24705
|
self._ServiceId = None
|
24586
24706
|
self._Priority = None
|
24587
24707
|
self._CanaryRule = None
|
24708
|
+
self._CanaryRuleList = None
|
24588
24709
|
|
24589
24710
|
@property
|
24590
24711
|
def GatewayId(self):
|
@@ -24630,6 +24751,17 @@ class ModifyCloudNativeAPIGatewayCanaryRuleRequest(AbstractModel):
|
|
24630
24751
|
def CanaryRule(self, CanaryRule):
|
24631
24752
|
self._CanaryRule = CanaryRule
|
24632
24753
|
|
24754
|
+
@property
|
24755
|
+
def CanaryRuleList(self):
|
24756
|
+
"""灰度规则配置列表,如果配置了此参数,将以此参数为准,忽略Priority和CanaryRule参数
|
24757
|
+
:rtype: list of CanaryPriorityRule
|
24758
|
+
"""
|
24759
|
+
return self._CanaryRuleList
|
24760
|
+
|
24761
|
+
@CanaryRuleList.setter
|
24762
|
+
def CanaryRuleList(self, CanaryRuleList):
|
24763
|
+
self._CanaryRuleList = CanaryRuleList
|
24764
|
+
|
24633
24765
|
|
24634
24766
|
def _deserialize(self, params):
|
24635
24767
|
self._GatewayId = params.get("GatewayId")
|
@@ -24638,6 +24770,12 @@ class ModifyCloudNativeAPIGatewayCanaryRuleRequest(AbstractModel):
|
|
24638
24770
|
if params.get("CanaryRule") is not None:
|
24639
24771
|
self._CanaryRule = CloudNativeAPIGatewayCanaryRule()
|
24640
24772
|
self._CanaryRule._deserialize(params.get("CanaryRule"))
|
24773
|
+
if params.get("CanaryRuleList") is not None:
|
24774
|
+
self._CanaryRuleList = []
|
24775
|
+
for item in params.get("CanaryRuleList"):
|
24776
|
+
obj = CanaryPriorityRule()
|
24777
|
+
obj._deserialize(item)
|
24778
|
+
self._CanaryRuleList.append(obj)
|
24641
24779
|
memeber_set = set(params.keys())
|
24642
24780
|
for name, value in vars(self).items():
|
24643
24781
|
property_name = name[1:]
|
@@ -25138,6 +25276,8 @@ class ModifyCloudNativeAPIGatewayRouteRequest(AbstractModel):
|
|
25138
25276
|
:type RequestBuffering: bool
|
25139
25277
|
:param _ResponseBuffering: 是否缓存响应body,默认true
|
25140
25278
|
:type ResponseBuffering: bool
|
25279
|
+
:param _RegexPriority: 增加优先级
|
25280
|
+
:type RegexPriority: int
|
25141
25281
|
"""
|
25142
25282
|
self._GatewayId = None
|
25143
25283
|
self._ServiceID = None
|
@@ -25155,6 +25295,7 @@ class ModifyCloudNativeAPIGatewayRouteRequest(AbstractModel):
|
|
25155
25295
|
self._Headers = None
|
25156
25296
|
self._RequestBuffering = None
|
25157
25297
|
self._ResponseBuffering = None
|
25298
|
+
self._RegexPriority = None
|
25158
25299
|
|
25159
25300
|
@property
|
25160
25301
|
def GatewayId(self):
|
@@ -25354,6 +25495,17 @@ class ModifyCloudNativeAPIGatewayRouteRequest(AbstractModel):
|
|
25354
25495
|
def ResponseBuffering(self, ResponseBuffering):
|
25355
25496
|
self._ResponseBuffering = ResponseBuffering
|
25356
25497
|
|
25498
|
+
@property
|
25499
|
+
def RegexPriority(self):
|
25500
|
+
"""增加优先级
|
25501
|
+
:rtype: int
|
25502
|
+
"""
|
25503
|
+
return self._RegexPriority
|
25504
|
+
|
25505
|
+
@RegexPriority.setter
|
25506
|
+
def RegexPriority(self, RegexPriority):
|
25507
|
+
self._RegexPriority = RegexPriority
|
25508
|
+
|
25357
25509
|
|
25358
25510
|
def _deserialize(self, params):
|
25359
25511
|
self._GatewayId = params.get("GatewayId")
|
@@ -25377,6 +25529,7 @@ class ModifyCloudNativeAPIGatewayRouteRequest(AbstractModel):
|
|
25377
25529
|
self._Headers.append(obj)
|
25378
25530
|
self._RequestBuffering = params.get("RequestBuffering")
|
25379
25531
|
self._ResponseBuffering = params.get("ResponseBuffering")
|
25532
|
+
self._RegexPriority = params.get("RegexPriority")
|
25380
25533
|
memeber_set = set(params.keys())
|
25381
25534
|
for name, value in vars(self).items():
|
25382
25535
|
property_name = name[1:]
|