tencentcloud-sdk-python 3.0.1181__py2.py3-none-any.whl → 3.0.1182__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 CHANGED
@@ -14,4 +14,4 @@
14
14
  # limitations under the License.
15
15
 
16
16
 
17
- __version__ = '3.0.1181'
17
+ __version__ = '3.0.1182'
@@ -159,6 +159,31 @@ class AiartClient(AbstractClient):
159
159
  raise TencentCloudSDKException(type(e).__name__, str(e))
160
160
 
161
161
 
162
+ def ReplaceBackground(self, request):
163
+ """商品背景生成接口根据指定的背景描述 Prompt,将商品图中的原背景替换为自定义的新背景并保留商品主体形象,实现商品背景的自由生成与更换。
164
+
165
+ 商品背景生成默认提供1个并发任务数,代表最多能同时处理1个已提交的任务,上一个任务处理完毕后才能开始处理下一个任务。
166
+
167
+ :param request: Request instance for ReplaceBackground.
168
+ :type request: :class:`tencentcloud.aiart.v20221229.models.ReplaceBackgroundRequest`
169
+ :rtype: :class:`tencentcloud.aiart.v20221229.models.ReplaceBackgroundResponse`
170
+
171
+ """
172
+ try:
173
+ params = request._serialize()
174
+ headers = request.headers
175
+ body = self.call("ReplaceBackground", params, headers=headers)
176
+ response = json.loads(body)
177
+ model = models.ReplaceBackgroundResponse()
178
+ model._deserialize(response["Response"])
179
+ return model
180
+ except Exception as e:
181
+ if isinstance(e, TencentCloudSDKException):
182
+ raise
183
+ else:
184
+ raise TencentCloudSDKException(type(e).__name__, str(e))
185
+
186
+
162
187
  def SubmitDrawPortraitJob(self, request):
163
188
  """AI 写真提供 AI 写真形象照的训练与生成能力,分为上传训练图片、训练模型、生成图片3个环节,需要依次调用对应接口。
164
189
  每个写真模型自训练完成起1年内有效,有效期内可使用写真模型 ID 生成图片,期满后需要重新训练。
@@ -972,6 +972,177 @@ INIT: 初始化、WAIT:等待中、RUN:运行中、FAIL:处理失败、DON
972
972
  self._RequestId = params.get("RequestId")
973
973
 
974
974
 
975
+ class ReplaceBackgroundRequest(AbstractModel):
976
+ """ReplaceBackground请求参数结构体
977
+
978
+ """
979
+
980
+ def __init__(self):
981
+ r"""
982
+ :param _ProductUrl: 商品原图 Url。
983
+ 图片限制:单边分辨率小于4000,长宽比在2:5 ~ 5:2之间,转成 Base64 字符串后小于 6MB,格式支持 jpg、jpeg、png、bmp、tiff、webp。
984
+ :type ProductUrl: str
985
+ :param _MaskUrl: 商品 Mask 图 Url,要求背景透明,保留商品主体。
986
+ 如果不传,将自动使用内置的商品分割算法得到 Mask。
987
+ 支持自定义上传 Mask,如果该参数不为空,则以实际上传的数据为准。
988
+ 图片限制:Mask 图必须和商品原图分辨率一致,转成 Base64 字符串后小于 6MB,格式仅支持 png。
989
+ :type MaskUrl: str
990
+ :param _Prompt: 对新背景的文本描述。
991
+ 最多支持256个 utf-8 字符,支持中、英文。
992
+ :type Prompt: str
993
+ :param _Resolution: 替换背景后生成的商品图分辨率。
994
+ 支持生成单边分辨率大于500且小于4000、长宽比在2:5 ~ 5:2之间的图片,不传默认生成1280:1280。
995
+ 建议图片比例为1:1、9:16、16:9,生成效果更佳,使用其他比例的生成效果可能不如建议比例。
996
+ :type Resolution: str
997
+ :param _LogoAdd: 为生成结果图添加标识的开关,默认为1。
998
+ 1:添加标识。
999
+ 0:不添加标识。
1000
+ 其他数值:默认按1处理。
1001
+ 建议您使用显著标识来提示结果图是 AI 生成的图片。
1002
+ :type LogoAdd: int
1003
+ :param _LogoParam: 标识内容设置。
1004
+ 默认在生成结果图右下角添加“图片由 AI 生成”字样,您可根据自身需要替换为其他的标识图片。
1005
+ :type LogoParam: :class:`tencentcloud.aiart.v20221229.models.LogoParam`
1006
+ :param _RspImgType: 返回图像方式(base64 或 url) ,二选一,默认为 base64。url 有效期为1小时。
1007
+ 生成图分辨率较大时建议选择 url,使用 base64 可能因图片过大导致返回失败。
1008
+ :type RspImgType: str
1009
+ """
1010
+ self._ProductUrl = None
1011
+ self._MaskUrl = None
1012
+ self._Prompt = None
1013
+ self._Resolution = None
1014
+ self._LogoAdd = None
1015
+ self._LogoParam = None
1016
+ self._RspImgType = None
1017
+
1018
+ @property
1019
+ def ProductUrl(self):
1020
+ return self._ProductUrl
1021
+
1022
+ @ProductUrl.setter
1023
+ def ProductUrl(self, ProductUrl):
1024
+ self._ProductUrl = ProductUrl
1025
+
1026
+ @property
1027
+ def MaskUrl(self):
1028
+ return self._MaskUrl
1029
+
1030
+ @MaskUrl.setter
1031
+ def MaskUrl(self, MaskUrl):
1032
+ self._MaskUrl = MaskUrl
1033
+
1034
+ @property
1035
+ def Prompt(self):
1036
+ return self._Prompt
1037
+
1038
+ @Prompt.setter
1039
+ def Prompt(self, Prompt):
1040
+ self._Prompt = Prompt
1041
+
1042
+ @property
1043
+ def Resolution(self):
1044
+ return self._Resolution
1045
+
1046
+ @Resolution.setter
1047
+ def Resolution(self, Resolution):
1048
+ self._Resolution = Resolution
1049
+
1050
+ @property
1051
+ def LogoAdd(self):
1052
+ return self._LogoAdd
1053
+
1054
+ @LogoAdd.setter
1055
+ def LogoAdd(self, LogoAdd):
1056
+ self._LogoAdd = LogoAdd
1057
+
1058
+ @property
1059
+ def LogoParam(self):
1060
+ return self._LogoParam
1061
+
1062
+ @LogoParam.setter
1063
+ def LogoParam(self, LogoParam):
1064
+ self._LogoParam = LogoParam
1065
+
1066
+ @property
1067
+ def RspImgType(self):
1068
+ return self._RspImgType
1069
+
1070
+ @RspImgType.setter
1071
+ def RspImgType(self, RspImgType):
1072
+ self._RspImgType = RspImgType
1073
+
1074
+
1075
+ def _deserialize(self, params):
1076
+ self._ProductUrl = params.get("ProductUrl")
1077
+ self._MaskUrl = params.get("MaskUrl")
1078
+ self._Prompt = params.get("Prompt")
1079
+ self._Resolution = params.get("Resolution")
1080
+ self._LogoAdd = params.get("LogoAdd")
1081
+ if params.get("LogoParam") is not None:
1082
+ self._LogoParam = LogoParam()
1083
+ self._LogoParam._deserialize(params.get("LogoParam"))
1084
+ self._RspImgType = params.get("RspImgType")
1085
+ memeber_set = set(params.keys())
1086
+ for name, value in vars(self).items():
1087
+ property_name = name[1:]
1088
+ if property_name in memeber_set:
1089
+ memeber_set.remove(property_name)
1090
+ if len(memeber_set) > 0:
1091
+ warnings.warn("%s fileds are useless." % ",".join(memeber_set))
1092
+
1093
+
1094
+
1095
+ class ReplaceBackgroundResponse(AbstractModel):
1096
+ """ReplaceBackground返回参数结构体
1097
+
1098
+ """
1099
+
1100
+ def __init__(self):
1101
+ r"""
1102
+ :param _ResultImage: 根据入参 RspImgType 填入不同,返回不同的内容。
1103
+ 如果传入 base64 则返回生成图 Base64 编码。
1104
+ 如果传入 url 则返回的生成图 URL , 有效期1小时,请及时保存。
1105
+ :type ResultImage: str
1106
+ :param _MaskImage: 如果 MaskUrl 未传,则返回使用内置商品分割算法得到的 Mask 结果。
1107
+ :type MaskImage: str
1108
+ :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
1109
+ :type RequestId: str
1110
+ """
1111
+ self._ResultImage = None
1112
+ self._MaskImage = None
1113
+ self._RequestId = None
1114
+
1115
+ @property
1116
+ def ResultImage(self):
1117
+ return self._ResultImage
1118
+
1119
+ @ResultImage.setter
1120
+ def ResultImage(self, ResultImage):
1121
+ self._ResultImage = ResultImage
1122
+
1123
+ @property
1124
+ def MaskImage(self):
1125
+ return self._MaskImage
1126
+
1127
+ @MaskImage.setter
1128
+ def MaskImage(self, MaskImage):
1129
+ self._MaskImage = MaskImage
1130
+
1131
+ @property
1132
+ def RequestId(self):
1133
+ return self._RequestId
1134
+
1135
+ @RequestId.setter
1136
+ def RequestId(self, RequestId):
1137
+ self._RequestId = RequestId
1138
+
1139
+
1140
+ def _deserialize(self, params):
1141
+ self._ResultImage = params.get("ResultImage")
1142
+ self._MaskImage = params.get("MaskImage")
1143
+ self._RequestId = params.get("RequestId")
1144
+
1145
+
975
1146
  class ResultConfig(AbstractModel):
976
1147
  """返回结果配置
977
1148
 
@@ -1565,7 +1565,7 @@ class ClassicalListener(AbstractModel):
1565
1565
  :type HealthNum: int
1566
1566
  :param _UnhealthNum: 不健康阈值
1567
1567
  :type UnhealthNum: int
1568
- :param _HttpHash: 传统型公网负载均衡的 HTTP、HTTPS 监听器的请求均衡方法。wrr 表示按权重轮询,ip_hash 表示根据访问的源 IP 进行一致性哈希方式来分发
1568
+ :param _HttpHash: 传统型公网负载均衡 监听器的请求均衡方法。空字符串或wrr 表示按权重轮询,ip_hash 表示根据访问的源 IP 进行一致性哈希方式来分发,least_conn表示按最小连接数。
1569
1569
  :type HttpHash: str
1570
1570
  :param _HttpCode: 传统型公网负载均衡的 HTTP、HTTPS 监听器的健康检查返回码。具体可参考创建监听器中对该字段的解释
1571
1571
  :type HttpCode: int
@@ -20389,7 +20389,7 @@ class UploadFile(AbstractModel):
20389
20389
  r"""
20390
20390
  :param _FileBody: Base64编码后的文件内容
20391
20391
  :type FileBody: str
20392
- :param _FileName: 文件名
20392
+ :param _FileName: 文件名,最大长度不超过200字符
20393
20393
  :type FileName: str
20394
20394
  """
20395
20395
  self._FileBody = None
@@ -1622,7 +1622,7 @@ class CommandTake(AbstractModel):
1622
1622
  r"""
1623
1623
  :param _Cmd: 命令名。
1624
1624
  :type Cmd: str
1625
- :param _Took: 耗时时长。
1625
+ :param _Took: 耗时时长。单位:ms。
1626
1626
  :type Took: int
1627
1627
  """
1628
1628
  self._Cmd = None
@@ -5259,9 +5259,13 @@ class DescribeInstanceMonitorTopNCmdRequest(AbstractModel):
5259
5259
 
5260
5260
  def __init__(self):
5261
5261
  r"""
5262
- :param _InstanceId: 实例Id
5262
+ :param _InstanceId: 实例 ID。
5263
5263
  :type InstanceId: str
5264
- :param _SpanType: 时间范围:1——实时,2——近30分钟,3——近6小时,4——近24小时
5264
+ :param _SpanType: 时间范围。
5265
+ - 1:实时。
5266
+ - 2:近30分钟。
5267
+ - 3:近6小时。
5268
+ - 4:近24小时。
5265
5269
  :type SpanType: int
5266
5270
  """
5267
5271
  self._InstanceId = None
@@ -9655,7 +9659,7 @@ class InstanceClusterNode(AbstractModel):
9655
9659
 
9656
9660
  def __init__(self):
9657
9661
  r"""
9658
- :param _Name: 节点名称。
9662
+ :param _Name: 节点组名称。
9659
9663
  :type Name: str
9660
9664
  :param _RunId: 实例运行时节点 ID。
9661
9665
  :type RunId: str
@@ -17783,13 +17787,15 @@ class ZoneCapacityConf(AbstractModel):
17783
17787
  r"""
17784
17788
  :param _ZoneId: 可用区ID:如ap-guangzhou-3
17785
17789
  :type ZoneId: str
17786
- :param _ZoneName: 可用区名称
17790
+ :param _ZoneName: 可用区名称。
17787
17791
  :type ZoneName: str
17788
- :param _IsSaleout: 可用区是否售罄
17792
+ :param _IsSaleout: 可用区是否售罄。
17789
17793
  :type IsSaleout: bool
17790
- :param _IsDefault: 是否为默认可用区
17794
+ :param _IsDefault: 是否为默认可用区。
17791
17795
  :type IsDefault: bool
17792
- :param _NetWorkType: 网络类型:basenet -- 基础网络;vpcnet -- VPC网络
17796
+ :param _NetWorkType: 网络类型。
17797
+ - basenet:基础网络。
17798
+ - vpcnet -- VPC网络。
17793
17799
  :type NetWorkType: list of str
17794
17800
  :param _ProductSet: 可用区内产品规格等信息
17795
17801
  :type ProductSet: list of ProductConf
@@ -16500,7 +16500,7 @@ class IpTableConfig(AbstractModel):
16500
16500
 
16501
16501
 
16502
16502
  class IpTableRule(AbstractModel):
16503
- """IP黑白名单详细规则
16503
+ """自定义规则-基础访问管控配置。
16504
16504
 
16505
16505
  """
16506
16506
 
@@ -16512,32 +16512,43 @@ class IpTableRule(AbstractModel):
16512
16512
  <li> monitor:观察。</li>
16513
16513
  :type Action: str
16514
16514
  :param _MatchFrom: 根据类型匹配,取值有:
16515
- <li>ip:对ip进行匹配;</li>
16516
- <li>area:对ip所属地区匹配。</li>
16515
+ <li>ip:客户端 IP 进行匹配;</li>
16516
+ <li>area:客户端 IP 所属地区匹配;</li>
16517
+ <li>asn:客户端所属的自治系统进行匹配;</li>
16518
+ <li>referer:请求头 Referer 进行匹配;</li>
16519
+ <li>ua:请求头 User-Agent 进行匹配;</li>
16520
+ <li>url:请求 URL 进行匹配。</li>
16517
16521
  :type MatchFrom: str
16518
- :param _Operator: 规则的匹配方式,默认为空代表等于。
16519
- 取值有:
16520
- <li> is_emty:配置为空;</li>
16521
- <li> not_exists:配置为不存在;</li>
16522
- <li> include:包含;</li>
16523
- <li> not_include:不包含;</li>
16524
- <li> equal:等于;</li>
16525
- <li> not_equal:不等于。</li>
16526
- 注意:此字段可能返回 null,表示取不到有效值。
16522
+ :param _Operator: 规则的匹配方式。取值有:
16523
+ <li> match:匹配,适用于 MatchFrom 为 ip;</li>
16524
+ <li> not_match:不匹配,适用于 MatchFrom 为 ip;</li>
16525
+ <li> include_area:地域包含,适用于 MatchFrom 为 area;</li>
16526
+ <li> not_include_area:地域不包含,适用于 MatchFrom 为 area;</li>
16527
+ <li> asn_match:ASN 包含,适用于 MatchFrom 为 asn;</li>
16528
+ <li> asn_not_match:ASN 不包含,适用于 MatchFrom 为 asn;</li>
16529
+ <li> equal:等于,适用于 MatchFrom 为 ua , referer;</li>
16530
+ <li> not_equal:不等于,适用于 MatchFrom 为 ua , referer;</li>
16531
+ <li> include:通配符匹配,适用于 MatchFrom 为 ua , referer , url;</li>
16532
+ <li> not_include:通配符不匹配,适用于 MatchFrom 为 ua , referer;</li>
16533
+ <li> is_emty:配置内容为空,适用于 MatchFrom 为 ua , referer;</li>
16534
+ <li> not_exists:配置内容不存在,适用于 MatchFrom 为 ua , referer。</li>
16527
16535
  :type Operator: str
16528
16536
  :param _RuleID: 规则id。仅出参使用。
16529
16537
  :type RuleID: int
16530
16538
  :param _UpdateTime: 更新时间。仅出参使用。
16531
16539
  :type UpdateTime: str
16532
- :param _Status: 规则启用状态,当返回为null时,为启用。取值有:
16540
+ :param _Status: 规则启用状态。取值有:
16533
16541
  <li> on:启用;</li>
16534
16542
  <li> off:未启用。</li>
16535
- 注意:此字段可能返回 null,表示取不到有效值。
16543
+ 当入参缺省时,按 on 取值。
16536
16544
  :type Status: str
16537
16545
  :param _RuleName: 规则名。
16538
16546
  注意:此字段可能返回 null,表示取不到有效值。
16539
16547
  :type RuleName: str
16540
- :param _MatchContent: 匹配内容。当 Operator为is_emty 或not_exists时,此值允许为空。
16548
+ :param _MatchContent: 匹配内容。支持多值输入。
16549
+ <li>当输入多个匹配值时,请使用英文逗号分隔;</li>
16550
+ <li>当 MatchFrom 为 ua 时,不支持多值输入;</li>
16551
+ <li>当 Operator 为 is_empty 或 not_exists 时,本字段入参值无效。</li>
16541
16552
  :type MatchContent: str
16542
16553
  """
16543
16554
  self._Action = None
@@ -1113,11 +1113,17 @@ hi:印地语
1113
1113
  :type ProjectId: int
1114
1114
  :param _SourceTextList: 待翻译的文本列表,批量接口可以以数组方式在一次请求中填写多个待翻译文本。文本统一使用utf-8格式编码,非utf-8格式编码字符会翻译失败,请传入有效文本,html标记等非常规翻译文本可能会翻译失败。单次请求的文本长度总和需要低于6000字符。
1115
1115
  :type SourceTextList: list of str
1116
+ :param _TermRepoIDList: 需要使用的术语库列表
1117
+ :type TermRepoIDList: list of str
1118
+ :param _SentRepoIDList: 需要使用的例句库列表
1119
+ :type SentRepoIDList: list of str
1116
1120
  """
1117
1121
  self._Source = None
1118
1122
  self._Target = None
1119
1123
  self._ProjectId = None
1120
1124
  self._SourceTextList = None
1125
+ self._TermRepoIDList = None
1126
+ self._SentRepoIDList = None
1121
1127
 
1122
1128
  @property
1123
1129
  def Source(self):
@@ -1151,12 +1157,30 @@ hi:印地语
1151
1157
  def SourceTextList(self, SourceTextList):
1152
1158
  self._SourceTextList = SourceTextList
1153
1159
 
1160
+ @property
1161
+ def TermRepoIDList(self):
1162
+ return self._TermRepoIDList
1163
+
1164
+ @TermRepoIDList.setter
1165
+ def TermRepoIDList(self, TermRepoIDList):
1166
+ self._TermRepoIDList = TermRepoIDList
1167
+
1168
+ @property
1169
+ def SentRepoIDList(self):
1170
+ return self._SentRepoIDList
1171
+
1172
+ @SentRepoIDList.setter
1173
+ def SentRepoIDList(self, SentRepoIDList):
1174
+ self._SentRepoIDList = SentRepoIDList
1175
+
1154
1176
 
1155
1177
  def _deserialize(self, params):
1156
1178
  self._Source = params.get("Source")
1157
1179
  self._Target = params.get("Target")
1158
1180
  self._ProjectId = params.get("ProjectId")
1159
1181
  self._SourceTextList = params.get("SourceTextList")
1182
+ self._TermRepoIDList = params.get("TermRepoIDList")
1183
+ self._SentRepoIDList = params.get("SentRepoIDList")
1160
1184
  memeber_set = set(params.keys())
1161
1185
  for name, value in vars(self).items():
1162
1186
  property_name = name[1:]
@@ -1283,12 +1307,18 @@ hi:印地语
1283
1307
  :type ProjectId: int
1284
1308
  :param _UntranslatedText: 用来标记不希望被翻译的文本内容,如句子中的特殊符号、人名、地名等;每次请求只支持配置一个不被翻译的单词;仅支持配置人名、地名等名词,不要配置动词或短语,否则会影响翻译结果。
1285
1309
  :type UntranslatedText: str
1310
+ :param _TermRepoIDList: 需要使用的术语库列表
1311
+ :type TermRepoIDList: list of str
1312
+ :param _SentRepoIDList: 需要使用的例句库列表
1313
+ :type SentRepoIDList: list of str
1286
1314
  """
1287
1315
  self._SourceText = None
1288
1316
  self._Source = None
1289
1317
  self._Target = None
1290
1318
  self._ProjectId = None
1291
1319
  self._UntranslatedText = None
1320
+ self._TermRepoIDList = None
1321
+ self._SentRepoIDList = None
1292
1322
 
1293
1323
  @property
1294
1324
  def SourceText(self):
@@ -1330,6 +1360,22 @@ hi:印地语
1330
1360
  def UntranslatedText(self, UntranslatedText):
1331
1361
  self._UntranslatedText = UntranslatedText
1332
1362
 
1363
+ @property
1364
+ def TermRepoIDList(self):
1365
+ return self._TermRepoIDList
1366
+
1367
+ @TermRepoIDList.setter
1368
+ def TermRepoIDList(self, TermRepoIDList):
1369
+ self._TermRepoIDList = TermRepoIDList
1370
+
1371
+ @property
1372
+ def SentRepoIDList(self):
1373
+ return self._SentRepoIDList
1374
+
1375
+ @SentRepoIDList.setter
1376
+ def SentRepoIDList(self, SentRepoIDList):
1377
+ self._SentRepoIDList = SentRepoIDList
1378
+
1333
1379
 
1334
1380
  def _deserialize(self, params):
1335
1381
  self._SourceText = params.get("SourceText")
@@ -1337,6 +1383,8 @@ hi:印地语
1337
1383
  self._Target = params.get("Target")
1338
1384
  self._ProjectId = params.get("ProjectId")
1339
1385
  self._UntranslatedText = params.get("UntranslatedText")
1386
+ self._TermRepoIDList = params.get("TermRepoIDList")
1387
+ self._SentRepoIDList = params.get("SentRepoIDList")
1340
1388
  memeber_set = set(params.keys())
1341
1389
  for name, value in vars(self).items():
1342
1390
  property_name = name[1:]
@@ -4244,6 +4244,21 @@ class ClbObject(AbstractModel):
4244
4244
  :param _Region: 对象地域
4245
4245
  注意:此字段可能返回 null,表示取不到有效值。
4246
4246
  :type Region: str
4247
+ :param _Proxy: 代理状态: 0:不开启,1:以XFF的第一个IP地址作为客户端IP,2:以remote_addr作为客户端IP,3:从指定的头部字段获取客户端IP,字段通过IpHeaders字段给出
4248
+ 注意:此字段可能返回 null,表示取不到有效值。
4249
+ :type Proxy: int
4250
+ :param _IpHeaders: 指定获取客户端IP的头部字段列表。IsCdn为3时有效
4251
+ 注意:此字段可能返回 null,表示取不到有效值。
4252
+ :type IpHeaders: list of str
4253
+ :param _BotStatus: bot防护开关
4254
+ 注意:此字段可能返回 null,表示取不到有效值。
4255
+ :type BotStatus: int
4256
+ :param _ApiStatus: api防护开关
4257
+ 注意:此字段可能返回 null,表示取不到有效值。
4258
+ :type ApiStatus: int
4259
+ :param _ObjectFlowMode: 对象接入模式,0表示镜像模式,1表示清洗模式,2表示体检模式,默认为清洗模式
4260
+ 注意:此字段可能返回 null,表示取不到有效值。
4261
+ :type ObjectFlowMode: int
4247
4262
  """
4248
4263
  self._ObjectId = None
4249
4264
  self._InstanceId = None
@@ -4262,6 +4277,11 @@ class ClbObject(AbstractModel):
4262
4277
  self._PostCKafkaStatus = None
4263
4278
  self._Type = None
4264
4279
  self._Region = None
4280
+ self._Proxy = None
4281
+ self._IpHeaders = None
4282
+ self._BotStatus = None
4283
+ self._ApiStatus = None
4284
+ self._ObjectFlowMode = None
4265
4285
 
4266
4286
  @property
4267
4287
  def ObjectId(self):
@@ -4399,6 +4419,46 @@ class ClbObject(AbstractModel):
4399
4419
  def Region(self, Region):
4400
4420
  self._Region = Region
4401
4421
 
4422
+ @property
4423
+ def Proxy(self):
4424
+ return self._Proxy
4425
+
4426
+ @Proxy.setter
4427
+ def Proxy(self, Proxy):
4428
+ self._Proxy = Proxy
4429
+
4430
+ @property
4431
+ def IpHeaders(self):
4432
+ return self._IpHeaders
4433
+
4434
+ @IpHeaders.setter
4435
+ def IpHeaders(self, IpHeaders):
4436
+ self._IpHeaders = IpHeaders
4437
+
4438
+ @property
4439
+ def BotStatus(self):
4440
+ return self._BotStatus
4441
+
4442
+ @BotStatus.setter
4443
+ def BotStatus(self, BotStatus):
4444
+ self._BotStatus = BotStatus
4445
+
4446
+ @property
4447
+ def ApiStatus(self):
4448
+ return self._ApiStatus
4449
+
4450
+ @ApiStatus.setter
4451
+ def ApiStatus(self, ApiStatus):
4452
+ self._ApiStatus = ApiStatus
4453
+
4454
+ @property
4455
+ def ObjectFlowMode(self):
4456
+ return self._ObjectFlowMode
4457
+
4458
+ @ObjectFlowMode.setter
4459
+ def ObjectFlowMode(self, ObjectFlowMode):
4460
+ self._ObjectFlowMode = ObjectFlowMode
4461
+
4402
4462
 
4403
4463
  def _deserialize(self, params):
4404
4464
  self._ObjectId = params.get("ObjectId")
@@ -4418,6 +4478,11 @@ class ClbObject(AbstractModel):
4418
4478
  self._PostCKafkaStatus = params.get("PostCKafkaStatus")
4419
4479
  self._Type = params.get("Type")
4420
4480
  self._Region = params.get("Region")
4481
+ self._Proxy = params.get("Proxy")
4482
+ self._IpHeaders = params.get("IpHeaders")
4483
+ self._BotStatus = params.get("BotStatus")
4484
+ self._ApiStatus = params.get("ApiStatus")
4485
+ self._ObjectFlowMode = params.get("ObjectFlowMode")
4421
4486
  memeber_set = set(params.keys())
4422
4487
  for name, value in vars(self).items():
4423
4488
  property_name = name[1:]
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: tencentcloud-sdk-python
3
- Version: 3.0.1181
3
+ Version: 3.0.1182
4
4
  Summary: Tencent Cloud SDK for Python
5
5
  Home-page: https://github.com/TencentCloud/tencentcloud-sdk-python
6
6
  Author: Tencent Cloud
@@ -50,7 +50,7 @@ QcloudApi/modules/vod.py,sha256=l05_qYx0l5bq6LJ8mAX2YO3pRXzxY3JMdDHV1N_SRKE,679
50
50
  QcloudApi/modules/vpc.py,sha256=JBiNpcnrAwf_UJ_UdpxQybKeCTfeveJ9R1B-vO1_w_U,679
51
51
  QcloudApi/modules/wenzhi.py,sha256=hr1rRLU8TxxSfejMqV2O4alO_yXF3C0tfZMSzziu54Q,685
52
52
  QcloudApi/modules/yunsou.py,sha256=JlgzMjnJaho6axFVhSTAv6DS0HLcjl0LJL02q6qI2yY,685
53
- tencentcloud/__init__.py,sha256=dx4bRF5OvR6STaQrKZTLw7AY3LDro9For6GZ3PcuCjA,631
53
+ tencentcloud/__init__.py,sha256=wioextrIUl6Kch5Fhy4WR4wpyqT7FQPtURpfKYNQtjM,631
54
54
  tencentcloud/aa/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
55
55
  tencentcloud/aa/v20200224/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
56
56
  tencentcloud/aa/v20200224/aa_client.py,sha256=L7P5zpJElo9WoLSkhvLxnfpEGCZ1q2e5Fzx3wLEioAA,2184
@@ -83,9 +83,9 @@ tencentcloud/afc/v20200226/errorcodes.py,sha256=DQPz-hl3I1UcoRcILjf6TY9owGeSunfP
83
83
  tencentcloud/afc/v20200226/models.py,sha256=06n4wxRGhf5ZmIJSzRYzfbWPwFGtRbZez2crBg_jt9A,40860
84
84
  tencentcloud/aiart/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
85
85
  tencentcloud/aiart/v20221229/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
86
- tencentcloud/aiart/v20221229/aiart_client.py,sha256=ZloMYUhvLJla8Ok57JMwRBk6DEHvcIcu4uNAgRd-TAk,16147
86
+ tencentcloud/aiart/v20221229/aiart_client.py,sha256=vGqI8DpL7pUfF9GrhmrN92YC9SNgRkB4xnGbxcKmTRs,17375
87
87
  tencentcloud/aiart/v20221229/errorcodes.py,sha256=Vaofe0Q5YAxZcvdoEvMGVwFVPD0MGk5kmT0TyhFxPII,4005
88
- tencentcloud/aiart/v20221229/models.py,sha256=9-rjbQsNerxhCy5ce4whnyweqxVBa2wTcrJ_shoUWLE,53020
88
+ tencentcloud/aiart/v20221229/models.py,sha256=Kouz6Mh2gWLw6vPFQk-GKWnDWurzYKGITMmvVwjke5o,58886
89
89
  tencentcloud/ame/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
90
90
  tencentcloud/ame/v20190916/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
91
91
  tencentcloud/ame/v20190916/ame_client.py,sha256=Y1bNhduaCVJpFV6smgB_fsZl8u4YrAdPPPfEUXdXtQw,29579
@@ -355,7 +355,7 @@ tencentcloud/clb/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,
355
355
  tencentcloud/clb/v20180317/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
356
356
  tencentcloud/clb/v20180317/clb_client.py,sha256=nh3jUzeAnA6uOK7qKu0PJYGzMbWhXPCfr-Jl4IyyLEk,98330
357
357
  tencentcloud/clb/v20180317/errorcodes.py,sha256=-1jF9sFQP2uW66RiYap59W9MWhxrkY06L_OI7X4ScT0,3889
358
- tencentcloud/clb/v20180317/models.py,sha256=whRWQfOAAvvXsSA48nLbDEDmGrzo5rTXZnAZ7HpkSxc,557017
358
+ tencentcloud/clb/v20180317/models.py,sha256=F55CdXlQhe_s9NHhtc_w9-AfDzuoZdp9A3zXEwdzOMQ,557056
359
359
  tencentcloud/cloudaudit/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
360
360
  tencentcloud/cloudaudit/v20190319/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
361
361
  tencentcloud/cloudaudit/v20190319/cloudaudit_client.py,sha256=BWA2XgkWy3qamfTBi94zwj3a9rCkDq_8dEqf8JnE4u4,18608
@@ -591,7 +591,7 @@ tencentcloud/essbasic/v20201222/models.py,sha256=Q2E6jmVT1emRziwRN-qj8XpdzpxvqqH
591
591
  tencentcloud/essbasic/v20210526/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
592
592
  tencentcloud/essbasic/v20210526/errorcodes.py,sha256=L1_0J4AOPtBTgtVqauXq0aVisXRe03bOUWFB0QCnXRs,18219
593
593
  tencentcloud/essbasic/v20210526/essbasic_client.py,sha256=nsdLmeEn2-mMcxGUJSB3rStPb3AtwOx7OcKbelwkf0k,139508
594
- tencentcloud/essbasic/v20210526/models.py,sha256=kn0XznZ1ILT-F7VQtfVD0k5cDfDTPrXu-r4Re2Wucew,756890
594
+ tencentcloud/essbasic/v20210526/models.py,sha256=VujTCOeqJFN7nAkBFmEuM52hK2FQUC1VQuqJ9tPM_6U,756923
595
595
  tencentcloud/facefusion/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
596
596
  tencentcloud/facefusion/v20181201/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
597
597
  tencentcloud/facefusion/v20181201/errorcodes.py,sha256=v269JghsRzIpaQbiHgyqn8wKNfvjYkVM7SjaPBRQYPs,5731
@@ -965,7 +965,7 @@ tencentcloud/rce/v20201103/rce_client.py,sha256=HIwYdqWmTYoWccklsPSzZB7AbEuXi5qr
965
965
  tencentcloud/redis/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
966
966
  tencentcloud/redis/v20180412/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
967
967
  tencentcloud/redis/v20180412/errorcodes.py,sha256=WK4ma6-bD4uo_6-uEMOkKjCVPpu4IEZkrONWPc0pf-k,12533
968
- tencentcloud/redis/v20180412/models.py,sha256=UweqSi0pzQPJRyQbxSAAuY4W5hvwUkwdUMVDmUY5ccg,528026
968
+ tencentcloud/redis/v20180412/models.py,sha256=IyX6NjrtvRQQbASk30bKADqKUnJwZvMD4abFej7_uXc,528067
969
969
  tencentcloud/redis/v20180412/redis_client.py,sha256=7WNXJGBz2XmhN3Z_CmyJvx0FKsSjZjswaguBOKOYelA,97833
970
970
  tencentcloud/region/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
971
971
  tencentcloud/region/v20220627/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -1191,7 +1191,7 @@ tencentcloud/teo/v20220106/models.py,sha256=rkriO1NNqjyJntfd99ifhT61-9R0muvljDfS
1191
1191
  tencentcloud/teo/v20220106/teo_client.py,sha256=zKdu8PLL0kN-RRe1XGMwbrcaYtB_Ou7Z6YXb50_K2Gc,5399
1192
1192
  tencentcloud/teo/v20220901/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1193
1193
  tencentcloud/teo/v20220901/errorcodes.py,sha256=NSHogho8uTREBAPzAWHCBa4sgiC0yGXi-WFJxhcN9xQ,48459
1194
- tencentcloud/teo/v20220901/models.py,sha256=Oz74_6C16KdQdGkbfw6Qe9ZPheZRy83jz83E8BzSdWA,854797
1194
+ tencentcloud/teo/v20220901/models.py,sha256=6T7EwFsvAM5E8D6jQ3xi0J1rcgRIPPPhtLyVx1g1egY,855732
1195
1195
  tencentcloud/teo/v20220901/teo_client.py,sha256=N-o1Vt9Qpkr26ROBazDppmut7ltdkmCywy6DiCq8zLk,106588
1196
1196
  tencentcloud/thpc/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1197
1197
  tencentcloud/thpc/v20211109/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -1276,7 +1276,7 @@ tencentcloud/tms/v20201229/tms_client.py,sha256=aJ0uX_8x0fPqiyFknUgLIlzkkLAuyefz
1276
1276
  tencentcloud/tmt/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1277
1277
  tencentcloud/tmt/v20180321/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1278
1278
  tencentcloud/tmt/v20180321/errorcodes.py,sha256=02JSxOYBCGnhnWIOoq_vq6NdA_uE5zxiGupv5e216sg,3954
1279
- tencentcloud/tmt/v20180321/models.py,sha256=6aZRoAwjP3ZuqFatbSBxbW2IZhRLuxEfgLcLfvBdN_0,48881
1279
+ tencentcloud/tmt/v20180321/models.py,sha256=9bcx63ECg7XxhJo0r9TJKpmkTCruXYxWV1-vBV9TUK8,50489
1280
1280
  tencentcloud/tmt/v20180321/tmt_client.py,sha256=HIfWNhPwq2OPsPYXJqzPYlMcAttcjhkxm7HBOTy9EXA,9506
1281
1281
  tencentcloud/tourism/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1282
1282
  tencentcloud/tourism/v20230215/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -1398,7 +1398,7 @@ tencentcloud/vtc/v20240223/vtc_client.py,sha256=wKEl18_qAgYTCSrBP1O-tRzss_0zKwFh
1398
1398
  tencentcloud/waf/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1399
1399
  tencentcloud/waf/v20180125/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1400
1400
  tencentcloud/waf/v20180125/errorcodes.py,sha256=TfdUI69vFYieWMbAHQ3DdrM-F4M7ZB-zYAbO5wyYNto,6152
1401
- tencentcloud/waf/v20180125/models.py,sha256=gkIVjDWXkvtQHRQTACMkshiWHEdr3BMhPcxPNXll8fU,805799
1401
+ tencentcloud/waf/v20180125/models.py,sha256=yACiDG1K7ytnPrybGqxjgLox0gv46R0oZLp7ecNeJPE,808057
1402
1402
  tencentcloud/waf/v20180125/waf_client.py,sha256=9k5gFwdFtkDPswVEr35h0Yru3flMdyWbiUcbIubZoJ4,129357
1403
1403
  tencentcloud/wav/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1404
1404
  tencentcloud/wav/v20210129/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -1444,8 +1444,8 @@ tencentcloud/yunsou/v20191115/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5N
1444
1444
  tencentcloud/yunsou/v20191115/errorcodes.py,sha256=zB4-XPxmvEhgHoLsKlbayJVRLEagPDcs-UAheVZCoAc,1301
1445
1445
  tencentcloud/yunsou/v20191115/models.py,sha256=sNTR9ixO8CV9yKQahrhOsEJlxOK5d7aXBoIBIPxfJsQ,23137
1446
1446
  tencentcloud/yunsou/v20191115/yunsou_client.py,sha256=ly73Hr8rGamWa6AAvQjurKgd4L83PRY5WjcDv4ziQC8,2741
1447
- tencentcloud_sdk_python-3.0.1181.dist-info/LICENSE,sha256=AJyIQ6mPzTpsFn6i0cG6OPVdhJ85l_mfdoOR7J4DnRw,11351
1448
- tencentcloud_sdk_python-3.0.1181.dist-info/METADATA,sha256=5csIbaJQhT900js6cd_yaHylLvLKw3IlRghKddlXFVc,1511
1449
- tencentcloud_sdk_python-3.0.1181.dist-info/WHEEL,sha256=z9j0xAa_JmUKMpmz72K0ZGALSM_n-wQVmGbleXx2VHg,110
1450
- tencentcloud_sdk_python-3.0.1181.dist-info/top_level.txt,sha256=7kItXWSGlPDkhHTt2qPSt8zrlsPHLfRofR1QJo6eV_A,23
1451
- tencentcloud_sdk_python-3.0.1181.dist-info/RECORD,,
1447
+ tencentcloud_sdk_python-3.0.1182.dist-info/LICENSE,sha256=AJyIQ6mPzTpsFn6i0cG6OPVdhJ85l_mfdoOR7J4DnRw,11351
1448
+ tencentcloud_sdk_python-3.0.1182.dist-info/METADATA,sha256=7NbdgTyPRuh1NDbj_bexD5q3KIvtrPaNm397WnwKIro,1511
1449
+ tencentcloud_sdk_python-3.0.1182.dist-info/WHEEL,sha256=z9j0xAa_JmUKMpmz72K0ZGALSM_n-wQVmGbleXx2VHg,110
1450
+ tencentcloud_sdk_python-3.0.1182.dist-info/top_level.txt,sha256=7kItXWSGlPDkhHTt2qPSt8zrlsPHLfRofR1QJo6eV_A,23
1451
+ tencentcloud_sdk_python-3.0.1182.dist-info/RECORD,,