tencentcloud-sdk-python-mps 3.0.1185__tar.gz → 3.0.1187__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.

Potentially problematic release.


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

Files changed (16) hide show
  1. {tencentcloud-sdk-python-mps-3.0.1185 → tencentcloud-sdk-python-mps-3.0.1187}/PKG-INFO +1 -1
  2. {tencentcloud-sdk-python-mps-3.0.1185 → tencentcloud-sdk-python-mps-3.0.1187}/setup.py +1 -1
  3. {tencentcloud-sdk-python-mps-3.0.1185 → tencentcloud-sdk-python-mps-3.0.1187}/tencentcloud/__init__.py +1 -1
  4. {tencentcloud-sdk-python-mps-3.0.1185 → tencentcloud-sdk-python-mps-3.0.1187}/tencentcloud/mps/v20190612/models.py +26 -0
  5. {tencentcloud-sdk-python-mps-3.0.1185 → tencentcloud-sdk-python-mps-3.0.1187}/tencentcloud_sdk_python_mps.egg-info/PKG-INFO +1 -1
  6. tencentcloud-sdk-python-mps-3.0.1187/tencentcloud_sdk_python_mps.egg-info/requires.txt +1 -0
  7. tencentcloud-sdk-python-mps-3.0.1185/tencentcloud_sdk_python_mps.egg-info/requires.txt +0 -1
  8. {tencentcloud-sdk-python-mps-3.0.1185 → tencentcloud-sdk-python-mps-3.0.1187}/README.rst +0 -0
  9. {tencentcloud-sdk-python-mps-3.0.1185 → tencentcloud-sdk-python-mps-3.0.1187}/setup.cfg +0 -0
  10. {tencentcloud-sdk-python-mps-3.0.1185 → tencentcloud-sdk-python-mps-3.0.1187}/tencentcloud/mps/__init__.py +0 -0
  11. {tencentcloud-sdk-python-mps-3.0.1185 → tencentcloud-sdk-python-mps-3.0.1187}/tencentcloud/mps/v20190612/__init__.py +0 -0
  12. {tencentcloud-sdk-python-mps-3.0.1185 → tencentcloud-sdk-python-mps-3.0.1187}/tencentcloud/mps/v20190612/errorcodes.py +0 -0
  13. {tencentcloud-sdk-python-mps-3.0.1185 → tencentcloud-sdk-python-mps-3.0.1187}/tencentcloud/mps/v20190612/mps_client.py +0 -0
  14. {tencentcloud-sdk-python-mps-3.0.1185 → tencentcloud-sdk-python-mps-3.0.1187}/tencentcloud_sdk_python_mps.egg-info/SOURCES.txt +0 -0
  15. {tencentcloud-sdk-python-mps-3.0.1185 → tencentcloud-sdk-python-mps-3.0.1187}/tencentcloud_sdk_python_mps.egg-info/dependency_links.txt +0 -0
  16. {tencentcloud-sdk-python-mps-3.0.1185 → tencentcloud-sdk-python-mps-3.0.1187}/tencentcloud_sdk_python_mps.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 1.1
2
2
  Name: tencentcloud-sdk-python-mps
3
- Version: 3.0.1185
3
+ Version: 3.0.1187
4
4
  Summary: Tencent Cloud Mps SDK for Python
5
5
  Home-page: https://github.com/TencentCloud/tencentcloud-sdk-python
6
6
  Author: Tencent Cloud
@@ -8,7 +8,7 @@ ROOT = os.path.dirname(__file__)
8
8
 
9
9
  setup(
10
10
  name='tencentcloud-sdk-python-mps',
11
- install_requires=["tencentcloud-sdk-python-common==3.0.1185"],
11
+ install_requires=["tencentcloud-sdk-python-common==3.0.1187"],
12
12
  version=tencentcloud.__version__,
13
13
  description='Tencent Cloud Mps SDK for Python',
14
14
  long_description=open('README.rst').read(),
@@ -14,4 +14,4 @@
14
14
  # limitations under the License.
15
15
 
16
16
 
17
- __version__ = '3.0.1185'
17
+ __version__ = '3.0.1187'
@@ -27657,12 +27657,16 @@ class LiveStreamObjectRecognitionResult(AbstractModel):
27657
27657
  :type Confidence: float
27658
27658
  :param _AreaCoordSet: 识别结果的区域坐标。数组包含 4 个元素 [x1,y1,x2,y2],依次表示区域左上点、右下点的横纵坐标。
27659
27659
  :type AreaCoordSet: list of int
27660
+ :param _Url: 截图链接。
27661
+ 注意:此字段可能返回 null,表示取不到有效值。
27662
+ :type Url: str
27660
27663
  """
27661
27664
  self._Name = None
27662
27665
  self._StartPtsOffset = None
27663
27666
  self._EndPtsOffset = None
27664
27667
  self._Confidence = None
27665
27668
  self._AreaCoordSet = None
27669
+ self._Url = None
27666
27670
 
27667
27671
  @property
27668
27672
  def Name(self):
@@ -27704,6 +27708,14 @@ class LiveStreamObjectRecognitionResult(AbstractModel):
27704
27708
  def AreaCoordSet(self, AreaCoordSet):
27705
27709
  self._AreaCoordSet = AreaCoordSet
27706
27710
 
27711
+ @property
27712
+ def Url(self):
27713
+ return self._Url
27714
+
27715
+ @Url.setter
27716
+ def Url(self, Url):
27717
+ self._Url = Url
27718
+
27707
27719
 
27708
27720
  def _deserialize(self, params):
27709
27721
  self._Name = params.get("Name")
@@ -27711,6 +27723,7 @@ class LiveStreamObjectRecognitionResult(AbstractModel):
27711
27723
  self._EndPtsOffset = params.get("EndPtsOffset")
27712
27724
  self._Confidence = params.get("Confidence")
27713
27725
  self._AreaCoordSet = params.get("AreaCoordSet")
27726
+ self._Url = params.get("Url")
27714
27727
  memeber_set = set(params.keys())
27715
27728
  for name, value in vars(self).items():
27716
27729
  property_name = name[1:]
@@ -28157,6 +28170,9 @@ class LiveStreamTaskNotifyConfig(AbstractModel):
28157
28170
  :type TopicName: str
28158
28171
  :param _NotifyUrl: HTTP回调地址,NotifyType为URL时必填。
28159
28172
  :type NotifyUrl: str
28173
+ :param _NotifyKey: 用于生成回调签名的 Key。
28174
+ 注意:此字段可能返回 null,表示取不到有效值。
28175
+ :type NotifyKey: str
28160
28176
  """
28161
28177
  self._NotifyType = None
28162
28178
  self._CmqModel = None
@@ -28164,6 +28180,7 @@ class LiveStreamTaskNotifyConfig(AbstractModel):
28164
28180
  self._QueueName = None
28165
28181
  self._TopicName = None
28166
28182
  self._NotifyUrl = None
28183
+ self._NotifyKey = None
28167
28184
 
28168
28185
  @property
28169
28186
  def NotifyType(self):
@@ -28213,6 +28230,14 @@ class LiveStreamTaskNotifyConfig(AbstractModel):
28213
28230
  def NotifyUrl(self, NotifyUrl):
28214
28231
  self._NotifyUrl = NotifyUrl
28215
28232
 
28233
+ @property
28234
+ def NotifyKey(self):
28235
+ return self._NotifyKey
28236
+
28237
+ @NotifyKey.setter
28238
+ def NotifyKey(self, NotifyKey):
28239
+ self._NotifyKey = NotifyKey
28240
+
28216
28241
 
28217
28242
  def _deserialize(self, params):
28218
28243
  self._NotifyType = params.get("NotifyType")
@@ -28221,6 +28246,7 @@ class LiveStreamTaskNotifyConfig(AbstractModel):
28221
28246
  self._QueueName = params.get("QueueName")
28222
28247
  self._TopicName = params.get("TopicName")
28223
28248
  self._NotifyUrl = params.get("NotifyUrl")
28249
+ self._NotifyKey = params.get("NotifyKey")
28224
28250
  memeber_set = set(params.keys())
28225
28251
  for name, value in vars(self).items():
28226
28252
  property_name = name[1:]
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 1.1
2
2
  Name: tencentcloud-sdk-python-mps
3
- Version: 3.0.1185
3
+ Version: 3.0.1187
4
4
  Summary: Tencent Cloud Mps SDK for Python
5
5
  Home-page: https://github.com/TencentCloud/tencentcloud-sdk-python
6
6
  Author: Tencent Cloud
@@ -0,0 +1 @@
1
+ tencentcloud-sdk-python-common==3.0.1187
@@ -1 +0,0 @@
1
- tencentcloud-sdk-python-common==3.0.1185