tencentcloud-sdk-python-csip 3.1.17__tar.gz → 3.1.25__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.
Files changed (17) hide show
  1. {tencentcloud_sdk_python_csip-3.1.17 → tencentcloud_sdk_python_csip-3.1.25}/PKG-INFO +2 -2
  2. {tencentcloud_sdk_python_csip-3.1.17 → tencentcloud_sdk_python_csip-3.1.25}/setup.py +1 -1
  3. {tencentcloud_sdk_python_csip-3.1.17 → tencentcloud_sdk_python_csip-3.1.25}/tencentcloud/__init__.py +1 -1
  4. {tencentcloud_sdk_python_csip-3.1.17 → tencentcloud_sdk_python_csip-3.1.25}/tencentcloud/csip/v20221121/models.py +80 -0
  5. {tencentcloud_sdk_python_csip-3.1.17 → tencentcloud_sdk_python_csip-3.1.25}/tencentcloud_sdk_python_csip.egg-info/PKG-INFO +2 -2
  6. tencentcloud_sdk_python_csip-3.1.25/tencentcloud_sdk_python_csip.egg-info/requires.txt +1 -0
  7. tencentcloud_sdk_python_csip-3.1.17/tencentcloud_sdk_python_csip.egg-info/requires.txt +0 -1
  8. {tencentcloud_sdk_python_csip-3.1.17 → tencentcloud_sdk_python_csip-3.1.25}/README.rst +0 -0
  9. {tencentcloud_sdk_python_csip-3.1.17 → tencentcloud_sdk_python_csip-3.1.25}/setup.cfg +0 -0
  10. {tencentcloud_sdk_python_csip-3.1.17 → tencentcloud_sdk_python_csip-3.1.25}/tencentcloud/csip/__init__.py +0 -0
  11. {tencentcloud_sdk_python_csip-3.1.17 → tencentcloud_sdk_python_csip-3.1.25}/tencentcloud/csip/v20221121/__init__.py +0 -0
  12. {tencentcloud_sdk_python_csip-3.1.17 → tencentcloud_sdk_python_csip-3.1.25}/tencentcloud/csip/v20221121/csip_client.py +0 -0
  13. {tencentcloud_sdk_python_csip-3.1.17 → tencentcloud_sdk_python_csip-3.1.25}/tencentcloud/csip/v20221121/csip_client_async.py +0 -0
  14. {tencentcloud_sdk_python_csip-3.1.17 → tencentcloud_sdk_python_csip-3.1.25}/tencentcloud/csip/v20221121/errorcodes.py +0 -0
  15. {tencentcloud_sdk_python_csip-3.1.17 → tencentcloud_sdk_python_csip-3.1.25}/tencentcloud_sdk_python_csip.egg-info/SOURCES.txt +0 -0
  16. {tencentcloud_sdk_python_csip-3.1.17 → tencentcloud_sdk_python_csip-3.1.25}/tencentcloud_sdk_python_csip.egg-info/dependency_links.txt +0 -0
  17. {tencentcloud_sdk_python_csip-3.1.17 → tencentcloud_sdk_python_csip-3.1.25}/tencentcloud_sdk_python_csip.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: tencentcloud-sdk-python-csip
3
- Version: 3.1.17
3
+ Version: 3.1.25
4
4
  Summary: Tencent Cloud Csip 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.17
18
+ Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.25
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-csip',
11
- install_requires=["tencentcloud-sdk-python-common>=3.1.17,<4.0.0"],
11
+ install_requires=["tencentcloud-sdk-python-common>=3.1.25,<4.0.0"],
12
12
 
13
13
  version=tencentcloud.__version__,
14
14
  description='Tencent Cloud Csip SDK for Python',
@@ -14,4 +14,4 @@
14
14
  # limitations under the License.
15
15
 
16
16
 
17
- __version__ = '3.1.17'
17
+ __version__ = '3.1.25'
@@ -488,10 +488,19 @@ class AccessKeyAlarmCount(AbstractModel):
488
488
  :type AccessKey: str
489
489
  :param _AlarmCount: 告警数量
490
490
  :type AlarmCount: int
491
+ :param _AccessKeyStatus: 访问密钥状态 0 禁用 1 已启用 2 已删除
492
+ :type AccessKeyStatus: int
493
+ :param _AccessKeyCreateTime: AK创建时间
494
+ :type AccessKeyCreateTime: str
495
+ :param _LastAccessTime: AK最后使用时间,从未使用过则返回“-”
496
+ :type LastAccessTime: str
491
497
  """
492
498
  self._ID = None
493
499
  self._AccessKey = None
494
500
  self._AlarmCount = None
501
+ self._AccessKeyStatus = None
502
+ self._AccessKeyCreateTime = None
503
+ self._LastAccessTime = None
495
504
 
496
505
  @property
497
506
  def ID(self):
@@ -526,11 +535,47 @@ class AccessKeyAlarmCount(AbstractModel):
526
535
  def AlarmCount(self, AlarmCount):
527
536
  self._AlarmCount = AlarmCount
528
537
 
538
+ @property
539
+ def AccessKeyStatus(self):
540
+ r"""访问密钥状态 0 禁用 1 已启用 2 已删除
541
+ :rtype: int
542
+ """
543
+ return self._AccessKeyStatus
544
+
545
+ @AccessKeyStatus.setter
546
+ def AccessKeyStatus(self, AccessKeyStatus):
547
+ self._AccessKeyStatus = AccessKeyStatus
548
+
549
+ @property
550
+ def AccessKeyCreateTime(self):
551
+ r"""AK创建时间
552
+ :rtype: str
553
+ """
554
+ return self._AccessKeyCreateTime
555
+
556
+ @AccessKeyCreateTime.setter
557
+ def AccessKeyCreateTime(self, AccessKeyCreateTime):
558
+ self._AccessKeyCreateTime = AccessKeyCreateTime
559
+
560
+ @property
561
+ def LastAccessTime(self):
562
+ r"""AK最后使用时间,从未使用过则返回“-”
563
+ :rtype: str
564
+ """
565
+ return self._LastAccessTime
566
+
567
+ @LastAccessTime.setter
568
+ def LastAccessTime(self, LastAccessTime):
569
+ self._LastAccessTime = LastAccessTime
570
+
529
571
 
530
572
  def _deserialize(self, params):
531
573
  self._ID = params.get("ID")
532
574
  self._AccessKey = params.get("AccessKey")
533
575
  self._AlarmCount = params.get("AlarmCount")
576
+ self._AccessKeyStatus = params.get("AccessKeyStatus")
577
+ self._AccessKeyCreateTime = params.get("AccessKeyCreateTime")
578
+ self._LastAccessTime = params.get("LastAccessTime")
534
579
  memeber_set = set(params.keys())
535
580
  for name, value in vars(self).items():
536
581
  property_name = name[1:]
@@ -983,6 +1028,10 @@ class AccessKeyRisk(AbstractModel):
983
1028
  :type AppID: int
984
1029
  :param _QueryParam: 对应风险的查询参数
985
1030
  :type QueryParam: str
1031
+ :param _CloudType: 云类型 0-腾讯云 4-阿里云
1032
+ :type CloudType: int
1033
+ :param _RelatedAK: 相关的AK列表,包含AK名和AK备注
1034
+ :type RelatedAK: list of AKInfo
986
1035
  """
987
1036
  self._Name = None
988
1037
  self._Level = None
@@ -1005,6 +1054,8 @@ class AccessKeyRisk(AbstractModel):
1005
1054
  self._CheckStatus = None
1006
1055
  self._AppID = None
1007
1056
  self._QueryParam = None
1057
+ self._CloudType = None
1058
+ self._RelatedAK = None
1008
1059
 
1009
1060
  @property
1010
1061
  def Name(self):
@@ -1244,6 +1295,28 @@ class AccessKeyRisk(AbstractModel):
1244
1295
  def QueryParam(self, QueryParam):
1245
1296
  self._QueryParam = QueryParam
1246
1297
 
1298
+ @property
1299
+ def CloudType(self):
1300
+ r"""云类型 0-腾讯云 4-阿里云
1301
+ :rtype: int
1302
+ """
1303
+ return self._CloudType
1304
+
1305
+ @CloudType.setter
1306
+ def CloudType(self, CloudType):
1307
+ self._CloudType = CloudType
1308
+
1309
+ @property
1310
+ def RelatedAK(self):
1311
+ r"""相关的AK列表,包含AK名和AK备注
1312
+ :rtype: list of AKInfo
1313
+ """
1314
+ return self._RelatedAK
1315
+
1316
+ @RelatedAK.setter
1317
+ def RelatedAK(self, RelatedAK):
1318
+ self._RelatedAK = RelatedAK
1319
+
1247
1320
 
1248
1321
  def _deserialize(self, params):
1249
1322
  self._Name = params.get("Name")
@@ -1267,6 +1340,13 @@ class AccessKeyRisk(AbstractModel):
1267
1340
  self._CheckStatus = params.get("CheckStatus")
1268
1341
  self._AppID = params.get("AppID")
1269
1342
  self._QueryParam = params.get("QueryParam")
1343
+ self._CloudType = params.get("CloudType")
1344
+ if params.get("RelatedAK") is not None:
1345
+ self._RelatedAK = []
1346
+ for item in params.get("RelatedAK"):
1347
+ obj = AKInfo()
1348
+ obj._deserialize(item)
1349
+ self._RelatedAK.append(obj)
1270
1350
  memeber_set = set(params.keys())
1271
1351
  for name, value in vars(self).items():
1272
1352
  property_name = name[1:]
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: tencentcloud-sdk-python-csip
3
- Version: 3.1.17
3
+ Version: 3.1.25
4
4
  Summary: Tencent Cloud Csip 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.17
18
+ Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.25
19
19
 
20
20
  ============================
21
21
  Tencent Cloud SDK for Python
@@ -0,0 +1 @@
1
+ tencentcloud-sdk-python-common<4.0.0,>=3.1.25
@@ -1 +0,0 @@
1
- tencentcloud-sdk-python-common<4.0.0,>=3.1.17