tencentcloud-sdk-python 3.0.1324__py2.py3-none-any.whl → 3.0.1325__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/apm/v20210622/apm_client.py +23 -0
- tencentcloud/apm/v20210622/models.py +226 -0
- tencentcloud/dc/v20180410/models.py +15 -0
- tencentcloud/emr/v20190103/models.py +96 -0
- tencentcloud/mna/v20210119/models.py +0 -58
- tencentcloud/ocr/v20181119/ocr_client.py +3 -1
- tencentcloud/scf/v20180416/models.py +2 -2
- {tencentcloud_sdk_python-3.0.1324.dist-info → tencentcloud_sdk_python-3.0.1325.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1324.dist-info → tencentcloud_sdk_python-3.0.1325.dist-info}/RECORD +13 -13
- {tencentcloud_sdk_python-3.0.1324.dist-info → tencentcloud_sdk_python-3.0.1325.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1324.dist-info → tencentcloud_sdk_python-3.0.1325.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1324.dist-info → tencentcloud_sdk_python-3.0.1325.dist-info}/top_level.txt +0 -0
tencentcloud/__init__.py
CHANGED
@@ -142,6 +142,29 @@ class ApmClient(AbstractClient):
|
|
142
142
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
143
143
|
|
144
144
|
|
145
|
+
def DescribeGeneralOTSpanList(self, request):
|
146
|
+
"""通用查询 OpenTelemetry 调用链列表
|
147
|
+
|
148
|
+
:param request: Request instance for DescribeGeneralOTSpanList.
|
149
|
+
:type request: :class:`tencentcloud.apm.v20210622.models.DescribeGeneralOTSpanListRequest`
|
150
|
+
:rtype: :class:`tencentcloud.apm.v20210622.models.DescribeGeneralOTSpanListResponse`
|
151
|
+
|
152
|
+
"""
|
153
|
+
try:
|
154
|
+
params = request._serialize()
|
155
|
+
headers = request.headers
|
156
|
+
body = self.call("DescribeGeneralOTSpanList", params, headers=headers)
|
157
|
+
response = json.loads(body)
|
158
|
+
model = models.DescribeGeneralOTSpanListResponse()
|
159
|
+
model._deserialize(response["Response"])
|
160
|
+
return model
|
161
|
+
except Exception as e:
|
162
|
+
if isinstance(e, TencentCloudSDKException):
|
163
|
+
raise
|
164
|
+
else:
|
165
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
166
|
+
|
167
|
+
|
145
168
|
def DescribeGeneralSpanList(self, request):
|
146
169
|
"""通用查询调用链列表
|
147
170
|
|
@@ -2176,6 +2176,232 @@ class DescribeGeneralMetricDataResponse(AbstractModel):
|
|
2176
2176
|
self._RequestId = params.get("RequestId")
|
2177
2177
|
|
2178
2178
|
|
2179
|
+
class DescribeGeneralOTSpanListRequest(AbstractModel):
|
2180
|
+
"""DescribeGeneralOTSpanList请求参数结构体
|
2181
|
+
|
2182
|
+
"""
|
2183
|
+
|
2184
|
+
def __init__(self):
|
2185
|
+
r"""
|
2186
|
+
:param _InstanceId: 业务系统 ID
|
2187
|
+
:type InstanceId: str
|
2188
|
+
:param _StartTime: Span 查询开始时间戳(单位:秒)
|
2189
|
+
:type StartTime: int
|
2190
|
+
:param _EndTime: Span 查询结束时间戳(单位:秒)
|
2191
|
+
:type EndTime: int
|
2192
|
+
:param _Filters: 通用过滤参数
|
2193
|
+
:type Filters: list of Filter
|
2194
|
+
:param _OrderBy: 排序
|
2195
|
+
现支持的 Key 有:
|
2196
|
+
|
2197
|
+
- startTime(开始时间)
|
2198
|
+
- endTime(结束时间)
|
2199
|
+
- duration(响应时间)
|
2200
|
+
|
2201
|
+
现支持的 Value 有:
|
2202
|
+
|
2203
|
+
- desc(降序排序)
|
2204
|
+
- asc(升序排序)
|
2205
|
+
:type OrderBy: :class:`tencentcloud.apm.v20210622.models.OrderBy`
|
2206
|
+
:param _BusinessName: 业务自身服务名,控制台用户请填写taw
|
2207
|
+
:type BusinessName: str
|
2208
|
+
:param _Limit: 单页项目个数,默认为10000,合法取值范围为0~10000
|
2209
|
+
:type Limit: int
|
2210
|
+
:param _Offset: 分页
|
2211
|
+
:type Offset: int
|
2212
|
+
"""
|
2213
|
+
self._InstanceId = None
|
2214
|
+
self._StartTime = None
|
2215
|
+
self._EndTime = None
|
2216
|
+
self._Filters = None
|
2217
|
+
self._OrderBy = None
|
2218
|
+
self._BusinessName = None
|
2219
|
+
self._Limit = None
|
2220
|
+
self._Offset = None
|
2221
|
+
|
2222
|
+
@property
|
2223
|
+
def InstanceId(self):
|
2224
|
+
"""业务系统 ID
|
2225
|
+
:rtype: str
|
2226
|
+
"""
|
2227
|
+
return self._InstanceId
|
2228
|
+
|
2229
|
+
@InstanceId.setter
|
2230
|
+
def InstanceId(self, InstanceId):
|
2231
|
+
self._InstanceId = InstanceId
|
2232
|
+
|
2233
|
+
@property
|
2234
|
+
def StartTime(self):
|
2235
|
+
"""Span 查询开始时间戳(单位:秒)
|
2236
|
+
:rtype: int
|
2237
|
+
"""
|
2238
|
+
return self._StartTime
|
2239
|
+
|
2240
|
+
@StartTime.setter
|
2241
|
+
def StartTime(self, StartTime):
|
2242
|
+
self._StartTime = StartTime
|
2243
|
+
|
2244
|
+
@property
|
2245
|
+
def EndTime(self):
|
2246
|
+
"""Span 查询结束时间戳(单位:秒)
|
2247
|
+
:rtype: int
|
2248
|
+
"""
|
2249
|
+
return self._EndTime
|
2250
|
+
|
2251
|
+
@EndTime.setter
|
2252
|
+
def EndTime(self, EndTime):
|
2253
|
+
self._EndTime = EndTime
|
2254
|
+
|
2255
|
+
@property
|
2256
|
+
def Filters(self):
|
2257
|
+
"""通用过滤参数
|
2258
|
+
:rtype: list of Filter
|
2259
|
+
"""
|
2260
|
+
return self._Filters
|
2261
|
+
|
2262
|
+
@Filters.setter
|
2263
|
+
def Filters(self, Filters):
|
2264
|
+
self._Filters = Filters
|
2265
|
+
|
2266
|
+
@property
|
2267
|
+
def OrderBy(self):
|
2268
|
+
"""排序
|
2269
|
+
现支持的 Key 有:
|
2270
|
+
|
2271
|
+
- startTime(开始时间)
|
2272
|
+
- endTime(结束时间)
|
2273
|
+
- duration(响应时间)
|
2274
|
+
|
2275
|
+
现支持的 Value 有:
|
2276
|
+
|
2277
|
+
- desc(降序排序)
|
2278
|
+
- asc(升序排序)
|
2279
|
+
:rtype: :class:`tencentcloud.apm.v20210622.models.OrderBy`
|
2280
|
+
"""
|
2281
|
+
return self._OrderBy
|
2282
|
+
|
2283
|
+
@OrderBy.setter
|
2284
|
+
def OrderBy(self, OrderBy):
|
2285
|
+
self._OrderBy = OrderBy
|
2286
|
+
|
2287
|
+
@property
|
2288
|
+
def BusinessName(self):
|
2289
|
+
"""业务自身服务名,控制台用户请填写taw
|
2290
|
+
:rtype: str
|
2291
|
+
"""
|
2292
|
+
return self._BusinessName
|
2293
|
+
|
2294
|
+
@BusinessName.setter
|
2295
|
+
def BusinessName(self, BusinessName):
|
2296
|
+
self._BusinessName = BusinessName
|
2297
|
+
|
2298
|
+
@property
|
2299
|
+
def Limit(self):
|
2300
|
+
"""单页项目个数,默认为10000,合法取值范围为0~10000
|
2301
|
+
:rtype: int
|
2302
|
+
"""
|
2303
|
+
return self._Limit
|
2304
|
+
|
2305
|
+
@Limit.setter
|
2306
|
+
def Limit(self, Limit):
|
2307
|
+
self._Limit = Limit
|
2308
|
+
|
2309
|
+
@property
|
2310
|
+
def Offset(self):
|
2311
|
+
"""分页
|
2312
|
+
:rtype: int
|
2313
|
+
"""
|
2314
|
+
return self._Offset
|
2315
|
+
|
2316
|
+
@Offset.setter
|
2317
|
+
def Offset(self, Offset):
|
2318
|
+
self._Offset = Offset
|
2319
|
+
|
2320
|
+
|
2321
|
+
def _deserialize(self, params):
|
2322
|
+
self._InstanceId = params.get("InstanceId")
|
2323
|
+
self._StartTime = params.get("StartTime")
|
2324
|
+
self._EndTime = params.get("EndTime")
|
2325
|
+
if params.get("Filters") is not None:
|
2326
|
+
self._Filters = []
|
2327
|
+
for item in params.get("Filters"):
|
2328
|
+
obj = Filter()
|
2329
|
+
obj._deserialize(item)
|
2330
|
+
self._Filters.append(obj)
|
2331
|
+
if params.get("OrderBy") is not None:
|
2332
|
+
self._OrderBy = OrderBy()
|
2333
|
+
self._OrderBy._deserialize(params.get("OrderBy"))
|
2334
|
+
self._BusinessName = params.get("BusinessName")
|
2335
|
+
self._Limit = params.get("Limit")
|
2336
|
+
self._Offset = params.get("Offset")
|
2337
|
+
memeber_set = set(params.keys())
|
2338
|
+
for name, value in vars(self).items():
|
2339
|
+
property_name = name[1:]
|
2340
|
+
if property_name in memeber_set:
|
2341
|
+
memeber_set.remove(property_name)
|
2342
|
+
if len(memeber_set) > 0:
|
2343
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
2344
|
+
|
2345
|
+
|
2346
|
+
|
2347
|
+
class DescribeGeneralOTSpanListResponse(AbstractModel):
|
2348
|
+
"""DescribeGeneralOTSpanList返回参数结构体
|
2349
|
+
|
2350
|
+
"""
|
2351
|
+
|
2352
|
+
def __init__(self):
|
2353
|
+
r"""
|
2354
|
+
:param _TotalCount: 总数量
|
2355
|
+
:type TotalCount: int
|
2356
|
+
:param _Spans: 装有查询结果 Spans 的 Trace 结构体。OpenTelemetry 标准 Trace 结构体哈希后的字符串,先将 Trace 利用 ptrace.JSONMarshaler 转换成 Json 字符串,再用 gzip 压缩,最后转换成 base64 标准的字符串。
|
2357
|
+
:type Spans: str
|
2358
|
+
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
2359
|
+
:type RequestId: str
|
2360
|
+
"""
|
2361
|
+
self._TotalCount = None
|
2362
|
+
self._Spans = None
|
2363
|
+
self._RequestId = None
|
2364
|
+
|
2365
|
+
@property
|
2366
|
+
def TotalCount(self):
|
2367
|
+
"""总数量
|
2368
|
+
:rtype: int
|
2369
|
+
"""
|
2370
|
+
return self._TotalCount
|
2371
|
+
|
2372
|
+
@TotalCount.setter
|
2373
|
+
def TotalCount(self, TotalCount):
|
2374
|
+
self._TotalCount = TotalCount
|
2375
|
+
|
2376
|
+
@property
|
2377
|
+
def Spans(self):
|
2378
|
+
"""装有查询结果 Spans 的 Trace 结构体。OpenTelemetry 标准 Trace 结构体哈希后的字符串,先将 Trace 利用 ptrace.JSONMarshaler 转换成 Json 字符串,再用 gzip 压缩,最后转换成 base64 标准的字符串。
|
2379
|
+
:rtype: str
|
2380
|
+
"""
|
2381
|
+
return self._Spans
|
2382
|
+
|
2383
|
+
@Spans.setter
|
2384
|
+
def Spans(self, Spans):
|
2385
|
+
self._Spans = Spans
|
2386
|
+
|
2387
|
+
@property
|
2388
|
+
def RequestId(self):
|
2389
|
+
"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
2390
|
+
:rtype: str
|
2391
|
+
"""
|
2392
|
+
return self._RequestId
|
2393
|
+
|
2394
|
+
@RequestId.setter
|
2395
|
+
def RequestId(self, RequestId):
|
2396
|
+
self._RequestId = RequestId
|
2397
|
+
|
2398
|
+
|
2399
|
+
def _deserialize(self, params):
|
2400
|
+
self._TotalCount = params.get("TotalCount")
|
2401
|
+
self._Spans = params.get("Spans")
|
2402
|
+
self._RequestId = params.get("RequestId")
|
2403
|
+
|
2404
|
+
|
2179
2405
|
class DescribeGeneralSpanListRequest(AbstractModel):
|
2180
2406
|
"""DescribeGeneralSpanList请求参数结构体
|
2181
2407
|
|
@@ -113,6 +113,8 @@ class AccessPoint(AbstractModel):
|
|
113
113
|
:type AccessPointType: str
|
114
114
|
:param _AvailablePortInfo: 端口规格信息。
|
115
115
|
:type AvailablePortInfo: list of PortSpecification
|
116
|
+
:param _Address: 接入点地址。
|
117
|
+
:type Address: str
|
116
118
|
"""
|
117
119
|
self._AccessPointName = None
|
118
120
|
self._AccessPointId = None
|
@@ -126,6 +128,7 @@ class AccessPoint(AbstractModel):
|
|
126
128
|
self._Area = None
|
127
129
|
self._AccessPointType = None
|
128
130
|
self._AvailablePortInfo = None
|
131
|
+
self._Address = None
|
129
132
|
|
130
133
|
@property
|
131
134
|
def AccessPointName(self):
|
@@ -259,6 +262,17 @@ class AccessPoint(AbstractModel):
|
|
259
262
|
def AvailablePortInfo(self, AvailablePortInfo):
|
260
263
|
self._AvailablePortInfo = AvailablePortInfo
|
261
264
|
|
265
|
+
@property
|
266
|
+
def Address(self):
|
267
|
+
"""接入点地址。
|
268
|
+
:rtype: str
|
269
|
+
"""
|
270
|
+
return self._Address
|
271
|
+
|
272
|
+
@Address.setter
|
273
|
+
def Address(self, Address):
|
274
|
+
self._Address = Address
|
275
|
+
|
262
276
|
|
263
277
|
def _deserialize(self, params):
|
264
278
|
self._AccessPointName = params.get("AccessPointName")
|
@@ -280,6 +294,7 @@ class AccessPoint(AbstractModel):
|
|
280
294
|
obj = PortSpecification()
|
281
295
|
obj._deserialize(item)
|
282
296
|
self._AvailablePortInfo.append(obj)
|
297
|
+
self._Address = params.get("Address")
|
283
298
|
memeber_set = set(params.keys())
|
284
299
|
for name, value in vars(self).items():
|
285
300
|
property_name = name[1:]
|
@@ -18605,9 +18605,24 @@ class LoadAutoScaleStrategy(AbstractModel):
|
|
18605
18605
|
"CPU"表示按照机器的核数计算。
|
18606
18606
|
"MEMORYGB"表示按照机器内存数计算。
|
18607
18607
|
:type MeasureMethod: str
|
18608
|
+
:param _SoftDeployDesc: 节点部署服务列表,例如["HDFS-3.1.2","YARN-3.1.2"]。
|
18609
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
18610
|
+
:type SoftDeployDesc: list of str
|
18611
|
+
:param _ServiceNodeDesc: 启动进程列表,例如["NodeManager"]。
|
18612
|
+
:type ServiceNodeDesc: str
|
18613
|
+
:param _ServiceNodeInfo: 启动进程列表。
|
18614
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
18615
|
+
:type ServiceNodeInfo: list of int
|
18616
|
+
:param _SoftDeployInfo: 节点部署服务列表。部署服务仅填写HDFS、YARN。[组件名对应的映射关系表](https://cloud.tencent.com/document/product/589/98760)
|
18617
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
18618
|
+
:type SoftDeployInfo: list of int
|
18608
18619
|
:param _LoadMetricsConditions: 多指标触发条件
|
18609
18620
|
注意:此字段可能返回 null,表示取不到有效值。
|
18610
18621
|
:type LoadMetricsConditions: :class:`tencentcloud.emr.v20190103.models.LoadMetricsConditions`
|
18622
|
+
:param _GroupId: 伸缩组Id
|
18623
|
+
:type GroupId: int
|
18624
|
+
:param _Soft: soft例如yarn
|
18625
|
+
:type Soft: str
|
18611
18626
|
"""
|
18612
18627
|
self._StrategyId = None
|
18613
18628
|
self._StrategyName = None
|
@@ -18624,7 +18639,13 @@ class LoadAutoScaleStrategy(AbstractModel):
|
|
18624
18639
|
self._Tags = None
|
18625
18640
|
self._ConfigGroupAssigned = None
|
18626
18641
|
self._MeasureMethod = None
|
18642
|
+
self._SoftDeployDesc = None
|
18643
|
+
self._ServiceNodeDesc = None
|
18644
|
+
self._ServiceNodeInfo = None
|
18645
|
+
self._SoftDeployInfo = None
|
18627
18646
|
self._LoadMetricsConditions = None
|
18647
|
+
self._GroupId = None
|
18648
|
+
self._Soft = None
|
18628
18649
|
|
18629
18650
|
@property
|
18630
18651
|
def StrategyId(self):
|
@@ -18796,6 +18817,53 @@ class LoadAutoScaleStrategy(AbstractModel):
|
|
18796
18817
|
def MeasureMethod(self, MeasureMethod):
|
18797
18818
|
self._MeasureMethod = MeasureMethod
|
18798
18819
|
|
18820
|
+
@property
|
18821
|
+
def SoftDeployDesc(self):
|
18822
|
+
"""节点部署服务列表,例如["HDFS-3.1.2","YARN-3.1.2"]。
|
18823
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
18824
|
+
:rtype: list of str
|
18825
|
+
"""
|
18826
|
+
return self._SoftDeployDesc
|
18827
|
+
|
18828
|
+
@SoftDeployDesc.setter
|
18829
|
+
def SoftDeployDesc(self, SoftDeployDesc):
|
18830
|
+
self._SoftDeployDesc = SoftDeployDesc
|
18831
|
+
|
18832
|
+
@property
|
18833
|
+
def ServiceNodeDesc(self):
|
18834
|
+
"""启动进程列表,例如["NodeManager"]。
|
18835
|
+
:rtype: str
|
18836
|
+
"""
|
18837
|
+
return self._ServiceNodeDesc
|
18838
|
+
|
18839
|
+
@ServiceNodeDesc.setter
|
18840
|
+
def ServiceNodeDesc(self, ServiceNodeDesc):
|
18841
|
+
self._ServiceNodeDesc = ServiceNodeDesc
|
18842
|
+
|
18843
|
+
@property
|
18844
|
+
def ServiceNodeInfo(self):
|
18845
|
+
"""启动进程列表。
|
18846
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
18847
|
+
:rtype: list of int
|
18848
|
+
"""
|
18849
|
+
return self._ServiceNodeInfo
|
18850
|
+
|
18851
|
+
@ServiceNodeInfo.setter
|
18852
|
+
def ServiceNodeInfo(self, ServiceNodeInfo):
|
18853
|
+
self._ServiceNodeInfo = ServiceNodeInfo
|
18854
|
+
|
18855
|
+
@property
|
18856
|
+
def SoftDeployInfo(self):
|
18857
|
+
"""节点部署服务列表。部署服务仅填写HDFS、YARN。[组件名对应的映射关系表](https://cloud.tencent.com/document/product/589/98760)
|
18858
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
18859
|
+
:rtype: list of int
|
18860
|
+
"""
|
18861
|
+
return self._SoftDeployInfo
|
18862
|
+
|
18863
|
+
@SoftDeployInfo.setter
|
18864
|
+
def SoftDeployInfo(self, SoftDeployInfo):
|
18865
|
+
self._SoftDeployInfo = SoftDeployInfo
|
18866
|
+
|
18799
18867
|
@property
|
18800
18868
|
def LoadMetricsConditions(self):
|
18801
18869
|
"""多指标触发条件
|
@@ -18808,6 +18876,28 @@ class LoadAutoScaleStrategy(AbstractModel):
|
|
18808
18876
|
def LoadMetricsConditions(self, LoadMetricsConditions):
|
18809
18877
|
self._LoadMetricsConditions = LoadMetricsConditions
|
18810
18878
|
|
18879
|
+
@property
|
18880
|
+
def GroupId(self):
|
18881
|
+
"""伸缩组Id
|
18882
|
+
:rtype: int
|
18883
|
+
"""
|
18884
|
+
return self._GroupId
|
18885
|
+
|
18886
|
+
@GroupId.setter
|
18887
|
+
def GroupId(self, GroupId):
|
18888
|
+
self._GroupId = GroupId
|
18889
|
+
|
18890
|
+
@property
|
18891
|
+
def Soft(self):
|
18892
|
+
"""soft例如yarn
|
18893
|
+
:rtype: str
|
18894
|
+
"""
|
18895
|
+
return self._Soft
|
18896
|
+
|
18897
|
+
@Soft.setter
|
18898
|
+
def Soft(self, Soft):
|
18899
|
+
self._Soft = Soft
|
18900
|
+
|
18811
18901
|
|
18812
18902
|
def _deserialize(self, params):
|
18813
18903
|
self._StrategyId = params.get("StrategyId")
|
@@ -18830,9 +18920,15 @@ class LoadAutoScaleStrategy(AbstractModel):
|
|
18830
18920
|
self._Tags.append(obj)
|
18831
18921
|
self._ConfigGroupAssigned = params.get("ConfigGroupAssigned")
|
18832
18922
|
self._MeasureMethod = params.get("MeasureMethod")
|
18923
|
+
self._SoftDeployDesc = params.get("SoftDeployDesc")
|
18924
|
+
self._ServiceNodeDesc = params.get("ServiceNodeDesc")
|
18925
|
+
self._ServiceNodeInfo = params.get("ServiceNodeInfo")
|
18926
|
+
self._SoftDeployInfo = params.get("SoftDeployInfo")
|
18833
18927
|
if params.get("LoadMetricsConditions") is not None:
|
18834
18928
|
self._LoadMetricsConditions = LoadMetricsConditions()
|
18835
18929
|
self._LoadMetricsConditions._deserialize(params.get("LoadMetricsConditions"))
|
18930
|
+
self._GroupId = params.get("GroupId")
|
18931
|
+
self._Soft = params.get("Soft")
|
18836
18932
|
memeber_set = set(params.keys())
|
18837
18933
|
for name, value in vars(self).items():
|
18838
18934
|
property_name = name[1:]
|
@@ -2543,7 +2543,6 @@ class DevicePayModeInfo(AbstractModel):
|
|
2543
2543
|
:param _PayModeDesc: 付费模式描述
|
2544
2544
|
:type PayModeDesc: str
|
2545
2545
|
:param _ResourceId: 流量包ID,仅当付费模式为流量包类型时才有。
|
2546
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2547
2546
|
:type ResourceId: str
|
2548
2547
|
"""
|
2549
2548
|
self._DeviceId = None
|
@@ -2589,7 +2588,6 @@ class DevicePayModeInfo(AbstractModel):
|
|
2589
2588
|
@property
|
2590
2589
|
def ResourceId(self):
|
2591
2590
|
"""流量包ID,仅当付费模式为流量包类型时才有。
|
2592
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2593
2591
|
:rtype: str
|
2594
2592
|
"""
|
2595
2593
|
return self._ResourceId
|
@@ -2944,7 +2942,6 @@ DEVICE_5_FLOW_500G,分别代表20G、50G、100G、500G档位的流量包。
|
|
2944
2942
|
:param _Status: 流量包状态,0:未生效,1:有效期内,2:已过期
|
2945
2943
|
:type Status: int
|
2946
2944
|
:param _CreateTime: 购买时间,Unix时间戳格式,单位:秒
|
2947
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2948
2945
|
:type CreateTime: int
|
2949
2946
|
:param _ActiveTime: 生效时间,Unix时间戳格式,单位:秒
|
2950
2947
|
:type ActiveTime: int
|
@@ -3035,7 +3032,6 @@ DEVICE_5_FLOW_500G,分别代表20G、50G、100G、500G档位的流量包。
|
|
3035
3032
|
@property
|
3036
3033
|
def CreateTime(self):
|
3037
3034
|
"""购买时间,Unix时间戳格式,单位:秒
|
3038
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3039
3035
|
:rtype: int
|
3040
3036
|
"""
|
3041
3037
|
return self._CreateTime
|
@@ -6185,7 +6181,6 @@ class GroupInfo(AbstractModel):
|
|
6185
6181
|
:param _UpdateTime: 分组更新的时间,单位:ms
|
6186
6182
|
:type UpdateTime: str
|
6187
6183
|
:param _Description: 分组描述
|
6188
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
6189
6184
|
:type Description: str
|
6190
6185
|
:param _DeviceNum: 分组中的设备数量
|
6191
6186
|
:type DeviceNum: int
|
@@ -6244,7 +6239,6 @@ class GroupInfo(AbstractModel):
|
|
6244
6239
|
@property
|
6245
6240
|
def Description(self):
|
6246
6241
|
"""分组描述
|
6247
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
6248
6242
|
:rtype: str
|
6249
6243
|
"""
|
6250
6244
|
return self._Description
|
@@ -6290,19 +6284,15 @@ class Hardware(AbstractModel):
|
|
6290
6284
|
def __init__(self):
|
6291
6285
|
r"""
|
6292
6286
|
:param _SN: 硬件序列号
|
6293
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
6294
6287
|
:type SN: str
|
6295
6288
|
:param _LicenseChargingMode: license计费模式:
|
6296
6289
|
1,租户付费
|
6297
6290
|
2,厂商月付费
|
6298
6291
|
3,厂商永久授权
|
6299
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
6300
6292
|
:type LicenseChargingMode: int
|
6301
6293
|
:param _Description: 设备描述
|
6302
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
6303
6294
|
:type Description: str
|
6304
6295
|
:param _HardwareId: 硬件ID,入参无需传递
|
6305
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
6306
6296
|
:type HardwareId: str
|
6307
6297
|
"""
|
6308
6298
|
self._SN = None
|
@@ -6313,7 +6303,6 @@ class Hardware(AbstractModel):
|
|
6313
6303
|
@property
|
6314
6304
|
def SN(self):
|
6315
6305
|
"""硬件序列号
|
6316
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
6317
6306
|
:rtype: str
|
6318
6307
|
"""
|
6319
6308
|
return self._SN
|
@@ -6328,7 +6317,6 @@ class Hardware(AbstractModel):
|
|
6328
6317
|
1,租户付费
|
6329
6318
|
2,厂商月付费
|
6330
6319
|
3,厂商永久授权
|
6331
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
6332
6320
|
:rtype: int
|
6333
6321
|
"""
|
6334
6322
|
return self._LicenseChargingMode
|
@@ -6340,7 +6328,6 @@ class Hardware(AbstractModel):
|
|
6340
6328
|
@property
|
6341
6329
|
def Description(self):
|
6342
6330
|
"""设备描述
|
6343
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
6344
6331
|
:rtype: str
|
6345
6332
|
"""
|
6346
6333
|
return self._Description
|
@@ -6352,7 +6339,6 @@ class Hardware(AbstractModel):
|
|
6352
6339
|
@property
|
6353
6340
|
def HardwareId(self):
|
6354
6341
|
"""硬件ID,入参无需传递
|
6355
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
6356
6342
|
:rtype: str
|
6357
6343
|
"""
|
6358
6344
|
return self._HardwareId
|
@@ -6385,51 +6371,37 @@ class HardwareInfo(AbstractModel):
|
|
6385
6371
|
def __init__(self):
|
6386
6372
|
r"""
|
6387
6373
|
:param _DeviceId: 设备ID
|
6388
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
6389
6374
|
:type DeviceId: str
|
6390
6375
|
:param _DeviceName: 设备名称
|
6391
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
6392
6376
|
:type DeviceName: str
|
6393
6377
|
:param _ActiveTime: 激活时间
|
6394
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
6395
6378
|
:type ActiveTime: str
|
6396
6379
|
:param _LastOnlineTime: 最后在线时间
|
6397
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
6398
6380
|
:type LastOnlineTime: str
|
6399
6381
|
:param _Description: 备注
|
6400
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
6401
6382
|
:type Description: str
|
6402
6383
|
:param _VendorDescription: 厂商备注
|
6403
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
6404
6384
|
:type VendorDescription: str
|
6405
6385
|
:param _LicenseChargingMode: license计费模式: 1,租户月付费 2,厂商月付费 3,license永久授权
|
6406
6386
|
注:后续将废弃此参数,新接入请使用LicensePayMode和Payer
|
6407
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
6408
6387
|
:type LicenseChargingMode: int
|
6409
6388
|
:param _CreateTime: 创建时间
|
6410
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
6411
6389
|
:type CreateTime: str
|
6412
6390
|
:param _SN: 硬件序列号
|
6413
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
6414
6391
|
:type SN: str
|
6415
6392
|
:param _LicensePayMode: license授权有效期
|
6416
6393
|
0:月度授权
|
6417
6394
|
1:永久授权
|
6418
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
6419
6395
|
:type LicensePayMode: int
|
6420
6396
|
:param _Payer: 付费方
|
6421
6397
|
0:客户付费
|
6422
6398
|
1:厂商付费
|
6423
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
6424
6399
|
:type Payer: int
|
6425
6400
|
:param _GroupId: 设备分组ID
|
6426
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
6427
6401
|
:type GroupId: str
|
6428
6402
|
:param _GroupName: 设备分组名称
|
6429
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
6430
6403
|
:type GroupName: str
|
6431
6404
|
:param _FlowTrunc: 设备无流量包处理方式,0: 按量付费,1: 截断加速
|
6432
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
6433
6405
|
:type FlowTrunc: int
|
6434
6406
|
"""
|
6435
6407
|
self._DeviceId = None
|
@@ -6450,7 +6422,6 @@ class HardwareInfo(AbstractModel):
|
|
6450
6422
|
@property
|
6451
6423
|
def DeviceId(self):
|
6452
6424
|
"""设备ID
|
6453
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
6454
6425
|
:rtype: str
|
6455
6426
|
"""
|
6456
6427
|
return self._DeviceId
|
@@ -6462,7 +6433,6 @@ class HardwareInfo(AbstractModel):
|
|
6462
6433
|
@property
|
6463
6434
|
def DeviceName(self):
|
6464
6435
|
"""设备名称
|
6465
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
6466
6436
|
:rtype: str
|
6467
6437
|
"""
|
6468
6438
|
return self._DeviceName
|
@@ -6474,7 +6444,6 @@ class HardwareInfo(AbstractModel):
|
|
6474
6444
|
@property
|
6475
6445
|
def ActiveTime(self):
|
6476
6446
|
"""激活时间
|
6477
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
6478
6447
|
:rtype: str
|
6479
6448
|
"""
|
6480
6449
|
return self._ActiveTime
|
@@ -6486,7 +6455,6 @@ class HardwareInfo(AbstractModel):
|
|
6486
6455
|
@property
|
6487
6456
|
def LastOnlineTime(self):
|
6488
6457
|
"""最后在线时间
|
6489
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
6490
6458
|
:rtype: str
|
6491
6459
|
"""
|
6492
6460
|
return self._LastOnlineTime
|
@@ -6498,7 +6466,6 @@ class HardwareInfo(AbstractModel):
|
|
6498
6466
|
@property
|
6499
6467
|
def Description(self):
|
6500
6468
|
"""备注
|
6501
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
6502
6469
|
:rtype: str
|
6503
6470
|
"""
|
6504
6471
|
return self._Description
|
@@ -6510,7 +6477,6 @@ class HardwareInfo(AbstractModel):
|
|
6510
6477
|
@property
|
6511
6478
|
def VendorDescription(self):
|
6512
6479
|
"""厂商备注
|
6513
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
6514
6480
|
:rtype: str
|
6515
6481
|
"""
|
6516
6482
|
return self._VendorDescription
|
@@ -6523,7 +6489,6 @@ class HardwareInfo(AbstractModel):
|
|
6523
6489
|
def LicenseChargingMode(self):
|
6524
6490
|
"""license计费模式: 1,租户月付费 2,厂商月付费 3,license永久授权
|
6525
6491
|
注:后续将废弃此参数,新接入请使用LicensePayMode和Payer
|
6526
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
6527
6492
|
:rtype: int
|
6528
6493
|
"""
|
6529
6494
|
return self._LicenseChargingMode
|
@@ -6535,7 +6500,6 @@ class HardwareInfo(AbstractModel):
|
|
6535
6500
|
@property
|
6536
6501
|
def CreateTime(self):
|
6537
6502
|
"""创建时间
|
6538
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
6539
6503
|
:rtype: str
|
6540
6504
|
"""
|
6541
6505
|
return self._CreateTime
|
@@ -6547,7 +6511,6 @@ class HardwareInfo(AbstractModel):
|
|
6547
6511
|
@property
|
6548
6512
|
def SN(self):
|
6549
6513
|
"""硬件序列号
|
6550
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
6551
6514
|
:rtype: str
|
6552
6515
|
"""
|
6553
6516
|
return self._SN
|
@@ -6561,7 +6524,6 @@ class HardwareInfo(AbstractModel):
|
|
6561
6524
|
"""license授权有效期
|
6562
6525
|
0:月度授权
|
6563
6526
|
1:永久授权
|
6564
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
6565
6527
|
:rtype: int
|
6566
6528
|
"""
|
6567
6529
|
return self._LicensePayMode
|
@@ -6575,7 +6537,6 @@ class HardwareInfo(AbstractModel):
|
|
6575
6537
|
"""付费方
|
6576
6538
|
0:客户付费
|
6577
6539
|
1:厂商付费
|
6578
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
6579
6540
|
:rtype: int
|
6580
6541
|
"""
|
6581
6542
|
return self._Payer
|
@@ -6587,7 +6548,6 @@ class HardwareInfo(AbstractModel):
|
|
6587
6548
|
@property
|
6588
6549
|
def GroupId(self):
|
6589
6550
|
"""设备分组ID
|
6590
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
6591
6551
|
:rtype: str
|
6592
6552
|
"""
|
6593
6553
|
return self._GroupId
|
@@ -6599,7 +6559,6 @@ class HardwareInfo(AbstractModel):
|
|
6599
6559
|
@property
|
6600
6560
|
def GroupName(self):
|
6601
6561
|
"""设备分组名称
|
6602
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
6603
6562
|
:rtype: str
|
6604
6563
|
"""
|
6605
6564
|
return self._GroupName
|
@@ -6611,7 +6570,6 @@ class HardwareInfo(AbstractModel):
|
|
6611
6570
|
@property
|
6612
6571
|
def FlowTrunc(self):
|
6613
6572
|
"""设备无流量包处理方式,0: 按量付费,1: 截断加速
|
6614
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
6615
6573
|
:rtype: int
|
6616
6574
|
"""
|
6617
6575
|
return self._FlowTrunc
|
@@ -6666,7 +6624,6 @@ class L3ConnInfo(AbstractModel):
|
|
6666
6624
|
:param _Enable: 互通规则启用状态
|
6667
6625
|
:type Enable: bool
|
6668
6626
|
:param _Description: 互通规则描述
|
6669
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
6670
6627
|
:type Description: str
|
6671
6628
|
"""
|
6672
6629
|
self._L3ConnId = None
|
@@ -6746,7 +6703,6 @@ class L3ConnInfo(AbstractModel):
|
|
6746
6703
|
@property
|
6747
6704
|
def Description(self):
|
6748
6705
|
"""互通规则描述
|
6749
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
6750
6706
|
:rtype: str
|
6751
6707
|
"""
|
6752
6708
|
return self._Description
|
@@ -6863,10 +6819,8 @@ class MonitorData(AbstractModel):
|
|
6863
6819
|
:param _Time: 时间点:s
|
6864
6820
|
:type Time: str
|
6865
6821
|
:param _BusinessMetrics: 业务指标(bps/ms/%)
|
6866
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
6867
6822
|
:type BusinessMetrics: float
|
6868
6823
|
:param _SlotNetInfo: 网卡状态信息
|
6869
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
6870
6824
|
:type SlotNetInfo: list of SlotNetInfo
|
6871
6825
|
"""
|
6872
6826
|
self._Time = None
|
@@ -6887,7 +6841,6 @@ class MonitorData(AbstractModel):
|
|
6887
6841
|
@property
|
6888
6842
|
def BusinessMetrics(self):
|
6889
6843
|
"""业务指标(bps/ms/%)
|
6890
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
6891
6844
|
:rtype: float
|
6892
6845
|
"""
|
6893
6846
|
return self._BusinessMetrics
|
@@ -6899,7 +6852,6 @@ class MonitorData(AbstractModel):
|
|
6899
6852
|
@property
|
6900
6853
|
def SlotNetInfo(self):
|
6901
6854
|
"""网卡状态信息
|
6902
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
6903
6855
|
:rtype: list of SlotNetInfo
|
6904
6856
|
"""
|
6905
6857
|
return self._SlotNetInfo
|
@@ -7502,13 +7454,10 @@ class SlotNetInfo(AbstractModel):
|
|
7502
7454
|
def __init__(self):
|
7503
7455
|
r"""
|
7504
7456
|
:param _NetInfoName: 网卡名
|
7505
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
7506
7457
|
:type NetInfoName: str
|
7507
7458
|
:param _PublicIP: 公网IP
|
7508
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
7509
7459
|
:type PublicIP: str
|
7510
7460
|
:param _Current: 指标数据(bps/ms/%)
|
7511
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
7512
7461
|
:type Current: float
|
7513
7462
|
"""
|
7514
7463
|
self._NetInfoName = None
|
@@ -7518,7 +7467,6 @@ class SlotNetInfo(AbstractModel):
|
|
7518
7467
|
@property
|
7519
7468
|
def NetInfoName(self):
|
7520
7469
|
"""网卡名
|
7521
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
7522
7470
|
:rtype: str
|
7523
7471
|
"""
|
7524
7472
|
return self._NetInfoName
|
@@ -7530,7 +7478,6 @@ class SlotNetInfo(AbstractModel):
|
|
7530
7478
|
@property
|
7531
7479
|
def PublicIP(self):
|
7532
7480
|
"""公网IP
|
7533
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
7534
7481
|
:rtype: str
|
7535
7482
|
"""
|
7536
7483
|
return self._PublicIP
|
@@ -7542,7 +7489,6 @@ class SlotNetInfo(AbstractModel):
|
|
7542
7489
|
@property
|
7543
7490
|
def Current(self):
|
7544
7491
|
"""指标数据(bps/ms/%)
|
7545
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
7546
7492
|
:rtype: float
|
7547
7493
|
"""
|
7548
7494
|
return self._Current
|
@@ -8332,7 +8278,6 @@ class VendorHardware(AbstractModel):
|
|
8332
8278
|
:param _Status: 激活状态, 空:全部; 1:待激活; 2:已激活
|
8333
8279
|
:type Status: int
|
8334
8280
|
:param _ActiveTime: 激活时间
|
8335
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
8336
8281
|
:type ActiveTime: str
|
8337
8282
|
:param _Description: 厂商备注
|
8338
8283
|
:type Description: str
|
@@ -8342,7 +8287,6 @@ class VendorHardware(AbstractModel):
|
|
8342
8287
|
注:设备为租户付费且未激活(未选择月付还是永久付费)时,此参数返回1,仅代表租户付费。后续将废弃此参数,新接入请使用LicensePayMode和Payer
|
8343
8288
|
:type LicenseChargingMode: int
|
8344
8289
|
:param _LastOnlineTime: 最后在线时间
|
8345
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
8346
8290
|
:type LastOnlineTime: str
|
8347
8291
|
:param _LicensePayMode: license授权有效期
|
8348
8292
|
0:月度授权
|
@@ -8413,7 +8357,6 @@ class VendorHardware(AbstractModel):
|
|
8413
8357
|
@property
|
8414
8358
|
def ActiveTime(self):
|
8415
8359
|
"""激活时间
|
8416
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
8417
8360
|
:rtype: str
|
8418
8361
|
"""
|
8419
8362
|
return self._ActiveTime
|
@@ -8459,7 +8402,6 @@ class VendorHardware(AbstractModel):
|
|
8459
8402
|
@property
|
8460
8403
|
def LastOnlineTime(self):
|
8461
8404
|
"""最后在线时间
|
8462
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
8463
8405
|
:rtype: str
|
8464
8406
|
"""
|
8465
8407
|
return self._LastOnlineTime
|
@@ -1659,6 +1659,8 @@ class OcrClient(AbstractClient):
|
|
1659
1659
|
def RecognizeGeneralCardWarn(self, request):
|
1660
1660
|
"""支持通用证照的有效性检测告警,包括卡证复印件告警、卡证翻拍告警等功能,支持通用证照的ps伪造检测,可以应用于各种证件信息有效性校验场景。
|
1661
1661
|
|
1662
|
+
默认接口请求频率限制:5次/秒。
|
1663
|
+
|
1662
1664
|
:param request: Request instance for RecognizeGeneralCardWarn.
|
1663
1665
|
:type request: :class:`tencentcloud.ocr.v20181119.models.RecognizeGeneralCardWarnRequest`
|
1664
1666
|
:rtype: :class:`tencentcloud.ocr.v20181119.models.RecognizeGeneralCardWarnResponse`
|
@@ -2079,7 +2081,7 @@ class OcrClient(AbstractClient):
|
|
2079
2081
|
def RecognizeValidIDCardOCR(self, request):
|
2080
2082
|
"""本接口支持二代身份证、临时身份证、港澳台居住证、外国人永久居留证,字段内容识别功能,包括姓名、性别、民族、出生、出生日期、住址、公民身份号码、签发机关、有效期限、国籍、通行证号码、持证人持有号码;支持返回证件类型;支持翻拍、复印、边框不完整、遮挡、字段级反光和字段级完整性告警;支持卡片主体框裁剪和头像裁剪。
|
2081
2083
|
|
2082
|
-
默认接口请求频率限制:
|
2084
|
+
默认接口请求频率限制:5次/秒。
|
2083
2085
|
|
2084
2086
|
:param request: Request instance for RecognizeValidIDCardOCR.
|
2085
2087
|
:type request: :class:`tencentcloud.ocr.v20181119.models.RecognizeValidIDCardOCRRequest`
|
@@ -6126,7 +6126,7 @@ class GetLayerVersionResponse(AbstractModel):
|
|
6126
6126
|
:type LayerVersion: int
|
6127
6127
|
:param _LayerName: 层名称
|
6128
6128
|
:type LayerName: str
|
6129
|
-
:param _Status: 层的具体版本当前状态,状态值[参考此处](https://cloud.tencent.com/document/product/583/115197#.E5.B1.82.EF.BC.
|
6129
|
+
:param _Status: 层的具体版本当前状态,状态值[参考此处](https://cloud.tencent.com/document/product/583/115197#.E5.B1.82.EF.BC.88Layer.EF.BC.89.E7.8A.B6.E6.80.81)
|
6130
6130
|
:type Status: str
|
6131
6131
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
6132
6132
|
:type RequestId: str
|
@@ -6232,7 +6232,7 @@ class GetLayerVersionResponse(AbstractModel):
|
|
6232
6232
|
|
6233
6233
|
@property
|
6234
6234
|
def Status(self):
|
6235
|
-
"""层的具体版本当前状态,状态值[参考此处](https://cloud.tencent.com/document/product/583/115197#.E5.B1.82.EF.BC.
|
6235
|
+
"""层的具体版本当前状态,状态值[参考此处](https://cloud.tencent.com/document/product/583/115197#.E5.B1.82.EF.BC.88Layer.EF.BC.89.E7.8A.B6.E6.80.81)
|
6236
6236
|
:rtype: str
|
6237
6237
|
"""
|
6238
6238
|
return self._Status
|
{tencentcloud_sdk_python-3.0.1324.dist-info → tencentcloud_sdk_python-3.0.1325.dist-info}/RECORD
RENAMED
@@ -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=
|
53
|
+
tencentcloud/__init__.py,sha256=VsslX6hU23JHmTODxpNMFTRFnqbhsvMlvOmVnMNZWOY,631
|
54
54
|
tencentcloud/aai/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
55
55
|
tencentcloud/aai/v20180522/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
56
56
|
tencentcloud/aai/v20180522/aai_client.py,sha256=UNkXLBkE-C-wBaan9RD0U4t2H-XCJDTPgWDFYzUitgE,5497
|
@@ -132,9 +132,9 @@ tencentcloud/apigateway/v20180808/errorcodes.py,sha256=7xBmf9V9B5_fkVUu1YToS-FzX
|
|
132
132
|
tencentcloud/apigateway/v20180808/models.py,sha256=qp5KpYC4hLG249SnuMXQZqLnOSavH_pVkb2aBhRe868,831510
|
133
133
|
tencentcloud/apm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
134
134
|
tencentcloud/apm/v20210622/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
135
|
-
tencentcloud/apm/v20210622/apm_client.py,sha256=
|
135
|
+
tencentcloud/apm/v20210622/apm_client.py,sha256=nFFknbBdefC-Obq2c7WbkD_zo2g6Q8VpldpTA8d3vDc,13218
|
136
136
|
tencentcloud/apm/v20210622/errorcodes.py,sha256=ciIcLaYfEH1s5Yy7P0cVqW9eOtcvLQHi0bcsC-_24ps,5073
|
137
|
-
tencentcloud/apm/v20210622/models.py,sha256=
|
137
|
+
tencentcloud/apm/v20210622/models.py,sha256=UBWMfr8LsLqJBi-kNt413a5JpzthZUKkGFsp9W9Jd4Y,139671
|
138
138
|
tencentcloud/asr/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
139
139
|
tencentcloud/asr/v20190614/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
140
140
|
tencentcloud/asr/v20190614/asr_client.py,sha256=Ji9PnLBkndNeWEP9Bx1swX49lGWk7Z-E1NxUFYXcZ3c,38304
|
@@ -505,7 +505,7 @@ tencentcloud/dc/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
505
505
|
tencentcloud/dc/v20180410/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
506
506
|
tencentcloud/dc/v20180410/dc_client.py,sha256=p6TitHv6dQwAh_Xkrv3NCdRex6M6CvD_3_xBupRR1BE,21754
|
507
507
|
tencentcloud/dc/v20180410/errorcodes.py,sha256=IBNOJ67p_C1HEWyy0SPT4vWfCidvrGSgaK-iBwBFcnQ,2973
|
508
|
-
tencentcloud/dc/v20180410/models.py,sha256=
|
508
|
+
tencentcloud/dc/v20180410/models.py,sha256=MtR2zoHYEwcPWdlBIBfrPhX8ozUds2WwqAZetisNqMs,200440
|
509
509
|
tencentcloud/dcdb/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
510
510
|
tencentcloud/dcdb/v20180411/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
511
511
|
tencentcloud/dcdb/v20180411/dcdb_client.py,sha256=pA965tva5_cbt6C4gNuUswz_2NXWu85qe99THALvIdk,78230
|
@@ -593,7 +593,7 @@ tencentcloud/emr/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,
|
|
593
593
|
tencentcloud/emr/v20190103/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
594
594
|
tencentcloud/emr/v20190103/emr_client.py,sha256=Dl8MibkmNRiDoF-w6nVwu9OEyaB7tRmt7gY13aDzaV4,71255
|
595
595
|
tencentcloud/emr/v20190103/errorcodes.py,sha256=cpGb8KfpUkTSGwlUaO2vTXSuhTU9gVV88bnw9n2hvqk,19549
|
596
|
-
tencentcloud/emr/v20190103/models.py,sha256=
|
596
|
+
tencentcloud/emr/v20190103/models.py,sha256=TrzbmEhI42hFS3VseX7WMLAlrN0MXSwR2UGsiI4XbIQ,1061283
|
597
597
|
tencentcloud/es/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
598
598
|
tencentcloud/es/v20180416/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
599
599
|
tencentcloud/es/v20180416/errorcodes.py,sha256=H4Z2iuubfFiD2SMIooNo0W8Pg4mvaKqZKz5B3eTUUEU,23562
|
@@ -899,7 +899,7 @@ tencentcloud/mna/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,
|
|
899
899
|
tencentcloud/mna/v20210119/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
900
900
|
tencentcloud/mna/v20210119/errorcodes.py,sha256=DdUMaDwVdqSWiEY0sD4rQKs-4i10BalqOkipaqS3tXI,4850
|
901
901
|
tencentcloud/mna/v20210119/mna_client.py,sha256=lYAWsFrJjbwshEO_coXm8q5X7a5F1pv2_alU5h5i0vI,38394
|
902
|
-
tencentcloud/mna/v20210119/models.py,sha256=
|
902
|
+
tencentcloud/mna/v20210119/models.py,sha256=Bv3S-6QS7L1rnVpZRtb8wjYyhU9BvOwE3cINUfuNNfs,246421
|
903
903
|
tencentcloud/mongodb/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
904
904
|
tencentcloud/mongodb/v20180408/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
905
905
|
tencentcloud/mongodb/v20180408/errorcodes.py,sha256=dluSJ0wtDRvBNM2RInjoQ2SsuAaaBGuIrCnHyo02xJk,4585
|
@@ -967,7 +967,7 @@ tencentcloud/ocr/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,
|
|
967
967
|
tencentcloud/ocr/v20181119/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
968
968
|
tencentcloud/ocr/v20181119/errorcodes.py,sha256=0Gv6VuBYzTclEEAqOSK-JEdPJaPpA5ukpWBYFd8z94I,7058
|
969
969
|
tencentcloud/ocr/v20181119/models.py,sha256=VST0PB3VSpUMvNKypekoiAnZsgca-7jo6Kb-JbDr8Xo,1348596
|
970
|
-
tencentcloud/ocr/v20181119/ocr_client.py,sha256=
|
970
|
+
tencentcloud/ocr/v20181119/ocr_client.py,sha256=WDf-t3wAXjlXHmPixXTqov7665tCT-V8zQEbjc2_9Ys,123777
|
971
971
|
tencentcloud/omics/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
972
972
|
tencentcloud/omics/v20221128/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
973
973
|
tencentcloud/omics/v20221128/errorcodes.py,sha256=UT5fVDRzRbNl7KiCWizmn26g7qYjWaLvcSVIt2VknhE,4545
|
@@ -1040,7 +1040,7 @@ tencentcloud/rum/v20210622/rum_client.py,sha256=kfI1rLguc8UYojBcKTWOZGQXzHW6rMG4
|
|
1040
1040
|
tencentcloud/scf/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
1041
1041
|
tencentcloud/scf/v20180416/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
1042
1042
|
tencentcloud/scf/v20180416/errorcodes.py,sha256=YSBsylZTxgH42Pz6b2bMTiBmO3klp4PJmi_yAvToF8Q,33310
|
1043
|
-
tencentcloud/scf/v20180416/models.py,sha256=
|
1043
|
+
tencentcloud/scf/v20180416/models.py,sha256=jOpbNICqJWxQ_I1XTLpznjAg6VfEc2bk4GMAEfiR_jE,444961
|
1044
1044
|
tencentcloud/scf/v20180416/scf_client.py,sha256=Cc69LRYHDNpChq1pwQfMQ_dF3u8HKn6O5hEkZjxXEtE,49911
|
1045
1045
|
tencentcloud/ses/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
1046
1046
|
tencentcloud/ses/v20201002/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -1513,8 +1513,8 @@ tencentcloud/yunsou/v20191115/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5N
|
|
1513
1513
|
tencentcloud/yunsou/v20191115/errorcodes.py,sha256=zB4-XPxmvEhgHoLsKlbayJVRLEagPDcs-UAheVZCoAc,1301
|
1514
1514
|
tencentcloud/yunsou/v20191115/models.py,sha256=rL2feGJfTHvEmkfS_c9En9Xl1g32vTs9IC_q5p9CYgY,27680
|
1515
1515
|
tencentcloud/yunsou/v20191115/yunsou_client.py,sha256=ly73Hr8rGamWa6AAvQjurKgd4L83PRY5WjcDv4ziQC8,2741
|
1516
|
-
tencentcloud_sdk_python-3.0.
|
1517
|
-
tencentcloud_sdk_python-3.0.
|
1518
|
-
tencentcloud_sdk_python-3.0.
|
1519
|
-
tencentcloud_sdk_python-3.0.
|
1520
|
-
tencentcloud_sdk_python-3.0.
|
1516
|
+
tencentcloud_sdk_python-3.0.1325.dist-info/LICENSE,sha256=AJyIQ6mPzTpsFn6i0cG6OPVdhJ85l_mfdoOR7J4DnRw,11351
|
1517
|
+
tencentcloud_sdk_python-3.0.1325.dist-info/METADATA,sha256=iho0Qznxas8tiSD84EQSHibJIxrU3EwfcG4KLvlIn9M,1613
|
1518
|
+
tencentcloud_sdk_python-3.0.1325.dist-info/WHEEL,sha256=z9j0xAa_JmUKMpmz72K0ZGALSM_n-wQVmGbleXx2VHg,110
|
1519
|
+
tencentcloud_sdk_python-3.0.1325.dist-info/top_level.txt,sha256=7kItXWSGlPDkhHTt2qPSt8zrlsPHLfRofR1QJo6eV_A,23
|
1520
|
+
tencentcloud_sdk_python-3.0.1325.dist-info/RECORD,,
|
{tencentcloud_sdk_python-3.0.1324.dist-info → tencentcloud_sdk_python-3.0.1325.dist-info}/LICENSE
RENAMED
File without changes
|
{tencentcloud_sdk_python-3.0.1324.dist-info → tencentcloud_sdk_python-3.0.1325.dist-info}/WHEEL
RENAMED
File without changes
|
File without changes
|