tencentcloud-sdk-python-cam 3.0.1459__tar.gz → 3.0.1481__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_cam-3.0.1481/PKG-INFO +46 -0
- {tencentcloud-sdk-python-cam-3.0.1459 → tencentcloud_sdk_python_cam-3.0.1481}/setup.py +1 -1
- {tencentcloud-sdk-python-cam-3.0.1459 → tencentcloud_sdk_python_cam-3.0.1481}/tencentcloud/__init__.py +1 -1
- {tencentcloud-sdk-python-cam-3.0.1459 → tencentcloud_sdk_python_cam-3.0.1481}/tencentcloud/cam/v20190116/errorcodes.py +3 -0
- {tencentcloud-sdk-python-cam-3.0.1459 → tencentcloud_sdk_python_cam-3.0.1481}/tencentcloud/cam/v20190116/models.py +15 -2
- tencentcloud_sdk_python_cam-3.0.1481/tencentcloud_sdk_python_cam.egg-info/PKG-INFO +46 -0
- tencentcloud_sdk_python_cam-3.0.1481/tencentcloud_sdk_python_cam.egg-info/requires.txt +1 -0
- tencentcloud-sdk-python-cam-3.0.1459/PKG-INFO +0 -45
- tencentcloud-sdk-python-cam-3.0.1459/tencentcloud_sdk_python_cam.egg-info/PKG-INFO +0 -45
- tencentcloud-sdk-python-cam-3.0.1459/tencentcloud_sdk_python_cam.egg-info/requires.txt +0 -1
- {tencentcloud-sdk-python-cam-3.0.1459 → tencentcloud_sdk_python_cam-3.0.1481}/README.rst +0 -0
- {tencentcloud-sdk-python-cam-3.0.1459 → tencentcloud_sdk_python_cam-3.0.1481}/setup.cfg +0 -0
- {tencentcloud-sdk-python-cam-3.0.1459 → tencentcloud_sdk_python_cam-3.0.1481}/tencentcloud/cam/__init__.py +0 -0
- {tencentcloud-sdk-python-cam-3.0.1459 → tencentcloud_sdk_python_cam-3.0.1481}/tencentcloud/cam/v20190116/__init__.py +0 -0
- {tencentcloud-sdk-python-cam-3.0.1459 → tencentcloud_sdk_python_cam-3.0.1481}/tencentcloud/cam/v20190116/cam_client.py +0 -0
- {tencentcloud-sdk-python-cam-3.0.1459 → tencentcloud_sdk_python_cam-3.0.1481}/tencentcloud_sdk_python_cam.egg-info/SOURCES.txt +0 -0
- {tencentcloud-sdk-python-cam-3.0.1459 → tencentcloud_sdk_python_cam-3.0.1481}/tencentcloud_sdk_python_cam.egg-info/dependency_links.txt +0 -0
- {tencentcloud-sdk-python-cam-3.0.1459 → tencentcloud_sdk_python_cam-3.0.1481}/tencentcloud_sdk_python_cam.egg-info/top_level.txt +0 -0
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: tencentcloud-sdk-python-cam
|
|
3
|
+
Version: 3.0.1481
|
|
4
|
+
Summary: Tencent Cloud Cam SDK for Python
|
|
5
|
+
Home-page: https://github.com/TencentCloud/tencentcloud-sdk-python
|
|
6
|
+
Author: Tencent Cloud
|
|
7
|
+
Maintainer-email: tencentcloudapi@tencent.com
|
|
8
|
+
License: Apache License 2.0
|
|
9
|
+
Platform: any
|
|
10
|
+
Classifier: Development Status :: 5 - Production/Stable
|
|
11
|
+
Classifier: Intended Audience :: Developers
|
|
12
|
+
Classifier: License :: OSI Approved :: Apache Software License
|
|
13
|
+
Classifier: Programming Language :: Python
|
|
14
|
+
Classifier: Programming Language :: Python :: 2.7
|
|
15
|
+
Classifier: Programming Language :: Python :: 3
|
|
16
|
+
Classifier: Programming Language :: Python :: 3.6
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.7
|
|
18
|
+
Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.0.1481
|
|
19
|
+
|
|
20
|
+
============================
|
|
21
|
+
Tencent Cloud SDK for Python
|
|
22
|
+
============================
|
|
23
|
+
|
|
24
|
+
Tencent Cloud Python Cam SDK is the official software development kit, which allows Python developers to write software that makes use of Tencent Cloud services like CVM and CBS.
|
|
25
|
+
The SDK works on Python versions:
|
|
26
|
+
|
|
27
|
+
* 2.7 and greater, including 3.x
|
|
28
|
+
|
|
29
|
+
Quick Start
|
|
30
|
+
-----------
|
|
31
|
+
|
|
32
|
+
First, install the library:
|
|
33
|
+
|
|
34
|
+
.. code-block:: sh
|
|
35
|
+
|
|
36
|
+
$ pip install tencentcloud-sdk-python-common
|
|
37
|
+
$ pip install tencentcloud-sdk-python-cam
|
|
38
|
+
|
|
39
|
+
or download source code from github and install:
|
|
40
|
+
|
|
41
|
+
.. code-block:: sh
|
|
42
|
+
|
|
43
|
+
$ git clone https://github.com/tencentcloud/tencentcloud-sdk-python.git
|
|
44
|
+
$ cd tencentcloud-sdk-python
|
|
45
|
+
$ python package.py --components common cam
|
|
46
|
+
|
|
@@ -8,7 +8,7 @@ ROOT = os.path.dirname(__file__)
|
|
|
8
8
|
|
|
9
9
|
setup(
|
|
10
10
|
name='tencentcloud-sdk-python-cam',
|
|
11
|
-
install_requires=["tencentcloud-sdk-python-common>=3.0.
|
|
11
|
+
install_requires=["tencentcloud-sdk-python-common>=3.0.1481,<4.0.0"],
|
|
12
12
|
version=tencentcloud.__version__,
|
|
13
13
|
description='Tencent Cloud Cam SDK for Python',
|
|
14
14
|
long_description=open('README.rst').read(),
|
|
@@ -332,6 +332,9 @@ OPERATIONDENIED_CICPOLICYOPERATIONDENIED = 'OperationDenied.CicPolicyOperationDe
|
|
|
332
332
|
# 存在未删除的API密钥。
|
|
333
333
|
OPERATIONDENIED_HAVEKEYS = 'OperationDenied.HaveKeys'
|
|
334
334
|
|
|
335
|
+
# 关联到标签组的策略,不能包含标签条件键。
|
|
336
|
+
OPERATIONDENIED_POLICYTAGCONFLICT = 'OperationDenied.PolicyTagConflict'
|
|
337
|
+
|
|
335
338
|
# 子用户不允许操作主账号密钥。
|
|
336
339
|
OPERATIONDENIED_SUBUIN = 'OperationDenied.SubUin'
|
|
337
340
|
|
|
@@ -10585,6 +10585,8 @@ class Receiver(AbstractModel):
|
|
|
10585
10585
|
:type WechatFlag: int
|
|
10586
10586
|
:param _Uin: 账号uin
|
|
10587
10587
|
:type Uin: int
|
|
10588
|
+
:param _CountryCode: 国家代码
|
|
10589
|
+
:type CountryCode: str
|
|
10588
10590
|
"""
|
|
10589
10591
|
self._Uid = None
|
|
10590
10592
|
self._Name = None
|
|
@@ -10596,6 +10598,7 @@ class Receiver(AbstractModel):
|
|
|
10596
10598
|
self._IsReceiverOwner = None
|
|
10597
10599
|
self._WechatFlag = None
|
|
10598
10600
|
self._Uin = None
|
|
10601
|
+
self._CountryCode = None
|
|
10599
10602
|
|
|
10600
10603
|
@property
|
|
10601
10604
|
def Uid(self):
|
|
@@ -10708,6 +10711,17 @@ class Receiver(AbstractModel):
|
|
|
10708
10711
|
def Uin(self, Uin):
|
|
10709
10712
|
self._Uin = Uin
|
|
10710
10713
|
|
|
10714
|
+
@property
|
|
10715
|
+
def CountryCode(self):
|
|
10716
|
+
r"""国家代码
|
|
10717
|
+
:rtype: str
|
|
10718
|
+
"""
|
|
10719
|
+
return self._CountryCode
|
|
10720
|
+
|
|
10721
|
+
@CountryCode.setter
|
|
10722
|
+
def CountryCode(self, CountryCode):
|
|
10723
|
+
self._CountryCode = CountryCode
|
|
10724
|
+
|
|
10711
10725
|
|
|
10712
10726
|
def _deserialize(self, params):
|
|
10713
10727
|
self._Uid = params.get("Uid")
|
|
@@ -10720,6 +10734,7 @@ class Receiver(AbstractModel):
|
|
|
10720
10734
|
self._IsReceiverOwner = params.get("IsReceiverOwner")
|
|
10721
10735
|
self._WechatFlag = params.get("WechatFlag")
|
|
10722
10736
|
self._Uin = params.get("Uin")
|
|
10737
|
+
self._CountryCode = params.get("CountryCode")
|
|
10723
10738
|
memeber_set = set(params.keys())
|
|
10724
10739
|
for name, value in vars(self).items():
|
|
10725
10740
|
property_name = name[1:]
|
|
@@ -12679,7 +12694,6 @@ class UpdatePolicyResponse(AbstractModel):
|
|
|
12679
12694
|
def __init__(self):
|
|
12680
12695
|
r"""
|
|
12681
12696
|
:param _PolicyId: 策略id,入参是PolicyName时,才会返回
|
|
12682
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
12683
12697
|
:type PolicyId: int
|
|
12684
12698
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
12685
12699
|
:type RequestId: str
|
|
@@ -12690,7 +12704,6 @@ class UpdatePolicyResponse(AbstractModel):
|
|
|
12690
12704
|
@property
|
|
12691
12705
|
def PolicyId(self):
|
|
12692
12706
|
r"""策略id,入参是PolicyName时,才会返回
|
|
12693
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
12694
12707
|
:rtype: int
|
|
12695
12708
|
"""
|
|
12696
12709
|
return self._PolicyId
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: tencentcloud-sdk-python-cam
|
|
3
|
+
Version: 3.0.1481
|
|
4
|
+
Summary: Tencent Cloud Cam SDK for Python
|
|
5
|
+
Home-page: https://github.com/TencentCloud/tencentcloud-sdk-python
|
|
6
|
+
Author: Tencent Cloud
|
|
7
|
+
Maintainer-email: tencentcloudapi@tencent.com
|
|
8
|
+
License: Apache License 2.0
|
|
9
|
+
Platform: any
|
|
10
|
+
Classifier: Development Status :: 5 - Production/Stable
|
|
11
|
+
Classifier: Intended Audience :: Developers
|
|
12
|
+
Classifier: License :: OSI Approved :: Apache Software License
|
|
13
|
+
Classifier: Programming Language :: Python
|
|
14
|
+
Classifier: Programming Language :: Python :: 2.7
|
|
15
|
+
Classifier: Programming Language :: Python :: 3
|
|
16
|
+
Classifier: Programming Language :: Python :: 3.6
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.7
|
|
18
|
+
Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.0.1481
|
|
19
|
+
|
|
20
|
+
============================
|
|
21
|
+
Tencent Cloud SDK for Python
|
|
22
|
+
============================
|
|
23
|
+
|
|
24
|
+
Tencent Cloud Python Cam SDK is the official software development kit, which allows Python developers to write software that makes use of Tencent Cloud services like CVM and CBS.
|
|
25
|
+
The SDK works on Python versions:
|
|
26
|
+
|
|
27
|
+
* 2.7 and greater, including 3.x
|
|
28
|
+
|
|
29
|
+
Quick Start
|
|
30
|
+
-----------
|
|
31
|
+
|
|
32
|
+
First, install the library:
|
|
33
|
+
|
|
34
|
+
.. code-block:: sh
|
|
35
|
+
|
|
36
|
+
$ pip install tencentcloud-sdk-python-common
|
|
37
|
+
$ pip install tencentcloud-sdk-python-cam
|
|
38
|
+
|
|
39
|
+
or download source code from github and install:
|
|
40
|
+
|
|
41
|
+
.. code-block:: sh
|
|
42
|
+
|
|
43
|
+
$ git clone https://github.com/tencentcloud/tencentcloud-sdk-python.git
|
|
44
|
+
$ cd tencentcloud-sdk-python
|
|
45
|
+
$ python package.py --components common cam
|
|
46
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common<4.0.0,>=3.0.1481
|
|
@@ -1,45 +0,0 @@
|
|
|
1
|
-
Metadata-Version: 1.2
|
|
2
|
-
Name: tencentcloud-sdk-python-cam
|
|
3
|
-
Version: 3.0.1459
|
|
4
|
-
Summary: Tencent Cloud Cam SDK for Python
|
|
5
|
-
Home-page: https://github.com/TencentCloud/tencentcloud-sdk-python
|
|
6
|
-
Author: Tencent Cloud
|
|
7
|
-
Maintainer-email: tencentcloudapi@tencent.com
|
|
8
|
-
License: Apache License 2.0
|
|
9
|
-
Description: ============================
|
|
10
|
-
Tencent Cloud SDK for Python
|
|
11
|
-
============================
|
|
12
|
-
|
|
13
|
-
Tencent Cloud Python Cam SDK is the official software development kit, which allows Python developers to write software that makes use of Tencent Cloud services like CVM and CBS.
|
|
14
|
-
The SDK works on Python versions:
|
|
15
|
-
|
|
16
|
-
* 2.7 and greater, including 3.x
|
|
17
|
-
|
|
18
|
-
Quick Start
|
|
19
|
-
-----------
|
|
20
|
-
|
|
21
|
-
First, install the library:
|
|
22
|
-
|
|
23
|
-
.. code-block:: sh
|
|
24
|
-
|
|
25
|
-
$ pip install tencentcloud-sdk-python-common
|
|
26
|
-
$ pip install tencentcloud-sdk-python-cam
|
|
27
|
-
|
|
28
|
-
or download source code from github and install:
|
|
29
|
-
|
|
30
|
-
.. code-block:: sh
|
|
31
|
-
|
|
32
|
-
$ git clone https://github.com/tencentcloud/tencentcloud-sdk-python.git
|
|
33
|
-
$ cd tencentcloud-sdk-python
|
|
34
|
-
$ python package.py --components common cam
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
Platform: any
|
|
38
|
-
Classifier: Development Status :: 5 - Production/Stable
|
|
39
|
-
Classifier: Intended Audience :: Developers
|
|
40
|
-
Classifier: License :: OSI Approved :: Apache Software License
|
|
41
|
-
Classifier: Programming Language :: Python
|
|
42
|
-
Classifier: Programming Language :: Python :: 2.7
|
|
43
|
-
Classifier: Programming Language :: Python :: 3
|
|
44
|
-
Classifier: Programming Language :: Python :: 3.6
|
|
45
|
-
Classifier: Programming Language :: Python :: 3.7
|
|
@@ -1,45 +0,0 @@
|
|
|
1
|
-
Metadata-Version: 1.2
|
|
2
|
-
Name: tencentcloud-sdk-python-cam
|
|
3
|
-
Version: 3.0.1459
|
|
4
|
-
Summary: Tencent Cloud Cam SDK for Python
|
|
5
|
-
Home-page: https://github.com/TencentCloud/tencentcloud-sdk-python
|
|
6
|
-
Author: Tencent Cloud
|
|
7
|
-
Maintainer-email: tencentcloudapi@tencent.com
|
|
8
|
-
License: Apache License 2.0
|
|
9
|
-
Description: ============================
|
|
10
|
-
Tencent Cloud SDK for Python
|
|
11
|
-
============================
|
|
12
|
-
|
|
13
|
-
Tencent Cloud Python Cam SDK is the official software development kit, which allows Python developers to write software that makes use of Tencent Cloud services like CVM and CBS.
|
|
14
|
-
The SDK works on Python versions:
|
|
15
|
-
|
|
16
|
-
* 2.7 and greater, including 3.x
|
|
17
|
-
|
|
18
|
-
Quick Start
|
|
19
|
-
-----------
|
|
20
|
-
|
|
21
|
-
First, install the library:
|
|
22
|
-
|
|
23
|
-
.. code-block:: sh
|
|
24
|
-
|
|
25
|
-
$ pip install tencentcloud-sdk-python-common
|
|
26
|
-
$ pip install tencentcloud-sdk-python-cam
|
|
27
|
-
|
|
28
|
-
or download source code from github and install:
|
|
29
|
-
|
|
30
|
-
.. code-block:: sh
|
|
31
|
-
|
|
32
|
-
$ git clone https://github.com/tencentcloud/tencentcloud-sdk-python.git
|
|
33
|
-
$ cd tencentcloud-sdk-python
|
|
34
|
-
$ python package.py --components common cam
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
Platform: any
|
|
38
|
-
Classifier: Development Status :: 5 - Production/Stable
|
|
39
|
-
Classifier: Intended Audience :: Developers
|
|
40
|
-
Classifier: License :: OSI Approved :: Apache Software License
|
|
41
|
-
Classifier: Programming Language :: Python
|
|
42
|
-
Classifier: Programming Language :: Python :: 2.7
|
|
43
|
-
Classifier: Programming Language :: Python :: 3
|
|
44
|
-
Classifier: Programming Language :: Python :: 3.6
|
|
45
|
-
Classifier: Programming Language :: Python :: 3.7
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common<4.0.0,>=3.0.1459
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|