tencentcloud-sdk-python-intl-en 3.0.1086__py2.py3-none-any.whl → 3.0.1087__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.

Potentially problematic release.


This version of tencentcloud-sdk-python-intl-en might be problematic. Click here for more details.

Files changed (35) hide show
  1. tencentcloud/__init__.py +1 -1
  2. tencentcloud/car/v20220110/models.py +2 -2
  3. tencentcloud/cbs/v20170312/models.py +2 -2
  4. tencentcloud/cdc/__init__.py +0 -0
  5. tencentcloud/cdc/v20201214/__init__.py +0 -0
  6. tencentcloud/cdc/v20201214/cdc_client.py +486 -0
  7. tencentcloud/cdc/v20201214/errorcodes.py +78 -0
  8. tencentcloud/cdc/v20201214/models.py +6084 -0
  9. tencentcloud/ckafka/v20190819/models.py +2 -2
  10. tencentcloud/cloudaudit/v20190319/errorcodes.py +3 -0
  11. tencentcloud/cloudaudit/v20190319/models.py +2 -2
  12. tencentcloud/cls/v20201016/models.py +177 -0
  13. tencentcloud/cmq/v20190304/models.py +74 -74
  14. tencentcloud/cvm/v20170312/errorcodes.py +6 -0
  15. tencentcloud/eb/v20210416/models.py +47 -2
  16. tencentcloud/ecm/v20190719/models.py +2 -2
  17. tencentcloud/gme/v20180711/errorcodes.py +1 -1
  18. tencentcloud/gme/v20180711/models.py +2 -2
  19. tencentcloud/organization/v20210331/errorcodes.py +96 -0
  20. tencentcloud/organization/v20210331/models.py +2110 -269
  21. tencentcloud/organization/v20210331/organization_client.py +417 -3
  22. tencentcloud/sms/v20210111/errorcodes.py +4 -1
  23. tencentcloud/tat/v20201028/errorcodes.py +12 -0
  24. tencentcloud/tat/v20201028/models.py +38 -38
  25. tencentcloud/tdmq/v20200217/models.py +2 -2
  26. tencentcloud/tem/v20210701/models.py +2 -2
  27. tencentcloud/vod/v20180717/models.py +128 -11
  28. tencentcloud/waf/v20180125/errorcodes.py +3 -0
  29. tencentcloud/waf/v20180125/models.py +1680 -720
  30. tencentcloud/waf/v20180125/waf_client.py +83 -45
  31. tencentcloud/wedata/v20210820/models.py +6 -6
  32. {tencentcloud_sdk_python_intl_en-3.0.1086.dist-info → tencentcloud_sdk_python_intl_en-3.0.1087.dist-info}/METADATA +1 -1
  33. {tencentcloud_sdk_python_intl_en-3.0.1086.dist-info → tencentcloud_sdk_python_intl_en-3.0.1087.dist-info}/RECORD +35 -30
  34. {tencentcloud_sdk_python_intl_en-3.0.1086.dist-info → tencentcloud_sdk_python_intl_en-3.0.1087.dist-info}/WHEEL +0 -0
  35. {tencentcloud_sdk_python_intl_en-3.0.1086.dist-info → tencentcloud_sdk_python_intl_en-3.0.1087.dist-info}/top_level.txt +0 -0
@@ -8044,7 +8044,7 @@ class DescribeTopicProduceConnectionResponse(AbstractModel):
8044
8044
  r"""
8045
8045
  :param _Result: Result set of returned connection information
8046
8046
  :type Result: list of DescribeConnectInfoResultDTO
8047
- :param _RequestId: The unique request ID, which is returned for each request. RequestId is required for locating a problem.
8047
+ :param _RequestId: The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
8048
8048
  :type RequestId: str
8049
8049
  """
8050
8050
  self._Result = None
@@ -8063,7 +8063,7 @@ class DescribeTopicProduceConnectionResponse(AbstractModel):
8063
8063
 
8064
8064
  @property
8065
8065
  def RequestId(self):
8066
- """The unique request ID, which is returned for each request. RequestId is required for locating a problem.
8066
+ """The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
8067
8067
  :rtype: str
8068
8068
  """
8069
8069
  return self._RequestId
@@ -158,5 +158,8 @@ RESOURCENOTFOUND = 'ResourceNotFound'
158
158
  # The tracking set does not exist.
159
159
  RESOURCENOTFOUND_AUDITNOTEXIST = 'ResourceNotFound.AuditNotExist'
160
160
 
161
+ #
162
+ RESOURCENOTFOUND_COSNOTEXIST = 'ResourceNotFound.CosNotExist'
163
+
161
164
  # The role doesn’t exist.
162
165
  RESOURCENOTFOUND_ROLENOTEXIST = 'ResourceNotFound.RoleNotExist'
@@ -693,7 +693,7 @@ class CreateAuditTrackResponse(AbstractModel):
693
693
  r"""
694
694
  :param _TrackId: Tracking set ID
695
695
  :type TrackId: int
696
- :param _RequestId: The unique request ID, which is returned for each request. RequestId is required for locating a problem.
696
+ :param _RequestId: The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
697
697
  :type RequestId: str
698
698
  """
699
699
  self._TrackId = None
@@ -712,7 +712,7 @@ class CreateAuditTrackResponse(AbstractModel):
712
712
 
713
713
  @property
714
714
  def RequestId(self):
715
- """The unique request ID, which is returned for each request. RequestId is required for locating a problem.
715
+ """The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
716
716
  :rtype: str
717
717
  """
718
718
  return self._RequestId
@@ -1674,6 +1674,62 @@ Note: This field may return null, indicating that no valid values can be obtaine
1674
1674
 
1675
1675
 
1676
1676
 
1677
+ class AnonymousInfo(AbstractModel):
1678
+ """
1679
+
1680
+ """
1681
+
1682
+ def __init__(self):
1683
+ r"""
1684
+ :param _Operations:
1685
+ :type Operations: list of str
1686
+ :param _Conditions:
1687
+ :type Conditions: list of ConditionInfo
1688
+ """
1689
+ self._Operations = None
1690
+ self._Conditions = None
1691
+
1692
+ @property
1693
+ def Operations(self):
1694
+ """
1695
+ :rtype: list of str
1696
+ """
1697
+ return self._Operations
1698
+
1699
+ @Operations.setter
1700
+ def Operations(self, Operations):
1701
+ self._Operations = Operations
1702
+
1703
+ @property
1704
+ def Conditions(self):
1705
+ """
1706
+ :rtype: list of ConditionInfo
1707
+ """
1708
+ return self._Conditions
1709
+
1710
+ @Conditions.setter
1711
+ def Conditions(self, Conditions):
1712
+ self._Conditions = Conditions
1713
+
1714
+
1715
+ def _deserialize(self, params):
1716
+ self._Operations = params.get("Operations")
1717
+ if params.get("Conditions") is not None:
1718
+ self._Conditions = []
1719
+ for item in params.get("Conditions"):
1720
+ obj = ConditionInfo()
1721
+ obj._deserialize(item)
1722
+ self._Conditions.append(obj)
1723
+ memeber_set = set(params.keys())
1724
+ for name, value in vars(self).items():
1725
+ property_name = name[1:]
1726
+ if property_name in memeber_set:
1727
+ memeber_set.remove(property_name)
1728
+ if len(memeber_set) > 0:
1729
+ warnings.warn("%s fileds are useless." % ",".join(memeber_set))
1730
+
1731
+
1732
+
1677
1733
  class ApplyConfigToMachineGroupRequest(AbstractModel):
1678
1734
  """ApplyConfigToMachineGroup request structure.
1679
1735
 
@@ -2340,6 +2396,72 @@ class CompressInfo(AbstractModel):
2340
2396
 
2341
2397
 
2342
2398
 
2399
+ class ConditionInfo(AbstractModel):
2400
+ """
2401
+
2402
+ """
2403
+
2404
+ def __init__(self):
2405
+ r"""
2406
+ :param _Attributes:
2407
+ :type Attributes: str
2408
+ :param _Rule:
2409
+ :type Rule: int
2410
+ :param _ConditionValue:
2411
+ :type ConditionValue: str
2412
+ """
2413
+ self._Attributes = None
2414
+ self._Rule = None
2415
+ self._ConditionValue = None
2416
+
2417
+ @property
2418
+ def Attributes(self):
2419
+ """
2420
+ :rtype: str
2421
+ """
2422
+ return self._Attributes
2423
+
2424
+ @Attributes.setter
2425
+ def Attributes(self, Attributes):
2426
+ self._Attributes = Attributes
2427
+
2428
+ @property
2429
+ def Rule(self):
2430
+ """
2431
+ :rtype: int
2432
+ """
2433
+ return self._Rule
2434
+
2435
+ @Rule.setter
2436
+ def Rule(self, Rule):
2437
+ self._Rule = Rule
2438
+
2439
+ @property
2440
+ def ConditionValue(self):
2441
+ """
2442
+ :rtype: str
2443
+ """
2444
+ return self._ConditionValue
2445
+
2446
+ @ConditionValue.setter
2447
+ def ConditionValue(self, ConditionValue):
2448
+ self._ConditionValue = ConditionValue
2449
+
2450
+
2451
+ def _deserialize(self, params):
2452
+ self._Attributes = params.get("Attributes")
2453
+ self._Rule = params.get("Rule")
2454
+ self._ConditionValue = params.get("ConditionValue")
2455
+ memeber_set = set(params.keys())
2456
+ for name, value in vars(self).items():
2457
+ property_name = name[1:]
2458
+ if property_name in memeber_set:
2459
+ memeber_set.remove(property_name)
2460
+ if len(memeber_set) > 0:
2461
+ warnings.warn("%s fileds are useless." % ",".join(memeber_set))
2462
+
2463
+
2464
+
2343
2465
  class ConfigInfo(AbstractModel):
2344
2466
  """Collection rule configuration information
2345
2467
 
@@ -21313,6 +21435,44 @@ Note: This field may return null, indicating that no valid values can be obtaine
21313
21435
 
21314
21436
 
21315
21437
 
21438
+ class TopicExtendInfo(AbstractModel):
21439
+ """
21440
+
21441
+ """
21442
+
21443
+ def __init__(self):
21444
+ r"""
21445
+ :param _AnonymousAccess:
21446
+ :type AnonymousAccess: :class:`tencentcloud.cls.v20201016.models.AnonymousInfo`
21447
+ """
21448
+ self._AnonymousAccess = None
21449
+
21450
+ @property
21451
+ def AnonymousAccess(self):
21452
+ """
21453
+ :rtype: :class:`tencentcloud.cls.v20201016.models.AnonymousInfo`
21454
+ """
21455
+ return self._AnonymousAccess
21456
+
21457
+ @AnonymousAccess.setter
21458
+ def AnonymousAccess(self, AnonymousAccess):
21459
+ self._AnonymousAccess = AnonymousAccess
21460
+
21461
+
21462
+ def _deserialize(self, params):
21463
+ if params.get("AnonymousAccess") is not None:
21464
+ self._AnonymousAccess = AnonymousInfo()
21465
+ self._AnonymousAccess._deserialize(params.get("AnonymousAccess"))
21466
+ memeber_set = set(params.keys())
21467
+ for name, value in vars(self).items():
21468
+ property_name = name[1:]
21469
+ if property_name in memeber_set:
21470
+ memeber_set.remove(property_name)
21471
+ if len(memeber_set) > 0:
21472
+ warnings.warn("%s fileds are useless." % ",".join(memeber_set))
21473
+
21474
+
21475
+
21316
21476
  class TopicInfo(AbstractModel):
21317
21477
  """Basic Topic Information
21318
21478
 
@@ -21365,6 +21525,8 @@ Note: This field may return null, indicating that no valid values can be obtaine
21365
21525
  :type BizType: int
21366
21526
  :param _IsWebTracking: Free authentication switch. false: disabled; true: enabled.After enabling, anonymous access to the log topic will be supported for specified operations. For details, please refer to Log Topic (https://intl.cloud.tencent.com/document/product/614/41035?from_cn_redirect=1).Note: This field may return null, indicating that no valid values can be obtained.
21367
21527
  :type IsWebTracking: bool
21528
+ :param _Extends:
21529
+ :type Extends: :class:`tencentcloud.cls.v20201016.models.TopicExtendInfo`
21368
21530
  """
21369
21531
  self._LogsetId = None
21370
21532
  self._TopicId = None
@@ -21384,6 +21546,7 @@ Note: This field may return null, indicating that no valid values can be obtaine
21384
21546
  self._HotPeriod = None
21385
21547
  self._BizType = None
21386
21548
  self._IsWebTracking = None
21549
+ self._Extends = None
21387
21550
 
21388
21551
  @property
21389
21552
  def LogsetId(self):
@@ -21592,6 +21755,17 @@ Note: This field may return null, indicating that no valid values can be obtaine
21592
21755
  def IsWebTracking(self, IsWebTracking):
21593
21756
  self._IsWebTracking = IsWebTracking
21594
21757
 
21758
+ @property
21759
+ def Extends(self):
21760
+ """
21761
+ :rtype: :class:`tencentcloud.cls.v20201016.models.TopicExtendInfo`
21762
+ """
21763
+ return self._Extends
21764
+
21765
+ @Extends.setter
21766
+ def Extends(self, Extends):
21767
+ self._Extends = Extends
21768
+
21595
21769
 
21596
21770
  def _deserialize(self, params):
21597
21771
  self._LogsetId = params.get("LogsetId")
@@ -21617,6 +21791,9 @@ Note: This field may return null, indicating that no valid values can be obtaine
21617
21791
  self._HotPeriod = params.get("HotPeriod")
21618
21792
  self._BizType = params.get("BizType")
21619
21793
  self._IsWebTracking = params.get("IsWebTracking")
21794
+ if params.get("Extends") is not None:
21795
+ self._Extends = TopicExtendInfo()
21796
+ self._Extends._deserialize(params.get("Extends"))
21620
21797
  memeber_set = set(params.keys())
21621
21798
  for name, value in vars(self).items():
21622
21799
  property_name = name[1:]