tencentcloud-sdk-python-cam 3.1.20__tar.gz → 3.1.41__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.1.20 → tencentcloud_sdk_python_cam-3.1.41}/PKG-INFO +2 -2
- {tencentcloud_sdk_python_cam-3.1.20 → tencentcloud_sdk_python_cam-3.1.41}/setup.py +1 -1
- {tencentcloud_sdk_python_cam-3.1.20 → tencentcloud_sdk_python_cam-3.1.41}/tencentcloud/__init__.py +1 -1
- {tencentcloud_sdk_python_cam-3.1.20 → tencentcloud_sdk_python_cam-3.1.41}/tencentcloud/cam/v20190116/models.py +45 -0
- {tencentcloud_sdk_python_cam-3.1.20 → tencentcloud_sdk_python_cam-3.1.41}/tencentcloud_sdk_python_cam.egg-info/PKG-INFO +2 -2
- tencentcloud_sdk_python_cam-3.1.41/tencentcloud_sdk_python_cam.egg-info/requires.txt +1 -0
- tencentcloud_sdk_python_cam-3.1.20/tencentcloud_sdk_python_cam.egg-info/requires.txt +0 -1
- {tencentcloud_sdk_python_cam-3.1.20 → tencentcloud_sdk_python_cam-3.1.41}/README.rst +0 -0
- {tencentcloud_sdk_python_cam-3.1.20 → tencentcloud_sdk_python_cam-3.1.41}/setup.cfg +0 -0
- {tencentcloud_sdk_python_cam-3.1.20 → tencentcloud_sdk_python_cam-3.1.41}/tencentcloud/cam/__init__.py +0 -0
- {tencentcloud_sdk_python_cam-3.1.20 → tencentcloud_sdk_python_cam-3.1.41}/tencentcloud/cam/v20190116/__init__.py +0 -0
- {tencentcloud_sdk_python_cam-3.1.20 → tencentcloud_sdk_python_cam-3.1.41}/tencentcloud/cam/v20190116/cam_client.py +0 -0
- {tencentcloud_sdk_python_cam-3.1.20 → tencentcloud_sdk_python_cam-3.1.41}/tencentcloud/cam/v20190116/cam_client_async.py +0 -0
- {tencentcloud_sdk_python_cam-3.1.20 → tencentcloud_sdk_python_cam-3.1.41}/tencentcloud/cam/v20190116/errorcodes.py +0 -0
- {tencentcloud_sdk_python_cam-3.1.20 → tencentcloud_sdk_python_cam-3.1.41}/tencentcloud_sdk_python_cam.egg-info/SOURCES.txt +0 -0
- {tencentcloud_sdk_python_cam-3.1.20 → tencentcloud_sdk_python_cam-3.1.41}/tencentcloud_sdk_python_cam.egg-info/dependency_links.txt +0 -0
- {tencentcloud_sdk_python_cam-3.1.20 → tencentcloud_sdk_python_cam-3.1.41}/tencentcloud_sdk_python_cam.egg-info/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: tencentcloud-sdk-python-cam
|
|
3
|
-
Version: 3.1.
|
|
3
|
+
Version: 3.1.41
|
|
4
4
|
Summary: Tencent Cloud Cam 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.41
|
|
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-cam',
|
|
11
|
-
install_requires=["tencentcloud-sdk-python-common>=3.1.
|
|
11
|
+
install_requires=["tencentcloud-sdk-python-common>=3.1.41,<4.0.0"],
|
|
12
12
|
|
|
13
13
|
version=tencentcloud.__version__,
|
|
14
14
|
description='Tencent Cloud Cam SDK for Python',
|
|
@@ -2984,6 +2984,8 @@ class CreateUserOIDCConfigRequest(AbstractModel):
|
|
|
2984
2984
|
:type Scope: list of str
|
|
2985
2985
|
:param _Description: 描述信息。由用户自行定义。
|
|
2986
2986
|
:type Description: str
|
|
2987
|
+
:param _AutoRotateKey: OIDC公钥自动轮转开关(默认为0代表关闭,1代表开启)如果不传的话会默认置0
|
|
2988
|
+
:type AutoRotateKey: int
|
|
2987
2989
|
"""
|
|
2988
2990
|
self._IdentityUrl = None
|
|
2989
2991
|
self._ClientId = None
|
|
@@ -2994,6 +2996,7 @@ class CreateUserOIDCConfigRequest(AbstractModel):
|
|
|
2994
2996
|
self._IdentityKey = None
|
|
2995
2997
|
self._Scope = None
|
|
2996
2998
|
self._Description = None
|
|
2999
|
+
self._AutoRotateKey = None
|
|
2997
3000
|
|
|
2998
3001
|
@property
|
|
2999
3002
|
def IdentityUrl(self):
|
|
@@ -3095,6 +3098,17 @@ class CreateUserOIDCConfigRequest(AbstractModel):
|
|
|
3095
3098
|
def Description(self, Description):
|
|
3096
3099
|
self._Description = Description
|
|
3097
3100
|
|
|
3101
|
+
@property
|
|
3102
|
+
def AutoRotateKey(self):
|
|
3103
|
+
r"""OIDC公钥自动轮转开关(默认为0代表关闭,1代表开启)如果不传的话会默认置0
|
|
3104
|
+
:rtype: int
|
|
3105
|
+
"""
|
|
3106
|
+
return self._AutoRotateKey
|
|
3107
|
+
|
|
3108
|
+
@AutoRotateKey.setter
|
|
3109
|
+
def AutoRotateKey(self, AutoRotateKey):
|
|
3110
|
+
self._AutoRotateKey = AutoRotateKey
|
|
3111
|
+
|
|
3098
3112
|
|
|
3099
3113
|
def _deserialize(self, params):
|
|
3100
3114
|
self._IdentityUrl = params.get("IdentityUrl")
|
|
@@ -3106,6 +3120,7 @@ class CreateUserOIDCConfigRequest(AbstractModel):
|
|
|
3106
3120
|
self._IdentityKey = params.get("IdentityKey")
|
|
3107
3121
|
self._Scope = params.get("Scope")
|
|
3108
3122
|
self._Description = params.get("Description")
|
|
3123
|
+
self._AutoRotateKey = params.get("AutoRotateKey")
|
|
3109
3124
|
memeber_set = set(params.keys())
|
|
3110
3125
|
for name, value in vars(self).items():
|
|
3111
3126
|
property_name = name[1:]
|
|
@@ -4818,6 +4833,8 @@ class DescribeUserOIDCConfigResponse(AbstractModel):
|
|
|
4818
4833
|
:type MappingFiled: str
|
|
4819
4834
|
:param _Description: 描述
|
|
4820
4835
|
:type Description: str
|
|
4836
|
+
:param _AutoRotateKey: OIDC公钥自动轮转开关(默认为0代表关闭,1代表开启)
|
|
4837
|
+
:type AutoRotateKey: int
|
|
4821
4838
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
4822
4839
|
:type RequestId: str
|
|
4823
4840
|
"""
|
|
@@ -4832,6 +4849,7 @@ class DescribeUserOIDCConfigResponse(AbstractModel):
|
|
|
4832
4849
|
self._ResponseMode = None
|
|
4833
4850
|
self._MappingFiled = None
|
|
4834
4851
|
self._Description = None
|
|
4852
|
+
self._AutoRotateKey = None
|
|
4835
4853
|
self._RequestId = None
|
|
4836
4854
|
|
|
4837
4855
|
@property
|
|
@@ -4955,6 +4973,17 @@ class DescribeUserOIDCConfigResponse(AbstractModel):
|
|
|
4955
4973
|
def Description(self, Description):
|
|
4956
4974
|
self._Description = Description
|
|
4957
4975
|
|
|
4976
|
+
@property
|
|
4977
|
+
def AutoRotateKey(self):
|
|
4978
|
+
r"""OIDC公钥自动轮转开关(默认为0代表关闭,1代表开启)
|
|
4979
|
+
:rtype: int
|
|
4980
|
+
"""
|
|
4981
|
+
return self._AutoRotateKey
|
|
4982
|
+
|
|
4983
|
+
@AutoRotateKey.setter
|
|
4984
|
+
def AutoRotateKey(self, AutoRotateKey):
|
|
4985
|
+
self._AutoRotateKey = AutoRotateKey
|
|
4986
|
+
|
|
4958
4987
|
@property
|
|
4959
4988
|
def RequestId(self):
|
|
4960
4989
|
r"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
@@ -4979,6 +5008,7 @@ class DescribeUserOIDCConfigResponse(AbstractModel):
|
|
|
4979
5008
|
self._ResponseMode = params.get("ResponseMode")
|
|
4980
5009
|
self._MappingFiled = params.get("MappingFiled")
|
|
4981
5010
|
self._Description = params.get("Description")
|
|
5011
|
+
self._AutoRotateKey = params.get("AutoRotateKey")
|
|
4982
5012
|
self._RequestId = params.get("RequestId")
|
|
4983
5013
|
|
|
4984
5014
|
|
|
@@ -13240,6 +13270,8 @@ class UpdateUserOIDCConfigRequest(AbstractModel):
|
|
|
13240
13270
|
:type Scope: list of str
|
|
13241
13271
|
:param _Description: 描述,长度为1~255个英文或中文字符,默认值为空。
|
|
13242
13272
|
:type Description: str
|
|
13273
|
+
:param _AutoRotateKey: OIDC公钥自动轮转开关(默认为0代表关闭,1代表开启)如果不传的话,会默认置0
|
|
13274
|
+
:type AutoRotateKey: int
|
|
13243
13275
|
"""
|
|
13244
13276
|
self._IdentityUrl = None
|
|
13245
13277
|
self._ClientId = None
|
|
@@ -13250,6 +13282,7 @@ class UpdateUserOIDCConfigRequest(AbstractModel):
|
|
|
13250
13282
|
self._IdentityKey = None
|
|
13251
13283
|
self._Scope = None
|
|
13252
13284
|
self._Description = None
|
|
13285
|
+
self._AutoRotateKey = None
|
|
13253
13286
|
|
|
13254
13287
|
@property
|
|
13255
13288
|
def IdentityUrl(self):
|
|
@@ -13351,6 +13384,17 @@ class UpdateUserOIDCConfigRequest(AbstractModel):
|
|
|
13351
13384
|
def Description(self, Description):
|
|
13352
13385
|
self._Description = Description
|
|
13353
13386
|
|
|
13387
|
+
@property
|
|
13388
|
+
def AutoRotateKey(self):
|
|
13389
|
+
r"""OIDC公钥自动轮转开关(默认为0代表关闭,1代表开启)如果不传的话,会默认置0
|
|
13390
|
+
:rtype: int
|
|
13391
|
+
"""
|
|
13392
|
+
return self._AutoRotateKey
|
|
13393
|
+
|
|
13394
|
+
@AutoRotateKey.setter
|
|
13395
|
+
def AutoRotateKey(self, AutoRotateKey):
|
|
13396
|
+
self._AutoRotateKey = AutoRotateKey
|
|
13397
|
+
|
|
13354
13398
|
|
|
13355
13399
|
def _deserialize(self, params):
|
|
13356
13400
|
self._IdentityUrl = params.get("IdentityUrl")
|
|
@@ -13362,6 +13406,7 @@ class UpdateUserOIDCConfigRequest(AbstractModel):
|
|
|
13362
13406
|
self._IdentityKey = params.get("IdentityKey")
|
|
13363
13407
|
self._Scope = params.get("Scope")
|
|
13364
13408
|
self._Description = params.get("Description")
|
|
13409
|
+
self._AutoRotateKey = params.get("AutoRotateKey")
|
|
13365
13410
|
memeber_set = set(params.keys())
|
|
13366
13411
|
for name, value in vars(self).items():
|
|
13367
13412
|
property_name = name[1:]
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: tencentcloud-sdk-python-cam
|
|
3
|
-
Version: 3.1.
|
|
3
|
+
Version: 3.1.41
|
|
4
4
|
Summary: Tencent Cloud Cam 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.41
|
|
19
19
|
|
|
20
20
|
============================
|
|
21
21
|
Tencent Cloud SDK for Python
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common<4.0.0,>=3.1.41
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common<4.0.0,>=3.1.20
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|