tencentcloud-sdk-python 3.0.1287__py2.py3-none-any.whl → 3.0.1289__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/aca/__init__.py +0 -0
- tencentcloud/aca/v20210323/__init__.py +0 -0
- tencentcloud/aca/v20210323/aca_client.py +210 -0
- tencentcloud/aca/v20210323/errorcodes.py +24 -0
- tencentcloud/aca/v20210323/models.py +6266 -0
- tencentcloud/aiart/v20221229/models.py +17 -2
- tencentcloud/apm/v20210622/models.py +6 -0
- tencentcloud/batch/v20170312/models.py +2 -2
- tencentcloud/cdb/v20170320/cdb_client.py +3 -3
- tencentcloud/cdb/v20170320/models.py +35 -14
- tencentcloud/cdwch/v20200915/models.py +6 -6
- tencentcloud/cdwdoris/v20211228/models.py +15 -0
- tencentcloud/cfs/v20190719/models.py +0 -46
- tencentcloud/chdfs/v20201112/models.py +4 -4
- tencentcloud/clb/v20180317/clb_client.py +0 -1
- tencentcloud/clb/v20180317/models.py +17 -0
- tencentcloud/cloudapp/v20220530/cloudapp_client.py +1 -1
- tencentcloud/cloudaudit/v20190319/models.py +8 -0
- tencentcloud/cls/v20201016/models.py +2 -2
- tencentcloud/dcdb/v20180411/models.py +4 -4
- tencentcloud/dlc/v20210125/models.py +255 -0
- tencentcloud/dts/v20180330/models.py +20 -20
- tencentcloud/emr/v20190103/models.py +101 -15
- tencentcloud/ess/v20201111/ess_client.py +1 -0
- tencentcloud/ess/v20201111/models.py +114 -110
- tencentcloud/essbasic/v20210526/essbasic_client.py +61 -0
- tencentcloud/essbasic/v20210526/models.py +622 -102
- tencentcloud/facefusion/v20220927/facefusion_client.py +0 -1
- tencentcloud/facefusion/v20220927/models.py +23 -0
- tencentcloud/faceid/v20180301/errorcodes.py +3 -0
- tencentcloud/fmu/v20191213/models.py +16 -0
- tencentcloud/hai/v20230812/models.py +6 -4
- tencentcloud/live/v20180801/models.py +40 -0
- tencentcloud/mariadb/v20170312/models.py +4 -0
- tencentcloud/mps/v20190612/models.py +663 -0
- tencentcloud/mps/v20190612/mps_client.py +92 -0
- tencentcloud/msp/v20180319/msp_client.py +3 -1
- tencentcloud/omics/v20221128/models.py +15 -0
- tencentcloud/privatedns/v20201028/models.py +0 -10
- tencentcloud/redis/v20180412/models.py +299 -0
- tencentcloud/redis/v20180412/redis_client.py +46 -0
- tencentcloud/tcb/v20180608/models.py +30 -0
- tencentcloud/trocket/v20230308/models.py +216 -0
- tencentcloud/trocket/v20230308/trocket_client.py +23 -0
- tencentcloud/trtc/v20190722/errorcodes.py +3 -0
- tencentcloud/tse/v20201207/models.py +90 -0
- tencentcloud/tsf/v20180326/errorcodes.py +18 -0
- tencentcloud/tsf/v20180326/models.py +21 -4
- tencentcloud/tsf/v20180326/tsf_client.py +3 -1
- tencentcloud/vclm/v20240523/models.py +6 -4
- tencentcloud/vpc/v20170312/errorcodes.py +15 -0
- tencentcloud/vpc/v20170312/models.py +0 -28
- {tencentcloud_sdk_python-3.0.1287.dist-info → tencentcloud_sdk_python-3.0.1289.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1287.dist-info → tencentcloud_sdk_python-3.0.1289.dist-info}/RECORD +58 -53
- {tencentcloud_sdk_python-3.0.1287.dist-info → tencentcloud_sdk_python-3.0.1289.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1287.dist-info → tencentcloud_sdk_python-3.0.1289.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1287.dist-info → tencentcloud_sdk_python-3.0.1289.dist-info}/top_level.txt +0 -0
@@ -5609,6 +5609,167 @@ class DescribeMQTTUserListResponse(AbstractModel):
|
|
5609
5609
|
self._RequestId = params.get("RequestId")
|
5610
5610
|
|
5611
5611
|
|
5612
|
+
class DescribeMessageTraceRequest(AbstractModel):
|
5613
|
+
"""DescribeMessageTrace请求参数结构体
|
5614
|
+
|
5615
|
+
"""
|
5616
|
+
|
5617
|
+
def __init__(self):
|
5618
|
+
r"""
|
5619
|
+
:param _InstanceId: 集群ID
|
5620
|
+
:type InstanceId: str
|
5621
|
+
:param _Topic: 主题名称
|
5622
|
+
:type Topic: str
|
5623
|
+
:param _MsgId: 消息ID
|
5624
|
+
:type MsgId: str
|
5625
|
+
:param _QueryDeadLetterMessage: 是否是死信消息
|
5626
|
+
:type QueryDeadLetterMessage: bool
|
5627
|
+
:param _QueryDelayMessage: 是否是延时消息
|
5628
|
+
:type QueryDelayMessage: bool
|
5629
|
+
"""
|
5630
|
+
self._InstanceId = None
|
5631
|
+
self._Topic = None
|
5632
|
+
self._MsgId = None
|
5633
|
+
self._QueryDeadLetterMessage = None
|
5634
|
+
self._QueryDelayMessage = None
|
5635
|
+
|
5636
|
+
@property
|
5637
|
+
def InstanceId(self):
|
5638
|
+
"""集群ID
|
5639
|
+
:rtype: str
|
5640
|
+
"""
|
5641
|
+
return self._InstanceId
|
5642
|
+
|
5643
|
+
@InstanceId.setter
|
5644
|
+
def InstanceId(self, InstanceId):
|
5645
|
+
self._InstanceId = InstanceId
|
5646
|
+
|
5647
|
+
@property
|
5648
|
+
def Topic(self):
|
5649
|
+
"""主题名称
|
5650
|
+
:rtype: str
|
5651
|
+
"""
|
5652
|
+
return self._Topic
|
5653
|
+
|
5654
|
+
@Topic.setter
|
5655
|
+
def Topic(self, Topic):
|
5656
|
+
self._Topic = Topic
|
5657
|
+
|
5658
|
+
@property
|
5659
|
+
def MsgId(self):
|
5660
|
+
"""消息ID
|
5661
|
+
:rtype: str
|
5662
|
+
"""
|
5663
|
+
return self._MsgId
|
5664
|
+
|
5665
|
+
@MsgId.setter
|
5666
|
+
def MsgId(self, MsgId):
|
5667
|
+
self._MsgId = MsgId
|
5668
|
+
|
5669
|
+
@property
|
5670
|
+
def QueryDeadLetterMessage(self):
|
5671
|
+
"""是否是死信消息
|
5672
|
+
:rtype: bool
|
5673
|
+
"""
|
5674
|
+
return self._QueryDeadLetterMessage
|
5675
|
+
|
5676
|
+
@QueryDeadLetterMessage.setter
|
5677
|
+
def QueryDeadLetterMessage(self, QueryDeadLetterMessage):
|
5678
|
+
self._QueryDeadLetterMessage = QueryDeadLetterMessage
|
5679
|
+
|
5680
|
+
@property
|
5681
|
+
def QueryDelayMessage(self):
|
5682
|
+
"""是否是延时消息
|
5683
|
+
:rtype: bool
|
5684
|
+
"""
|
5685
|
+
return self._QueryDelayMessage
|
5686
|
+
|
5687
|
+
@QueryDelayMessage.setter
|
5688
|
+
def QueryDelayMessage(self, QueryDelayMessage):
|
5689
|
+
self._QueryDelayMessage = QueryDelayMessage
|
5690
|
+
|
5691
|
+
|
5692
|
+
def _deserialize(self, params):
|
5693
|
+
self._InstanceId = params.get("InstanceId")
|
5694
|
+
self._Topic = params.get("Topic")
|
5695
|
+
self._MsgId = params.get("MsgId")
|
5696
|
+
self._QueryDeadLetterMessage = params.get("QueryDeadLetterMessage")
|
5697
|
+
self._QueryDelayMessage = params.get("QueryDelayMessage")
|
5698
|
+
memeber_set = set(params.keys())
|
5699
|
+
for name, value in vars(self).items():
|
5700
|
+
property_name = name[1:]
|
5701
|
+
if property_name in memeber_set:
|
5702
|
+
memeber_set.remove(property_name)
|
5703
|
+
if len(memeber_set) > 0:
|
5704
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
5705
|
+
|
5706
|
+
|
5707
|
+
|
5708
|
+
class DescribeMessageTraceResponse(AbstractModel):
|
5709
|
+
"""DescribeMessageTrace返回参数结构体
|
5710
|
+
|
5711
|
+
"""
|
5712
|
+
|
5713
|
+
def __init__(self):
|
5714
|
+
r"""
|
5715
|
+
:param _ShowTopicName: 展示Topic名
|
5716
|
+
:type ShowTopicName: str
|
5717
|
+
:param _Data: 轨迹详情
|
5718
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
5719
|
+
:type Data: list of MessageTraceItem
|
5720
|
+
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
5721
|
+
:type RequestId: str
|
5722
|
+
"""
|
5723
|
+
self._ShowTopicName = None
|
5724
|
+
self._Data = None
|
5725
|
+
self._RequestId = None
|
5726
|
+
|
5727
|
+
@property
|
5728
|
+
def ShowTopicName(self):
|
5729
|
+
"""展示Topic名
|
5730
|
+
:rtype: str
|
5731
|
+
"""
|
5732
|
+
return self._ShowTopicName
|
5733
|
+
|
5734
|
+
@ShowTopicName.setter
|
5735
|
+
def ShowTopicName(self, ShowTopicName):
|
5736
|
+
self._ShowTopicName = ShowTopicName
|
5737
|
+
|
5738
|
+
@property
|
5739
|
+
def Data(self):
|
5740
|
+
"""轨迹详情
|
5741
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
5742
|
+
:rtype: list of MessageTraceItem
|
5743
|
+
"""
|
5744
|
+
return self._Data
|
5745
|
+
|
5746
|
+
@Data.setter
|
5747
|
+
def Data(self, Data):
|
5748
|
+
self._Data = Data
|
5749
|
+
|
5750
|
+
@property
|
5751
|
+
def RequestId(self):
|
5752
|
+
"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
5753
|
+
:rtype: str
|
5754
|
+
"""
|
5755
|
+
return self._RequestId
|
5756
|
+
|
5757
|
+
@RequestId.setter
|
5758
|
+
def RequestId(self, RequestId):
|
5759
|
+
self._RequestId = RequestId
|
5760
|
+
|
5761
|
+
|
5762
|
+
def _deserialize(self, params):
|
5763
|
+
self._ShowTopicName = params.get("ShowTopicName")
|
5764
|
+
if params.get("Data") is not None:
|
5765
|
+
self._Data = []
|
5766
|
+
for item in params.get("Data"):
|
5767
|
+
obj = MessageTraceItem()
|
5768
|
+
obj._deserialize(item)
|
5769
|
+
self._Data.append(obj)
|
5770
|
+
self._RequestId = params.get("RequestId")
|
5771
|
+
|
5772
|
+
|
5612
5773
|
class DescribeProductSKUsRequest(AbstractModel):
|
5613
5774
|
"""DescribeProductSKUs请求参数结构体
|
5614
5775
|
|
@@ -8652,6 +8813,61 @@ class MQTTUserItem(AbstractModel):
|
|
8652
8813
|
|
8653
8814
|
|
8654
8815
|
|
8816
|
+
class MessageTraceItem(AbstractModel):
|
8817
|
+
"""消息轨迹
|
8818
|
+
|
8819
|
+
"""
|
8820
|
+
|
8821
|
+
def __init__(self):
|
8822
|
+
r"""
|
8823
|
+
:param _Stage: 步骤
|
8824
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
8825
|
+
:type Stage: str
|
8826
|
+
:param _Data: 轨迹详情
|
8827
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
8828
|
+
:type Data: str
|
8829
|
+
"""
|
8830
|
+
self._Stage = None
|
8831
|
+
self._Data = None
|
8832
|
+
|
8833
|
+
@property
|
8834
|
+
def Stage(self):
|
8835
|
+
"""步骤
|
8836
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
8837
|
+
:rtype: str
|
8838
|
+
"""
|
8839
|
+
return self._Stage
|
8840
|
+
|
8841
|
+
@Stage.setter
|
8842
|
+
def Stage(self, Stage):
|
8843
|
+
self._Stage = Stage
|
8844
|
+
|
8845
|
+
@property
|
8846
|
+
def Data(self):
|
8847
|
+
"""轨迹详情
|
8848
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
8849
|
+
:rtype: str
|
8850
|
+
"""
|
8851
|
+
return self._Data
|
8852
|
+
|
8853
|
+
@Data.setter
|
8854
|
+
def Data(self, Data):
|
8855
|
+
self._Data = Data
|
8856
|
+
|
8857
|
+
|
8858
|
+
def _deserialize(self, params):
|
8859
|
+
self._Stage = params.get("Stage")
|
8860
|
+
self._Data = params.get("Data")
|
8861
|
+
memeber_set = set(params.keys())
|
8862
|
+
for name, value in vars(self).items():
|
8863
|
+
property_name = name[1:]
|
8864
|
+
if property_name in memeber_set:
|
8865
|
+
memeber_set.remove(property_name)
|
8866
|
+
if len(memeber_set) > 0:
|
8867
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
8868
|
+
|
8869
|
+
|
8870
|
+
|
8655
8871
|
class ModifyConsumerGroupRequest(AbstractModel):
|
8656
8872
|
"""ModifyConsumerGroup请求参数结构体
|
8657
8873
|
|
@@ -833,6 +833,29 @@ class TrocketClient(AbstractClient):
|
|
833
833
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
834
834
|
|
835
835
|
|
836
|
+
def DescribeMessageTrace(self, request):
|
837
|
+
"""根据消息 ID 查询消息轨迹。
|
838
|
+
|
839
|
+
:param request: Request instance for DescribeMessageTrace.
|
840
|
+
:type request: :class:`tencentcloud.trocket.v20230308.models.DescribeMessageTraceRequest`
|
841
|
+
:rtype: :class:`tencentcloud.trocket.v20230308.models.DescribeMessageTraceResponse`
|
842
|
+
|
843
|
+
"""
|
844
|
+
try:
|
845
|
+
params = request._serialize()
|
846
|
+
headers = request.headers
|
847
|
+
body = self.call("DescribeMessageTrace", params, headers=headers)
|
848
|
+
response = json.loads(body)
|
849
|
+
model = models.DescribeMessageTraceResponse()
|
850
|
+
model._deserialize(response["Response"])
|
851
|
+
return model
|
852
|
+
except Exception as e:
|
853
|
+
if isinstance(e, TencentCloudSDKException):
|
854
|
+
raise
|
855
|
+
else:
|
856
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
857
|
+
|
858
|
+
|
836
859
|
def DescribeProductSKUs(self, request):
|
837
860
|
"""查询产品售卖规格,针对 RocketMQ 5.x 集群。
|
838
861
|
|
@@ -347,6 +347,9 @@ MISSINGPARAMETER_VENDOR = 'MissingParameter.Vendor'
|
|
347
347
|
# EncodeParams中缺少视频输出参数。
|
348
348
|
MISSINGPARAMETER_VIDEOENCODEPARAMS = 'MissingParameter.VideoEncodeParams'
|
349
349
|
|
350
|
+
# 请求频率超限,请稍后再试
|
351
|
+
OPERATIONDENIED_FREQOVERLIMIT = 'OperationDenied.FreqOverLimit'
|
352
|
+
|
350
353
|
# 资源不足。
|
351
354
|
RESOURCEINSUFFICIENT_REQUESTREJECTION = 'ResourceInsufficient.RequestRejection'
|
352
355
|
|
@@ -6048,6 +6048,10 @@ class CreateCloudNativeAPIGatewayRouteRequest(AbstractModel):
|
|
6048
6048
|
:type DestinationPorts: list of int non-negative
|
6049
6049
|
:param _Headers: 路由的Headers
|
6050
6050
|
:type Headers: list of KVMapping
|
6051
|
+
:param _RequestBuffering: 是否缓存请求body,默认true
|
6052
|
+
:type RequestBuffering: bool
|
6053
|
+
:param _ResponseBuffering: 是否缓存响应body,默认true
|
6054
|
+
:type ResponseBuffering: bool
|
6051
6055
|
"""
|
6052
6056
|
self._GatewayId = None
|
6053
6057
|
self._ServiceID = None
|
@@ -6062,6 +6066,8 @@ class CreateCloudNativeAPIGatewayRouteRequest(AbstractModel):
|
|
6062
6066
|
self._ForceHttps = None
|
6063
6067
|
self._DestinationPorts = None
|
6064
6068
|
self._Headers = None
|
6069
|
+
self._RequestBuffering = None
|
6070
|
+
self._ResponseBuffering = None
|
6065
6071
|
|
6066
6072
|
@property
|
6067
6073
|
def GatewayId(self):
|
@@ -6228,6 +6234,28 @@ class CreateCloudNativeAPIGatewayRouteRequest(AbstractModel):
|
|
6228
6234
|
def Headers(self, Headers):
|
6229
6235
|
self._Headers = Headers
|
6230
6236
|
|
6237
|
+
@property
|
6238
|
+
def RequestBuffering(self):
|
6239
|
+
"""是否缓存请求body,默认true
|
6240
|
+
:rtype: bool
|
6241
|
+
"""
|
6242
|
+
return self._RequestBuffering
|
6243
|
+
|
6244
|
+
@RequestBuffering.setter
|
6245
|
+
def RequestBuffering(self, RequestBuffering):
|
6246
|
+
self._RequestBuffering = RequestBuffering
|
6247
|
+
|
6248
|
+
@property
|
6249
|
+
def ResponseBuffering(self):
|
6250
|
+
"""是否缓存响应body,默认true
|
6251
|
+
:rtype: bool
|
6252
|
+
"""
|
6253
|
+
return self._ResponseBuffering
|
6254
|
+
|
6255
|
+
@ResponseBuffering.setter
|
6256
|
+
def ResponseBuffering(self, ResponseBuffering):
|
6257
|
+
self._ResponseBuffering = ResponseBuffering
|
6258
|
+
|
6231
6259
|
|
6232
6260
|
def _deserialize(self, params):
|
6233
6261
|
self._GatewayId = params.get("GatewayId")
|
@@ -6248,6 +6276,8 @@ class CreateCloudNativeAPIGatewayRouteRequest(AbstractModel):
|
|
6248
6276
|
obj = KVMapping()
|
6249
6277
|
obj._deserialize(item)
|
6250
6278
|
self._Headers.append(obj)
|
6279
|
+
self._RequestBuffering = params.get("RequestBuffering")
|
6280
|
+
self._ResponseBuffering = params.get("ResponseBuffering")
|
6251
6281
|
memeber_set = set(params.keys())
|
6252
6282
|
for name, value in vars(self).items():
|
6253
6283
|
property_name = name[1:]
|
@@ -22151,6 +22181,10 @@ class KongRoutePreview(AbstractModel):
|
|
22151
22181
|
:param _Headers: 路由的Headers
|
22152
22182
|
注意:此字段可能返回 null,表示取不到有效值。
|
22153
22183
|
:type Headers: list of KVMapping
|
22184
|
+
:param _RequestBuffering: 是否缓存请求body,默认true
|
22185
|
+
:type RequestBuffering: bool
|
22186
|
+
:param _ResponseBuffering: 是否缓存响应body,默认true
|
22187
|
+
:type ResponseBuffering: bool
|
22154
22188
|
"""
|
22155
22189
|
self._ID = None
|
22156
22190
|
self._Name = None
|
@@ -22167,6 +22201,8 @@ class KongRoutePreview(AbstractModel):
|
|
22167
22201
|
self._ServiceID = None
|
22168
22202
|
self._DestinationPorts = None
|
22169
22203
|
self._Headers = None
|
22204
|
+
self._RequestBuffering = None
|
22205
|
+
self._ResponseBuffering = None
|
22170
22206
|
|
22171
22207
|
@property
|
22172
22208
|
def ID(self):
|
@@ -22352,6 +22388,28 @@ class KongRoutePreview(AbstractModel):
|
|
22352
22388
|
def Headers(self, Headers):
|
22353
22389
|
self._Headers = Headers
|
22354
22390
|
|
22391
|
+
@property
|
22392
|
+
def RequestBuffering(self):
|
22393
|
+
"""是否缓存请求body,默认true
|
22394
|
+
:rtype: bool
|
22395
|
+
"""
|
22396
|
+
return self._RequestBuffering
|
22397
|
+
|
22398
|
+
@RequestBuffering.setter
|
22399
|
+
def RequestBuffering(self, RequestBuffering):
|
22400
|
+
self._RequestBuffering = RequestBuffering
|
22401
|
+
|
22402
|
+
@property
|
22403
|
+
def ResponseBuffering(self):
|
22404
|
+
"""是否缓存响应body,默认true
|
22405
|
+
:rtype: bool
|
22406
|
+
"""
|
22407
|
+
return self._ResponseBuffering
|
22408
|
+
|
22409
|
+
@ResponseBuffering.setter
|
22410
|
+
def ResponseBuffering(self, ResponseBuffering):
|
22411
|
+
self._ResponseBuffering = ResponseBuffering
|
22412
|
+
|
22355
22413
|
|
22356
22414
|
def _deserialize(self, params):
|
22357
22415
|
self._ID = params.get("ID")
|
@@ -22374,6 +22432,8 @@ class KongRoutePreview(AbstractModel):
|
|
22374
22432
|
obj = KVMapping()
|
22375
22433
|
obj._deserialize(item)
|
22376
22434
|
self._Headers.append(obj)
|
22435
|
+
self._RequestBuffering = params.get("RequestBuffering")
|
22436
|
+
self._ResponseBuffering = params.get("ResponseBuffering")
|
22377
22437
|
memeber_set = set(params.keys())
|
22378
22438
|
for name, value in vars(self).items():
|
22379
22439
|
property_name = name[1:]
|
@@ -24806,6 +24866,10 @@ class ModifyCloudNativeAPIGatewayRouteRequest(AbstractModel):
|
|
24806
24866
|
:type DestinationPorts: list of int non-negative
|
24807
24867
|
:param _Headers: 路由的Headers
|
24808
24868
|
:type Headers: list of KVMapping
|
24869
|
+
:param _RequestBuffering: 是否缓存请求body,默认true
|
24870
|
+
:type RequestBuffering: bool
|
24871
|
+
:param _ResponseBuffering: 是否缓存响应body,默认true
|
24872
|
+
:type ResponseBuffering: bool
|
24809
24873
|
"""
|
24810
24874
|
self._GatewayId = None
|
24811
24875
|
self._ServiceID = None
|
@@ -24821,6 +24885,8 @@ class ModifyCloudNativeAPIGatewayRouteRequest(AbstractModel):
|
|
24821
24885
|
self._ForceHttps = None
|
24822
24886
|
self._DestinationPorts = None
|
24823
24887
|
self._Headers = None
|
24888
|
+
self._RequestBuffering = None
|
24889
|
+
self._ResponseBuffering = None
|
24824
24890
|
|
24825
24891
|
@property
|
24826
24892
|
def GatewayId(self):
|
@@ -24998,6 +25064,28 @@ class ModifyCloudNativeAPIGatewayRouteRequest(AbstractModel):
|
|
24998
25064
|
def Headers(self, Headers):
|
24999
25065
|
self._Headers = Headers
|
25000
25066
|
|
25067
|
+
@property
|
25068
|
+
def RequestBuffering(self):
|
25069
|
+
"""是否缓存请求body,默认true
|
25070
|
+
:rtype: bool
|
25071
|
+
"""
|
25072
|
+
return self._RequestBuffering
|
25073
|
+
|
25074
|
+
@RequestBuffering.setter
|
25075
|
+
def RequestBuffering(self, RequestBuffering):
|
25076
|
+
self._RequestBuffering = RequestBuffering
|
25077
|
+
|
25078
|
+
@property
|
25079
|
+
def ResponseBuffering(self):
|
25080
|
+
"""是否缓存响应body,默认true
|
25081
|
+
:rtype: bool
|
25082
|
+
"""
|
25083
|
+
return self._ResponseBuffering
|
25084
|
+
|
25085
|
+
@ResponseBuffering.setter
|
25086
|
+
def ResponseBuffering(self, ResponseBuffering):
|
25087
|
+
self._ResponseBuffering = ResponseBuffering
|
25088
|
+
|
25001
25089
|
|
25002
25090
|
def _deserialize(self, params):
|
25003
25091
|
self._GatewayId = params.get("GatewayId")
|
@@ -25019,6 +25107,8 @@ class ModifyCloudNativeAPIGatewayRouteRequest(AbstractModel):
|
|
25019
25107
|
obj = KVMapping()
|
25020
25108
|
obj._deserialize(item)
|
25021
25109
|
self._Headers.append(obj)
|
25110
|
+
self._RequestBuffering = params.get("RequestBuffering")
|
25111
|
+
self._ResponseBuffering = params.get("ResponseBuffering")
|
25022
25112
|
memeber_set = set(params.keys())
|
25023
25113
|
for name, value in vars(self).items():
|
25024
25114
|
property_name = name[1:]
|
@@ -98,6 +98,12 @@ FAILEDOPERATION_CONTAINERGROUPKUBERNETESAPIINVOKEERROR = 'FailedOperation.Contai
|
|
98
98
|
# 调用 kube-api-server 失败。
|
99
99
|
FAILEDOPERATION_CONTAINERGROUPKUBERNETESCONNECTERROR = 'FailedOperation.ContainergroupKubernetesConnectError'
|
100
100
|
|
101
|
+
# k8s集群可能处于异常状态,请删除或恢复k8s集群后,再进行操作
|
102
|
+
FAILEDOPERATION_CONTAINERGROUPKUBERNETESTKECLUSTERABNORMAL = 'FailedOperation.ContainergroupKubernetesTkeClusterAbnormal'
|
103
|
+
|
104
|
+
# 容器平台集群不可用,当前状态 %s
|
105
|
+
FAILEDOPERATION_CPCLUSTERUNAVAILABLE = 'FailedOperation.CpClusterUnavailable'
|
106
|
+
|
101
107
|
# 健康检查配置失败。
|
102
108
|
FAILEDOPERATION_CVMCAEMASTERHEALTHCHECKCONFIGERROR = 'FailedOperation.CvmCaeMasterHealthCheckConfigError'
|
103
109
|
|
@@ -911,6 +917,9 @@ INVALIDPARAMETERVALUE_LANEINFONOTEXISTENTRANCE = 'InvalidParameterValue.LaneInfo
|
|
911
917
|
# 泳道备注不能超过200个字符。
|
912
918
|
INVALIDPARAMETERVALUE_LANEINFOREMARKTOOLONG = 'InvalidParameterValue.LaneInfoRemarkTooLong'
|
913
919
|
|
920
|
+
# 全链路灰度规则ID错误
|
921
|
+
INVALIDPARAMETERVALUE_LANERULEIDINVALID = 'InvalidParameterValue.LaneRuleIdInvalid'
|
922
|
+
|
914
923
|
# 全链路灰度规则中的泳道不存在。
|
915
924
|
INVALIDPARAMETERVALUE_LANERULEINFONOTEXIST = 'InvalidParameterValue.LaneRuleInfoNotExist'
|
916
925
|
|
@@ -941,6 +950,15 @@ INVALIDPARAMETERVALUE_LANERULETAGNAMETOOLONG = 'InvalidParameterValue.LaneRuleTa
|
|
941
950
|
# 全链路灰度规则必须设置至少一个标签。
|
942
951
|
INVALIDPARAMETERVALUE_LANERULETAGNOTEMPTY = 'InvalidParameterValue.LaneRuleTagNotEmpty'
|
943
952
|
|
953
|
+
# 全链路灰度规则逻辑关系错误
|
954
|
+
INVALIDPARAMETERVALUE_LANERULETAGOPERATORINVALID = 'InvalidParameterValue.LaneRuleTagOperatorInvalid'
|
955
|
+
|
956
|
+
# 全链路灰度规则逻辑关系不能为空
|
957
|
+
INVALIDPARAMETERVALUE_LANERULETAGOPERATORNOTEMPTY = 'InvalidParameterValue.LaneRuleTagOperatorNotEmpty'
|
958
|
+
|
959
|
+
# 全链路灰度规则标签值不能为空
|
960
|
+
INVALIDPARAMETERVALUE_LANERULETAGVALUENOTEMPTY = 'InvalidParameterValue.LaneRuleTagValueNotEmpty'
|
961
|
+
|
944
962
|
# 全链路灰度规则标签值不能超过128个字符。
|
945
963
|
INVALIDPARAMETERVALUE_LANERULETAGVALUETOOLONG = 'InvalidParameterValue.LaneRuleTagValueTooLong'
|
946
964
|
|
@@ -1455,6 +1455,9 @@ class ApiGroupInfo(AbstractModel):
|
|
1455
1455
|
:param _ServiceNameKeyPosition: 微服务名参数位置,path,header或query,默认是path
|
1456
1456
|
注意:此字段可能返回 null,表示取不到有效值。
|
1457
1457
|
:type ServiceNameKeyPosition: str
|
1458
|
+
:param _GatewayInstanceIdList: 网关实例ID列表
|
1459
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
1460
|
+
:type GatewayInstanceIdList: list of str
|
1458
1461
|
"""
|
1459
1462
|
self._GroupId = None
|
1460
1463
|
self._GroupName = None
|
@@ -1474,6 +1477,7 @@ class ApiGroupInfo(AbstractModel):
|
|
1474
1477
|
self._ServiceNameKey = None
|
1475
1478
|
self._NamespaceNameKeyPosition = None
|
1476
1479
|
self._ServiceNameKeyPosition = None
|
1480
|
+
self._GatewayInstanceIdList = None
|
1477
1481
|
|
1478
1482
|
@property
|
1479
1483
|
def GroupId(self):
|
@@ -1691,6 +1695,18 @@ class ApiGroupInfo(AbstractModel):
|
|
1691
1695
|
def ServiceNameKeyPosition(self, ServiceNameKeyPosition):
|
1692
1696
|
self._ServiceNameKeyPosition = ServiceNameKeyPosition
|
1693
1697
|
|
1698
|
+
@property
|
1699
|
+
def GatewayInstanceIdList(self):
|
1700
|
+
"""网关实例ID列表
|
1701
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
1702
|
+
:rtype: list of str
|
1703
|
+
"""
|
1704
|
+
return self._GatewayInstanceIdList
|
1705
|
+
|
1706
|
+
@GatewayInstanceIdList.setter
|
1707
|
+
def GatewayInstanceIdList(self, GatewayInstanceIdList):
|
1708
|
+
self._GatewayInstanceIdList = GatewayInstanceIdList
|
1709
|
+
|
1694
1710
|
|
1695
1711
|
def _deserialize(self, params):
|
1696
1712
|
self._GroupId = params.get("GroupId")
|
@@ -1716,6 +1732,7 @@ class ApiGroupInfo(AbstractModel):
|
|
1716
1732
|
self._ServiceNameKey = params.get("ServiceNameKey")
|
1717
1733
|
self._NamespaceNameKeyPosition = params.get("NamespaceNameKeyPosition")
|
1718
1734
|
self._ServiceNameKeyPosition = params.get("ServiceNameKeyPosition")
|
1735
|
+
self._GatewayInstanceIdList = params.get("GatewayInstanceIdList")
|
1719
1736
|
memeber_set = set(params.keys())
|
1720
1737
|
for name, value in vars(self).items():
|
1721
1738
|
property_name = name[1:]
|
@@ -12917,7 +12934,7 @@ class CreateMicroserviceWithDetailRespResponse(AbstractModel):
|
|
12917
12934
|
|
12918
12935
|
def __init__(self):
|
12919
12936
|
r"""
|
12920
|
-
:param _Result:
|
12937
|
+
:param _Result: 微服务ID
|
12921
12938
|
:type Result: str
|
12922
12939
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
12923
12940
|
:type RequestId: str
|
@@ -12927,7 +12944,7 @@ class CreateMicroserviceWithDetailRespResponse(AbstractModel):
|
|
12927
12944
|
|
12928
12945
|
@property
|
12929
12946
|
def Result(self):
|
12930
|
-
"""
|
12947
|
+
"""微服务ID
|
12931
12948
|
:rtype: str
|
12932
12949
|
"""
|
12933
12950
|
return self._Result
|
@@ -22890,7 +22907,7 @@ class DescribeGatewayAllGroupApisRequest(AbstractModel):
|
|
22890
22907
|
r"""
|
22891
22908
|
:param _GatewayDeployGroupId: 网关部署组ID
|
22892
22909
|
:type GatewayDeployGroupId: str
|
22893
|
-
:param _SearchWord:
|
22910
|
+
:param _SearchWord: 搜索关键字,支持命名空间名称或服务名称
|
22894
22911
|
:type SearchWord: str
|
22895
22912
|
"""
|
22896
22913
|
self._GatewayDeployGroupId = None
|
@@ -22909,7 +22926,7 @@ class DescribeGatewayAllGroupApisRequest(AbstractModel):
|
|
22909
22926
|
|
22910
22927
|
@property
|
22911
22928
|
def SearchWord(self):
|
22912
|
-
"""
|
22929
|
+
"""搜索关键字,支持命名空间名称或服务名称
|
22913
22930
|
:rtype: str
|
22914
22931
|
"""
|
22915
22932
|
return self._SearchWord
|
@@ -1362,7 +1362,9 @@ class TsfClient(AbstractClient):
|
|
1362
1362
|
|
1363
1363
|
|
1364
1364
|
def DeleteServerlessGroup(self, request):
|
1365
|
-
"""
|
1365
|
+
"""serverless 能力已下线。下线对应接口。
|
1366
|
+
|
1367
|
+
删除Serverless部署组
|
1366
1368
|
|
1367
1369
|
:param request: Request instance for DeleteServerlessGroup.
|
1368
1370
|
:type request: :class:`tencentcloud.tsf.v20180326.models.DeleteServerlessGroupRequest`
|
@@ -1338,8 +1338,9 @@ class SubmitImageAnimateJobRequest(AbstractModel):
|
|
1338
1338
|
:type EnableAudio: bool
|
1339
1339
|
:param _EnableBodyJoins: 是否检测输入图人体12个身体部位(头部、颈部、右肩、右肘、右腕、左肩、左肘、左腕、右髋、左髋,、左膝、右膝)。默认不检测。
|
1340
1340
|
:type EnableBodyJoins: bool
|
1341
|
-
:param _EnableSegment:
|
1342
|
-
|
1341
|
+
:param _EnableSegment: 是否对结果视频背景进行分割,默认值为false。
|
1342
|
+
true:分割结果视频,结果视频(ResultVideoUrl)将为去除背景的绿幕视频,并返回掩码视频(MaskVideoUrl);
|
1343
|
+
false:不分割结果视频,结果视频(ResultVideoUrl)为带背景的视频,掩码视频(MaskVideoUrl)为空字符串。
|
1343
1344
|
:type EnableSegment: bool
|
1344
1345
|
:param _LogoAdd: 为生成视频添加标识的开关,默认为0。
|
1345
1346
|
1:添加标识。
|
@@ -1425,8 +1426,9 @@ class SubmitImageAnimateJobRequest(AbstractModel):
|
|
1425
1426
|
|
1426
1427
|
@property
|
1427
1428
|
def EnableSegment(self):
|
1428
|
-
"""
|
1429
|
-
|
1429
|
+
"""是否对结果视频背景进行分割,默认值为false。
|
1430
|
+
true:分割结果视频,结果视频(ResultVideoUrl)将为去除背景的绿幕视频,并返回掩码视频(MaskVideoUrl);
|
1431
|
+
false:不分割结果视频,结果视频(ResultVideoUrl)为带背景的视频,掩码视频(MaskVideoUrl)为空字符串。
|
1430
1432
|
:rtype: bool
|
1431
1433
|
"""
|
1432
1434
|
return self._EnableSegment
|
@@ -29,6 +29,9 @@ FAILEDOPERATION_ADDRESSENIINFONOTFOUND = 'FailedOperation.AddressEniInfoNotFound
|
|
29
29
|
# 账户余额不足。
|
30
30
|
FAILEDOPERATION_BALANCEINSUFFICIENT = 'FailedOperation.BalanceInsufficient'
|
31
31
|
|
32
|
+
# 创建云联网失败. 请重试你的请求,如果问题仍然存在,请联系腾讯云客服。
|
33
|
+
FAILEDOPERATION_CREATECCNFAILED = 'FailedOperation.CreateCcnFailed'
|
34
|
+
|
32
35
|
# 不支持的地域。
|
33
36
|
FAILEDOPERATION_INVALIDREGION = 'FailedOperation.InvalidRegion'
|
34
37
|
|
@@ -812,6 +815,12 @@ UNSUPPORTEDOPERATION_CLBPOLICYLIMIT = 'UnsupportedOperation.ClbPolicyLimit'
|
|
812
815
|
# 与该VPC下的TKE容器的网段重叠。
|
813
816
|
UNSUPPORTEDOPERATION_CONFLICTWITHDOCKERROUTE = 'UnsupportedOperation.ConflictWithDockerRoute'
|
814
817
|
|
818
|
+
# 当前账号不允许创建服务质量:铜云联网。
|
819
|
+
UNSUPPORTEDOPERATION_COPPERCCNNOTSUPPORTEDCREATE = 'UnsupportedOperation.CopperCcnNotSupportedCreate'
|
820
|
+
|
821
|
+
# 服务质量:铜云联网仅支持创建预付费模式。
|
822
|
+
UNSUPPORTEDOPERATION_COPPERCCNSUPPORTEDPREPAID = 'UnsupportedOperation.CopperCcnSupportedPrepaid'
|
823
|
+
|
815
824
|
# 当前账号非联通账号。
|
816
825
|
UNSUPPORTEDOPERATION_CURRENTACCOUNTISNOTUNICOMACCOUNT = 'UnsupportedOperation.CurrentAccountIsNotUnicomAccount'
|
817
826
|
|
@@ -1025,6 +1034,9 @@ UNSUPPORTEDOPERATION_NOTSUPPORTZONE = 'UnsupportedOperation.NotSupportZone'
|
|
1025
1034
|
# 该地址类型不支持释放操作。
|
1026
1035
|
UNSUPPORTEDOPERATION_NOTSUPPORTEDADDRESSIPSCHARGETYPE = 'UnsupportedOperation.NotSupportedAddressIpsChargeType'
|
1027
1036
|
|
1037
|
+
# 不支持创建后付费流量计费类型云联网
|
1038
|
+
UNSUPPORTEDOPERATION_NOTSUPPORTEDCREATETRAFFICMETERINGTYPECCN = 'UnsupportedOperation.NotSupportedCreateTrafficMeteringTypeCcn'
|
1039
|
+
|
1028
1040
|
# 此地域没有上线出口二资源,请到北京/广州/南京购买。
|
1029
1041
|
UNSUPPORTEDOPERATION_NOTSUPPORTEDPURCHASECENTEREGRESSRESOURCE = 'UnsupportedOperation.NotSupportedPurchaseCenterEgressResource'
|
1030
1042
|
|
@@ -1040,6 +1052,9 @@ UNSUPPORTEDOPERATION_OFFLINECHARGETYPE = 'UnsupportedOperation.OfflineChargeType
|
|
1040
1052
|
# 仅支持专业版Ckafka。
|
1041
1053
|
UNSUPPORTEDOPERATION_ONLYSUPPORTPROFESSIONKAFKA = 'UnsupportedOperation.OnlySupportProfessionKafka'
|
1042
1054
|
|
1055
|
+
# 预付费云联网只支持带宽计量类型
|
1056
|
+
UNSUPPORTEDOPERATION_PREPAIDCCNONLYSUPPORTBANDWIDTHMETERING = 'UnsupportedOperation.PrepaidCcnOnlySupportBandwidthMetering'
|
1057
|
+
|
1043
1058
|
# 预付费云联网只支持地域间限速。
|
1044
1059
|
UNSUPPORTEDOPERATION_PREPAIDCCNONLYSUPPORTINTERREGIONLIMIT = 'UnsupportedOperation.PrepaidCcnOnlySupportInterRegionLimit'
|
1045
1060
|
|