tencentcloud-sdk-python-bh 3.1.61__tar.gz → 3.1.67__tar.gz
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_sdk_python_bh-3.1.61 → tencentcloud_sdk_python_bh-3.1.67}/PKG-INFO +2 -2
- {tencentcloud_sdk_python_bh-3.1.61 → tencentcloud_sdk_python_bh-3.1.67}/setup.py +1 -1
- {tencentcloud_sdk_python_bh-3.1.61 → tencentcloud_sdk_python_bh-3.1.67}/tencentcloud/__init__.py +1 -1
- {tencentcloud_sdk_python_bh-3.1.61 → tencentcloud_sdk_python_bh-3.1.67}/tencentcloud/bh/v20230418/models.py +62 -2
- {tencentcloud_sdk_python_bh-3.1.61 → tencentcloud_sdk_python_bh-3.1.67}/tencentcloud_sdk_python_bh.egg-info/PKG-INFO +2 -2
- tencentcloud_sdk_python_bh-3.1.67/tencentcloud_sdk_python_bh.egg-info/requires.txt +1 -0
- tencentcloud_sdk_python_bh-3.1.61/tencentcloud_sdk_python_bh.egg-info/requires.txt +0 -1
- {tencentcloud_sdk_python_bh-3.1.61 → tencentcloud_sdk_python_bh-3.1.67}/README.rst +0 -0
- {tencentcloud_sdk_python_bh-3.1.61 → tencentcloud_sdk_python_bh-3.1.67}/setup.cfg +0 -0
- {tencentcloud_sdk_python_bh-3.1.61 → tencentcloud_sdk_python_bh-3.1.67}/tencentcloud/bh/__init__.py +0 -0
- {tencentcloud_sdk_python_bh-3.1.61 → tencentcloud_sdk_python_bh-3.1.67}/tencentcloud/bh/v20230418/__init__.py +0 -0
- {tencentcloud_sdk_python_bh-3.1.61 → tencentcloud_sdk_python_bh-3.1.67}/tencentcloud/bh/v20230418/bh_client.py +0 -0
- {tencentcloud_sdk_python_bh-3.1.61 → tencentcloud_sdk_python_bh-3.1.67}/tencentcloud/bh/v20230418/bh_client_async.py +0 -0
- {tencentcloud_sdk_python_bh-3.1.61 → tencentcloud_sdk_python_bh-3.1.67}/tencentcloud/bh/v20230418/errorcodes.py +0 -0
- {tencentcloud_sdk_python_bh-3.1.61 → tencentcloud_sdk_python_bh-3.1.67}/tencentcloud_sdk_python_bh.egg-info/SOURCES.txt +0 -0
- {tencentcloud_sdk_python_bh-3.1.61 → tencentcloud_sdk_python_bh-3.1.67}/tencentcloud_sdk_python_bh.egg-info/dependency_links.txt +0 -0
- {tencentcloud_sdk_python_bh-3.1.61 → tencentcloud_sdk_python_bh-3.1.67}/tencentcloud_sdk_python_bh.egg-info/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: tencentcloud-sdk-python-bh
|
|
3
|
-
Version: 3.1.
|
|
3
|
+
Version: 3.1.67
|
|
4
4
|
Summary: Tencent Cloud Bh SDK for Python
|
|
5
5
|
Home-page: https://github.com/TencentCloud/tencentcloud-sdk-python
|
|
6
6
|
Author: Tencent Cloud
|
|
@@ -15,7 +15,7 @@ Classifier: Programming Language :: Python :: 2.7
|
|
|
15
15
|
Classifier: Programming Language :: Python :: 3
|
|
16
16
|
Classifier: Programming Language :: Python :: 3.6
|
|
17
17
|
Classifier: Programming Language :: Python :: 3.7
|
|
18
|
-
Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.
|
|
18
|
+
Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.67
|
|
19
19
|
|
|
20
20
|
============================
|
|
21
21
|
Tencent Cloud SDK for Python
|
|
@@ -8,7 +8,7 @@ ROOT = os.path.dirname(__file__)
|
|
|
8
8
|
|
|
9
9
|
setup(
|
|
10
10
|
name='tencentcloud-sdk-python-bh',
|
|
11
|
-
install_requires=["tencentcloud-sdk-python-common>=3.1.
|
|
11
|
+
install_requires=["tencentcloud-sdk-python-common>=3.1.67,<4.0.0"],
|
|
12
12
|
|
|
13
13
|
version=tencentcloud.__version__,
|
|
14
14
|
description='Tencent Cloud Bh SDK for Python',
|
|
@@ -2372,12 +2372,15 @@ class ChangePwdTaskDetail(AbstractModel):
|
|
|
2372
2372
|
:type Device: :class:`tencentcloud.bh.v20230418.models.Device`
|
|
2373
2373
|
:param _Account: 资产账号
|
|
2374
2374
|
:type Account: str
|
|
2375
|
-
:param _LastChangeStatus: 上次改密结果。0-未改密 1-改密成功 2
|
|
2375
|
+
:param _LastChangeStatus: 上次改密结果。0-未改密 1-改密成功 2-改密失败,3-改密中,4-改密超时
|
|
2376
2376
|
:type LastChangeStatus: int
|
|
2377
|
+
:param _TaskStatus: 改密任务状态,0-待执行,1-执行完成,2-执行失败,3-执行中,4-执行超时
|
|
2378
|
+
:type TaskStatus: int
|
|
2377
2379
|
"""
|
|
2378
2380
|
self._Device = None
|
|
2379
2381
|
self._Account = None
|
|
2380
2382
|
self._LastChangeStatus = None
|
|
2383
|
+
self._TaskStatus = None
|
|
2381
2384
|
|
|
2382
2385
|
@property
|
|
2383
2386
|
def Device(self):
|
|
@@ -2403,7 +2406,7 @@ class ChangePwdTaskDetail(AbstractModel):
|
|
|
2403
2406
|
|
|
2404
2407
|
@property
|
|
2405
2408
|
def LastChangeStatus(self):
|
|
2406
|
-
r"""上次改密结果。0-未改密 1-改密成功 2
|
|
2409
|
+
r"""上次改密结果。0-未改密 1-改密成功 2-改密失败,3-改密中,4-改密超时
|
|
2407
2410
|
:rtype: int
|
|
2408
2411
|
"""
|
|
2409
2412
|
return self._LastChangeStatus
|
|
@@ -2412,6 +2415,17 @@ class ChangePwdTaskDetail(AbstractModel):
|
|
|
2412
2415
|
def LastChangeStatus(self, LastChangeStatus):
|
|
2413
2416
|
self._LastChangeStatus = LastChangeStatus
|
|
2414
2417
|
|
|
2418
|
+
@property
|
|
2419
|
+
def TaskStatus(self):
|
|
2420
|
+
r"""改密任务状态,0-待执行,1-执行完成,2-执行失败,3-执行中,4-执行超时
|
|
2421
|
+
:rtype: int
|
|
2422
|
+
"""
|
|
2423
|
+
return self._TaskStatus
|
|
2424
|
+
|
|
2425
|
+
@TaskStatus.setter
|
|
2426
|
+
def TaskStatus(self, TaskStatus):
|
|
2427
|
+
self._TaskStatus = TaskStatus
|
|
2428
|
+
|
|
2415
2429
|
|
|
2416
2430
|
def _deserialize(self, params):
|
|
2417
2431
|
if params.get("Device") is not None:
|
|
@@ -2419,6 +2433,7 @@ class ChangePwdTaskDetail(AbstractModel):
|
|
|
2419
2433
|
self._Device._deserialize(params.get("Device"))
|
|
2420
2434
|
self._Account = params.get("Account")
|
|
2421
2435
|
self._LastChangeStatus = params.get("LastChangeStatus")
|
|
2436
|
+
self._TaskStatus = params.get("TaskStatus")
|
|
2422
2437
|
memeber_set = set(params.keys())
|
|
2423
2438
|
for name, value in vars(self).items():
|
|
2424
2439
|
property_name = name[1:]
|
|
@@ -2480,6 +2495,8 @@ class ChangePwdTaskInfo(AbstractModel):
|
|
|
2480
2495
|
:type NextTime: str
|
|
2481
2496
|
:param _LastTime: 上次执行时间
|
|
2482
2497
|
:type LastTime: str
|
|
2498
|
+
:param _Status: 改密任务状态,0-待执行,1-执行完成,2-执行失败,3-执行中,4-执行超时
|
|
2499
|
+
:type Status: int
|
|
2483
2500
|
"""
|
|
2484
2501
|
self._Id = None
|
|
2485
2502
|
self._OperationId = None
|
|
@@ -2503,6 +2520,7 @@ class ChangePwdTaskInfo(AbstractModel):
|
|
|
2503
2520
|
self._FirstTime = None
|
|
2504
2521
|
self._NextTime = None
|
|
2505
2522
|
self._LastTime = None
|
|
2523
|
+
self._Status = None
|
|
2506
2524
|
|
|
2507
2525
|
@property
|
|
2508
2526
|
def Id(self):
|
|
@@ -2746,6 +2764,17 @@ class ChangePwdTaskInfo(AbstractModel):
|
|
|
2746
2764
|
def LastTime(self, LastTime):
|
|
2747
2765
|
self._LastTime = LastTime
|
|
2748
2766
|
|
|
2767
|
+
@property
|
|
2768
|
+
def Status(self):
|
|
2769
|
+
r"""改密任务状态,0-待执行,1-执行完成,2-执行失败,3-执行中,4-执行超时
|
|
2770
|
+
:rtype: int
|
|
2771
|
+
"""
|
|
2772
|
+
return self._Status
|
|
2773
|
+
|
|
2774
|
+
@Status.setter
|
|
2775
|
+
def Status(self, Status):
|
|
2776
|
+
self._Status = Status
|
|
2777
|
+
|
|
2749
2778
|
|
|
2750
2779
|
def _deserialize(self, params):
|
|
2751
2780
|
self._Id = params.get("Id")
|
|
@@ -2777,6 +2806,7 @@ class ChangePwdTaskInfo(AbstractModel):
|
|
|
2777
2806
|
self._FirstTime = params.get("FirstTime")
|
|
2778
2807
|
self._NextTime = params.get("NextTime")
|
|
2779
2808
|
self._LastTime = params.get("LastTime")
|
|
2809
|
+
self._Status = params.get("Status")
|
|
2780
2810
|
memeber_set = set(params.keys())
|
|
2781
2811
|
for name, value in vars(self).items():
|
|
2782
2812
|
property_name = name[1:]
|
|
@@ -18184,6 +18214,10 @@ class Resource(AbstractModel):
|
|
|
18184
18214
|
:type TimeSpan: int
|
|
18185
18215
|
:param _PayMode: 计费模式 0后付费,1预付费
|
|
18186
18216
|
:type PayMode: int
|
|
18217
|
+
:param _BillingRegion: 计费侧地域
|
|
18218
|
+
:type BillingRegion: str
|
|
18219
|
+
:param _BillingZone: 计费侧可用区
|
|
18220
|
+
:type BillingZone: str
|
|
18187
18221
|
"""
|
|
18188
18222
|
self._ResourceId = None
|
|
18189
18223
|
self._ApCode = None
|
|
@@ -18243,6 +18277,8 @@ class Resource(AbstractModel):
|
|
|
18243
18277
|
self._TimeUnit = None
|
|
18244
18278
|
self._TimeSpan = None
|
|
18245
18279
|
self._PayMode = None
|
|
18280
|
+
self._BillingRegion = None
|
|
18281
|
+
self._BillingZone = None
|
|
18246
18282
|
|
|
18247
18283
|
@property
|
|
18248
18284
|
def ResourceId(self):
|
|
@@ -18882,6 +18918,28 @@ class Resource(AbstractModel):
|
|
|
18882
18918
|
def PayMode(self, PayMode):
|
|
18883
18919
|
self._PayMode = PayMode
|
|
18884
18920
|
|
|
18921
|
+
@property
|
|
18922
|
+
def BillingRegion(self):
|
|
18923
|
+
r"""计费侧地域
|
|
18924
|
+
:rtype: str
|
|
18925
|
+
"""
|
|
18926
|
+
return self._BillingRegion
|
|
18927
|
+
|
|
18928
|
+
@BillingRegion.setter
|
|
18929
|
+
def BillingRegion(self, BillingRegion):
|
|
18930
|
+
self._BillingRegion = BillingRegion
|
|
18931
|
+
|
|
18932
|
+
@property
|
|
18933
|
+
def BillingZone(self):
|
|
18934
|
+
r"""计费侧可用区
|
|
18935
|
+
:rtype: str
|
|
18936
|
+
"""
|
|
18937
|
+
return self._BillingZone
|
|
18938
|
+
|
|
18939
|
+
@BillingZone.setter
|
|
18940
|
+
def BillingZone(self, BillingZone):
|
|
18941
|
+
self._BillingZone = BillingZone
|
|
18942
|
+
|
|
18885
18943
|
|
|
18886
18944
|
def _deserialize(self, params):
|
|
18887
18945
|
self._ResourceId = params.get("ResourceId")
|
|
@@ -18947,6 +19005,8 @@ class Resource(AbstractModel):
|
|
|
18947
19005
|
self._TimeUnit = params.get("TimeUnit")
|
|
18948
19006
|
self._TimeSpan = params.get("TimeSpan")
|
|
18949
19007
|
self._PayMode = params.get("PayMode")
|
|
19008
|
+
self._BillingRegion = params.get("BillingRegion")
|
|
19009
|
+
self._BillingZone = params.get("BillingZone")
|
|
18950
19010
|
memeber_set = set(params.keys())
|
|
18951
19011
|
for name, value in vars(self).items():
|
|
18952
19012
|
property_name = name[1:]
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: tencentcloud-sdk-python-bh
|
|
3
|
-
Version: 3.1.
|
|
3
|
+
Version: 3.1.67
|
|
4
4
|
Summary: Tencent Cloud Bh SDK for Python
|
|
5
5
|
Home-page: https://github.com/TencentCloud/tencentcloud-sdk-python
|
|
6
6
|
Author: Tencent Cloud
|
|
@@ -15,7 +15,7 @@ Classifier: Programming Language :: Python :: 2.7
|
|
|
15
15
|
Classifier: Programming Language :: Python :: 3
|
|
16
16
|
Classifier: Programming Language :: Python :: 3.6
|
|
17
17
|
Classifier: Programming Language :: Python :: 3.7
|
|
18
|
-
Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.
|
|
18
|
+
Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.67
|
|
19
19
|
|
|
20
20
|
============================
|
|
21
21
|
Tencent Cloud SDK for Python
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common<4.0.0,>=3.1.67
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common<4.0.0,>=3.1.61
|
|
File without changes
|
|
File without changes
|
{tencentcloud_sdk_python_bh-3.1.61 → tencentcloud_sdk_python_bh-3.1.67}/tencentcloud/bh/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|