tencentcloud-sdk-python-intl-en 3.0.1289__py2.py3-none-any.whl → 3.0.1292__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.
Files changed (29) hide show
  1. tencentcloud/__init__.py +1 -1
  2. tencentcloud/ccc/v20200210/ccc_client.py +23 -0
  3. tencentcloud/ccc/v20200210/models.py +184 -0
  4. tencentcloud/clb/v20180317/clb_client.py +4 -4
  5. tencentcloud/clb/v20180317/errorcodes.py +9 -0
  6. tencentcloud/clb/v20180317/models.py +27 -2
  7. tencentcloud/cynosdb/v20190107/cynosdb_client.py +46 -0
  8. tencentcloud/cynosdb/v20190107/errorcodes.py +3 -0
  9. tencentcloud/cynosdb/v20190107/models.py +1286 -75
  10. tencentcloud/dlc/v20210125/dlc_client.py +69 -0
  11. tencentcloud/dlc/v20210125/models.py +504 -0
  12. tencentcloud/mdl/v20200326/models.py +191 -0
  13. tencentcloud/mongodb/v20190725/errorcodes.py +15 -0
  14. tencentcloud/mongodb/v20190725/models.py +1276 -463
  15. tencentcloud/mongodb/v20190725/mongodb_client.py +75 -6
  16. tencentcloud/monitor/v20180724/models.py +1351 -124
  17. tencentcloud/monitor/v20180724/monitor_client.py +118 -0
  18. tencentcloud/mps/v20190612/models.py +366 -62
  19. tencentcloud/quota/v20241204/models.py +17 -2
  20. tencentcloud/redis/v20180412/models.py +410 -168
  21. tencentcloud/redis/v20180412/redis_client.py +4 -4
  22. tencentcloud/wedata/v20250806/__init__.py +0 -0
  23. tencentcloud/wedata/v20250806/errorcodes.py +57 -0
  24. tencentcloud/wedata/v20250806/models.py +26375 -0
  25. tencentcloud/wedata/v20250806/wedata_client.py +1797 -0
  26. {tencentcloud_sdk_python_intl_en-3.0.1289.dist-info → tencentcloud_sdk_python_intl_en-3.0.1292.dist-info}/METADATA +1 -1
  27. {tencentcloud_sdk_python_intl_en-3.0.1289.dist-info → tencentcloud_sdk_python_intl_en-3.0.1292.dist-info}/RECORD +29 -25
  28. {tencentcloud_sdk_python_intl_en-3.0.1289.dist-info → tencentcloud_sdk_python_intl_en-3.0.1292.dist-info}/WHEEL +0 -0
  29. {tencentcloud_sdk_python_intl_en-3.0.1289.dist-info → tencentcloud_sdk_python_intl_en-3.0.1292.dist-info}/top_level.txt +0 -0
@@ -5944,6 +5944,8 @@ class EventSettingsReq(AbstractModel):
5944
5944
  :type StaticImageActivateSetting: :class:`tencentcloud.mdl.v20200326.models.StaticImageActivateSetting`
5945
5945
  :param _StaticImageDeactivateSetting: Static image deactivate setting.
5946
5946
  :type StaticImageDeactivateSetting: :class:`tencentcloud.mdl.v20200326.models.StaticImageDeactivateSetting`
5947
+ :param _MotionGraphicsActivateSetting: Dynamic graphic overlay activate configuration
5948
+ :type MotionGraphicsActivateSetting: :class:`tencentcloud.mdl.v20200326.models.MotionGraphicsActivateSetting`
5947
5949
  """
5948
5950
  self._EventType = None
5949
5951
  self._InputAttachment = None
@@ -5956,6 +5958,7 @@ class EventSettingsReq(AbstractModel):
5956
5958
  self._TimedMetadataSetting = None
5957
5959
  self._StaticImageActivateSetting = None
5958
5960
  self._StaticImageDeactivateSetting = None
5961
+ self._MotionGraphicsActivateSetting = None
5959
5962
 
5960
5963
  @property
5961
5964
  def EventType(self):
@@ -6078,6 +6081,17 @@ class EventSettingsReq(AbstractModel):
6078
6081
  def StaticImageDeactivateSetting(self, StaticImageDeactivateSetting):
6079
6082
  self._StaticImageDeactivateSetting = StaticImageDeactivateSetting
6080
6083
 
6084
+ @property
6085
+ def MotionGraphicsActivateSetting(self):
6086
+ r"""Dynamic graphic overlay activate configuration
6087
+ :rtype: :class:`tencentcloud.mdl.v20200326.models.MotionGraphicsActivateSetting`
6088
+ """
6089
+ return self._MotionGraphicsActivateSetting
6090
+
6091
+ @MotionGraphicsActivateSetting.setter
6092
+ def MotionGraphicsActivateSetting(self, MotionGraphicsActivateSetting):
6093
+ self._MotionGraphicsActivateSetting = MotionGraphicsActivateSetting
6094
+
6081
6095
 
6082
6096
  def _deserialize(self, params):
6083
6097
  self._EventType = params.get("EventType")
@@ -6107,6 +6121,9 @@ class EventSettingsReq(AbstractModel):
6107
6121
  if params.get("StaticImageDeactivateSetting") is not None:
6108
6122
  self._StaticImageDeactivateSetting = StaticImageDeactivateSetting()
6109
6123
  self._StaticImageDeactivateSetting._deserialize(params.get("StaticImageDeactivateSetting"))
6124
+ if params.get("MotionGraphicsActivateSetting") is not None:
6125
+ self._MotionGraphicsActivateSetting = MotionGraphicsActivateSetting()
6126
+ self._MotionGraphicsActivateSetting._deserialize(params.get("MotionGraphicsActivateSetting"))
6110
6127
  memeber_set = set(params.keys())
6111
6128
  for name, value in vars(self).items():
6112
6129
  property_name = name[1:]
@@ -6146,6 +6163,8 @@ class EventSettingsResp(AbstractModel):
6146
6163
  :type StaticImageActivateSetting: :class:`tencentcloud.mdl.v20200326.models.StaticImageActivateSetting`
6147
6164
  :param _StaticImageDeactivateSetting: Static image deactivate setting.
6148
6165
  :type StaticImageDeactivateSetting: :class:`tencentcloud.mdl.v20200326.models.StaticImageDeactivateSetting`
6166
+ :param _MotionGraphicsActivateSetting: Dynamic graphic overlay activate configuration.
6167
+ :type MotionGraphicsActivateSetting: :class:`tencentcloud.mdl.v20200326.models.MotionGraphicsActivateSetting`
6149
6168
  """
6150
6169
  self._EventType = None
6151
6170
  self._InputAttachment = None
@@ -6158,6 +6177,7 @@ class EventSettingsResp(AbstractModel):
6158
6177
  self._TimedMetadataSetting = None
6159
6178
  self._StaticImageActivateSetting = None
6160
6179
  self._StaticImageDeactivateSetting = None
6180
+ self._MotionGraphicsActivateSetting = None
6161
6181
 
6162
6182
  @property
6163
6183
  def EventType(self):
@@ -6280,6 +6300,17 @@ class EventSettingsResp(AbstractModel):
6280
6300
  def StaticImageDeactivateSetting(self, StaticImageDeactivateSetting):
6281
6301
  self._StaticImageDeactivateSetting = StaticImageDeactivateSetting
6282
6302
 
6303
+ @property
6304
+ def MotionGraphicsActivateSetting(self):
6305
+ r"""Dynamic graphic overlay activate configuration.
6306
+ :rtype: :class:`tencentcloud.mdl.v20200326.models.MotionGraphicsActivateSetting`
6307
+ """
6308
+ return self._MotionGraphicsActivateSetting
6309
+
6310
+ @MotionGraphicsActivateSetting.setter
6311
+ def MotionGraphicsActivateSetting(self, MotionGraphicsActivateSetting):
6312
+ self._MotionGraphicsActivateSetting = MotionGraphicsActivateSetting
6313
+
6283
6314
 
6284
6315
  def _deserialize(self, params):
6285
6316
  self._EventType = params.get("EventType")
@@ -6309,6 +6340,9 @@ class EventSettingsResp(AbstractModel):
6309
6340
  if params.get("StaticImageDeactivateSetting") is not None:
6310
6341
  self._StaticImageDeactivateSetting = StaticImageDeactivateSetting()
6311
6342
  self._StaticImageDeactivateSetting._deserialize(params.get("StaticImageDeactivateSetting"))
6343
+ if params.get("MotionGraphicsActivateSetting") is not None:
6344
+ self._MotionGraphicsActivateSetting = MotionGraphicsActivateSetting()
6345
+ self._MotionGraphicsActivateSetting._deserialize(params.get("MotionGraphicsActivateSetting"))
6312
6346
  memeber_set = set(params.keys())
6313
6347
  for name, value in vars(self).items():
6314
6348
  property_name = name[1:]
@@ -6522,8 +6556,14 @@ class GeneralSetting(AbstractModel):
6522
6556
  r"""
6523
6557
  :param _StaticImageSettings: Static graphic overlay configuration.
6524
6558
  :type StaticImageSettings: :class:`tencentcloud.mdl.v20200326.models.StaticImageSettings`
6559
+ :param _MotionGraphicsSettings: Dynamic graphic overlay configuration.
6560
+ :type MotionGraphicsSettings: :class:`tencentcloud.mdl.v20200326.models.MotionGraphicsSetting`
6561
+ :param _ThumbnailSettings: Thumbnail Configuration.
6562
+ :type ThumbnailSettings: :class:`tencentcloud.mdl.v20200326.models.ThumbnailSettings`
6525
6563
  """
6526
6564
  self._StaticImageSettings = None
6565
+ self._MotionGraphicsSettings = None
6566
+ self._ThumbnailSettings = None
6527
6567
 
6528
6568
  @property
6529
6569
  def StaticImageSettings(self):
@@ -6536,11 +6576,39 @@ class GeneralSetting(AbstractModel):
6536
6576
  def StaticImageSettings(self, StaticImageSettings):
6537
6577
  self._StaticImageSettings = StaticImageSettings
6538
6578
 
6579
+ @property
6580
+ def MotionGraphicsSettings(self):
6581
+ r"""Dynamic graphic overlay configuration.
6582
+ :rtype: :class:`tencentcloud.mdl.v20200326.models.MotionGraphicsSetting`
6583
+ """
6584
+ return self._MotionGraphicsSettings
6585
+
6586
+ @MotionGraphicsSettings.setter
6587
+ def MotionGraphicsSettings(self, MotionGraphicsSettings):
6588
+ self._MotionGraphicsSettings = MotionGraphicsSettings
6589
+
6590
+ @property
6591
+ def ThumbnailSettings(self):
6592
+ r"""Thumbnail Configuration.
6593
+ :rtype: :class:`tencentcloud.mdl.v20200326.models.ThumbnailSettings`
6594
+ """
6595
+ return self._ThumbnailSettings
6596
+
6597
+ @ThumbnailSettings.setter
6598
+ def ThumbnailSettings(self, ThumbnailSettings):
6599
+ self._ThumbnailSettings = ThumbnailSettings
6600
+
6539
6601
 
6540
6602
  def _deserialize(self, params):
6541
6603
  if params.get("StaticImageSettings") is not None:
6542
6604
  self._StaticImageSettings = StaticImageSettings()
6543
6605
  self._StaticImageSettings._deserialize(params.get("StaticImageSettings"))
6606
+ if params.get("MotionGraphicsSettings") is not None:
6607
+ self._MotionGraphicsSettings = MotionGraphicsSetting()
6608
+ self._MotionGraphicsSettings._deserialize(params.get("MotionGraphicsSettings"))
6609
+ if params.get("ThumbnailSettings") is not None:
6610
+ self._ThumbnailSettings = ThumbnailSettings()
6611
+ self._ThumbnailSettings._deserialize(params.get("ThumbnailSettings"))
6544
6612
  memeber_set = set(params.keys())
6545
6613
  for name, value in vars(self).items():
6546
6614
  property_name = name[1:]
@@ -8614,6 +8682,93 @@ class ModifyStreamLiveWatermarkResponse(AbstractModel):
8614
8682
  self._RequestId = params.get("RequestId")
8615
8683
 
8616
8684
 
8685
+ class MotionGraphicsActivateSetting(AbstractModel):
8686
+ r"""
8687
+
8688
+ """
8689
+
8690
+ def __init__(self):
8691
+ r"""
8692
+ :param _Duration: Duration in ms, valid when MOTION_Graphics_ACTIVATE, required; An integer in the range of 0-86400000, where 0 represents the duration until the end of the live stream.
8693
+ :type Duration: int
8694
+ :param _Url: The address of HTML5 needs to comply with the format specification of http/https.
8695
+ :type Url: str
8696
+ """
8697
+ self._Duration = None
8698
+ self._Url = None
8699
+
8700
+ @property
8701
+ def Duration(self):
8702
+ r"""Duration in ms, valid when MOTION_Graphics_ACTIVATE, required; An integer in the range of 0-86400000, where 0 represents the duration until the end of the live stream.
8703
+ :rtype: int
8704
+ """
8705
+ return self._Duration
8706
+
8707
+ @Duration.setter
8708
+ def Duration(self, Duration):
8709
+ self._Duration = Duration
8710
+
8711
+ @property
8712
+ def Url(self):
8713
+ r"""The address of HTML5 needs to comply with the format specification of http/https.
8714
+ :rtype: str
8715
+ """
8716
+ return self._Url
8717
+
8718
+ @Url.setter
8719
+ def Url(self, Url):
8720
+ self._Url = Url
8721
+
8722
+
8723
+ def _deserialize(self, params):
8724
+ self._Duration = params.get("Duration")
8725
+ self._Url = params.get("Url")
8726
+ memeber_set = set(params.keys())
8727
+ for name, value in vars(self).items():
8728
+ property_name = name[1:]
8729
+ if property_name in memeber_set:
8730
+ memeber_set.remove(property_name)
8731
+ if len(memeber_set) > 0:
8732
+ warnings.warn("%s fileds are useless." % ",".join(memeber_set))
8733
+
8734
+
8735
+
8736
+ class MotionGraphicsSetting(AbstractModel):
8737
+ r"""
8738
+
8739
+ """
8740
+
8741
+ def __init__(self):
8742
+ r"""
8743
+ :param _MotionGraphicsOverlayEnabled: Whether to enable dynamic graphic overlay, '0' not enabled, '1' enabled; Default 0.
8744
+ :type MotionGraphicsOverlayEnabled: int
8745
+ """
8746
+ self._MotionGraphicsOverlayEnabled = None
8747
+
8748
+ @property
8749
+ def MotionGraphicsOverlayEnabled(self):
8750
+ r"""Whether to enable dynamic graphic overlay, '0' not enabled, '1' enabled; Default 0.
8751
+ :rtype: int
8752
+ """
8753
+ return self._MotionGraphicsOverlayEnabled
8754
+
8755
+ @MotionGraphicsOverlayEnabled.setter
8756
+ def MotionGraphicsOverlayEnabled(self, MotionGraphicsOverlayEnabled):
8757
+ self._MotionGraphicsOverlayEnabled = MotionGraphicsOverlayEnabled
8758
+
8759
+
8760
+ def _deserialize(self, params):
8761
+ self._MotionGraphicsOverlayEnabled = params.get("MotionGraphicsOverlayEnabled")
8762
+ memeber_set = set(params.keys())
8763
+ for name, value in vars(self).items():
8764
+ property_name = name[1:]
8765
+ if property_name in memeber_set:
8766
+ memeber_set.remove(property_name)
8767
+ if len(memeber_set) > 0:
8768
+ warnings.warn("%s fileds are useless." % ",".join(memeber_set))
8769
+
8770
+
8771
+
8617
8772
  class OutputInfo(AbstractModel):
8618
8773
  r"""Output information.
8619
8774
 
@@ -11856,6 +12011,42 @@ class Tag(AbstractModel):
11856
12011
 
11857
12012
 
11858
12013
 
12014
+ class ThumbnailSettings(AbstractModel):
12015
+ r"""
12016
+
12017
+ """
12018
+
12019
+ def __init__(self):
12020
+ r"""
12021
+ :param _ThumbnailEnabled: Generate thumbnail ,0: Disabled ,1: Enabled , Default: 0
12022
+ :type ThumbnailEnabled: int
12023
+ """
12024
+ self._ThumbnailEnabled = None
12025
+
12026
+ @property
12027
+ def ThumbnailEnabled(self):
12028
+ r"""Generate thumbnail ,0: Disabled ,1: Enabled , Default: 0
12029
+ :rtype: int
12030
+ """
12031
+ return self._ThumbnailEnabled
12032
+
12033
+ @ThumbnailEnabled.setter
12034
+ def ThumbnailEnabled(self, ThumbnailEnabled):
12035
+ self._ThumbnailEnabled = ThumbnailEnabled
12036
+
12037
+
12038
+ def _deserialize(self, params):
12039
+ self._ThumbnailEnabled = params.get("ThumbnailEnabled")
12040
+ memeber_set = set(params.keys())
12041
+ for name, value in vars(self).items():
12042
+ property_name = name[1:]
12043
+ if property_name in memeber_set:
12044
+ memeber_set.remove(property_name)
12045
+ if len(memeber_set) > 0:
12046
+ warnings.warn("%s fileds are useless." % ",".join(memeber_set))
12047
+
12048
+
12049
+
11859
12050
  class TimeShiftSettingsInfo(AbstractModel):
11860
12051
  r"""Time-shift configuration. This parameter is valid only for HLS_ARCHIVE and DASH_ARCHIVE output groups.
11861
12052
 
@@ -17,9 +17,15 @@
17
17
  # CAM signature/authentication error
18
18
  AUTHFAILURE = 'AuthFailure'
19
19
 
20
+ # Termination protection is enabled for the instance. destruction is not allowed.
21
+ FAILEDOPERATION_DELETIONPROTECTIONENABLED = 'FailedOperation.DeletionProtectionEnabled'
22
+
20
23
  # Public network access has been enabled for the current instance.
21
24
  FAILEDOPERATION_NOTALLOWMODIFYADDRAFTEROPENWANSERVICE = 'FailedOperation.NotAllowModifyAddrAfterOpenWanService'
22
25
 
26
+ # Physical backup is not supported when transparent data encryption is enabled for the instance.
27
+ FAILEDOPERATION_TRANSPARENTDATAENCRYPTIONALREADYOPEN = 'FailedOperation.TransparentDataEncryptionAlreadyOpen'
28
+
23
29
  # Internal error
24
30
  INTERNALERROR = 'InternalError'
25
31
 
@@ -74,6 +80,9 @@ INVALIDPARAMETERVALUE_INSTANCEHASBEENISOLATED = 'InvalidParameterValue.InstanceH
74
80
  # Billing error. Corresponding purchase/renewal/configuration change operations are not allowed for the current instance.
75
81
  INVALIDPARAMETERVALUE_INVALIDTRADEOPERATION = 'InvalidParameterValue.InvalidTradeOperation'
76
82
 
83
+ # limit value ranges from 1 to 100.
84
+ INVALIDPARAMETERVALUE_LIMITPARAOUTOFRANGE = 'InvalidParameterValue.LimitParaOutOfRange'
85
+
77
86
  # Instance lock failed.
78
87
  INVALIDPARAMETERVALUE_LOCKFAILED = 'InvalidParameterValue.LockFailed'
79
88
 
@@ -92,6 +101,9 @@ INVALIDPARAMETERVALUE_MONGOVERSIONNOTSUPPORTQUERYCLIENT = 'InvalidParameterValue
92
101
  # The instance was not found.
93
102
  INVALIDPARAMETERVALUE_NOTFOUNDINSTANCE = 'InvalidParameterValue.NotFoundInstance'
94
103
 
104
+ # offset value ranges from 0 to 10000.
105
+ INVALIDPARAMETERVALUE_OFFSETPARAOUTOFRANGE = 'InvalidParameterValue.OffsetParaOutOfRange'
106
+
95
107
  # The `OplogSize` parameter is set incorrectly and should be between 10% and 90% of the disk capacity.
96
108
  INVALIDPARAMETERVALUE_OPLOGSIZEOUTOFRANGE = 'InvalidParameterValue.OplogSizeOutOfRange'
97
109
 
@@ -149,6 +161,9 @@ INVALIDPARAMETERVALUE_STATUSABNORMAL = 'InvalidParameterValue.StatusAbnormal'
149
161
  # The specified tag was not found.
150
162
  INVALIDPARAMETERVALUE_TAGNOTFOUND = 'InvalidParameterValue.TagNotFound'
151
163
 
164
+ # Illegal time format.
165
+ INVALIDPARAMETERVALUE_TIMEFORMATERR = 'InvalidParameterValue.TimeFormatErr'
166
+
152
167
  # The user account does not exist.
153
168
  INVALIDPARAMETERVALUE_USERNOTFOUND = 'InvalidParameterValue.UserNotFound'
154
169