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

tencentcloud/__init__.py CHANGED
@@ -13,4 +13,4 @@
13
13
  # See the License for the specific language governing permissions and
14
14
  # limitations under the License.
15
15
 
16
- __version__ = '3.0.1093'
16
+ __version__ = '3.0.1094'
@@ -5939,11 +5939,25 @@ class DescribeClusterPodAssetsRequest(AbstractModel):
5939
5939
 
5940
5940
  def __init__(self):
5941
5941
  r"""
5942
+ :param _MemberId: Member id
5943
+ :type MemberId: list of str
5942
5944
  :param _Filter: Filter conditions
5943
5945
  :type Filter: :class:`tencentcloud.csip.v20221121.models.Filter`
5944
5946
  """
5947
+ self._MemberId = None
5945
5948
  self._Filter = None
5946
5949
 
5950
+ @property
5951
+ def MemberId(self):
5952
+ """Member id
5953
+ :rtype: list of str
5954
+ """
5955
+ return self._MemberId
5956
+
5957
+ @MemberId.setter
5958
+ def MemberId(self, MemberId):
5959
+ self._MemberId = MemberId
5960
+
5947
5961
  @property
5948
5962
  def Filter(self):
5949
5963
  """Filter conditions
@@ -5957,6 +5971,7 @@ class DescribeClusterPodAssetsRequest(AbstractModel):
5957
5971
 
5958
5972
 
5959
5973
  def _deserialize(self, params):
5974
+ self._MemberId = params.get("MemberId")
5960
5975
  if params.get("Filter") is not None:
5961
5976
  self._Filter = Filter()
5962
5977
  self._Filter._deserialize(params.get("Filter"))
@@ -1863,8 +1863,8 @@ The size of videos data encoded by Base64 shall not exceed 8M, only mp4,avi,flv
1863
1863
  Please use standard Base64 encoding (use = for padding). Refer to RFC4648 for encoding specifications.
1864
1864
  Example values: "/9j/4AAQSk... (total length:61944)KiiK//2Q=="
1865
1865
  :type VideoBase64: str
1866
- :param _LivenessType: The liveness detection type. Valid values: `LIP`, `ACTION`, and `SILENT`.
1867
- `LIP`: Numeric mode; `ACTION`: Motion mode; `SILENT`: silent mode. Select one of them.
1866
+ :param _LivenessType: The liveness detection type. Valid values: `ACTION`, and `SILENT`.
1867
+ `ACTION`: Motion mode; `SILENT`: silent mode. Select one of them.
1868
1868
  Example value: "SILENT"
1869
1869
  :type LivenessType: str
1870
1870
  :param _ValidateData: When the "LivenessType" parameter is "ACTION", it must be specified.
@@ -1915,8 +1915,8 @@ Example values: "/9j/4AAQSk... (total length:61944)KiiK//2Q=="
1915
1915
 
1916
1916
  @property
1917
1917
  def LivenessType(self):
1918
- """The liveness detection type. Valid values: `LIP`, `ACTION`, and `SILENT`.
1919
- `LIP`: Numeric mode; `ACTION`: Motion mode; `SILENT`: silent mode. Select one of them.
1918
+ """The liveness detection type. Valid values: `ACTION`, and `SILENT`.
1919
+ `ACTION`: Motion mode; `SILENT`: silent mode. Select one of them.
1920
1920
  Example value: "SILENT"
1921
1921
  :rtype: str
1922
1922
  """
@@ -100,6 +100,8 @@ Valid values: `6000`, `7000`, `8000`, `10000`, `12000`, `14000`, `16000`, `20000
100
100
  :type GopSize: int
101
101
  :param _GopSizeUnits: Keyframe units, only support MILLISECONDS (milliseconds).
102
102
  :type GopSizeUnits: str
103
+ :param _ColorSpaceSettings: Color space setting.
104
+ :type ColorSpaceSettings: :class:`tencentcloud.mdl.v20200326.models.ColorSpaceSetting`
103
105
  """
104
106
  self._Name = None
105
107
  self._NeedVideo = None
@@ -135,6 +137,7 @@ Valid values: `6000`, `7000`, `8000`, `10000`, `12000`, `14000`, `16000`, `20000
135
137
  self._VideoEnhanceSettings = None
136
138
  self._GopSize = None
137
139
  self._GopSizeUnits = None
140
+ self._ColorSpaceSettings = None
138
141
 
139
142
  @property
140
143
  def Name(self):
@@ -517,6 +520,17 @@ Valid values: `6000`, `7000`, `8000`, `10000`, `12000`, `14000`, `16000`, `20000
517
520
  def GopSizeUnits(self, GopSizeUnits):
518
521
  self._GopSizeUnits = GopSizeUnits
519
522
 
523
+ @property
524
+ def ColorSpaceSettings(self):
525
+ """Color space setting.
526
+ :rtype: :class:`tencentcloud.mdl.v20200326.models.ColorSpaceSetting`
527
+ """
528
+ return self._ColorSpaceSettings
529
+
530
+ @ColorSpaceSettings.setter
531
+ def ColorSpaceSettings(self, ColorSpaceSettings):
532
+ self._ColorSpaceSettings = ColorSpaceSettings
533
+
520
534
 
521
535
  def _deserialize(self, params):
522
536
  self._Name = params.get("Name")
@@ -571,6 +585,9 @@ Valid values: `6000`, `7000`, `8000`, `10000`, `12000`, `14000`, `16000`, `20000
571
585
  self._VideoEnhanceSettings.append(obj)
572
586
  self._GopSize = params.get("GopSize")
573
587
  self._GopSizeUnits = params.get("GopSizeUnits")
588
+ if params.get("ColorSpaceSettings") is not None:
589
+ self._ColorSpaceSettings = ColorSpaceSetting()
590
+ self._ColorSpaceSettings._deserialize(params.get("ColorSpaceSettings"))
574
591
  memeber_set = set(params.keys())
575
592
  for name, value in vars(self).items():
576
593
  property_name = name[1:]
@@ -1769,6 +1786,42 @@ This time is available only after the alarm ends.
1769
1786
 
1770
1787
 
1771
1788
 
1789
+ class ColorSpaceSetting(AbstractModel):
1790
+ """Color space setting.
1791
+
1792
+ """
1793
+
1794
+ def __init__(self):
1795
+ r"""
1796
+ :param _ColorSpace: Color space, supports `PASSTHROUGH` (transparent transmission, only supports H265); optional.
1797
+ :type ColorSpace: str
1798
+ """
1799
+ self._ColorSpace = None
1800
+
1801
+ @property
1802
+ def ColorSpace(self):
1803
+ """Color space, supports `PASSTHROUGH` (transparent transmission, only supports H265); optional.
1804
+ :rtype: str
1805
+ """
1806
+ return self._ColorSpace
1807
+
1808
+ @ColorSpace.setter
1809
+ def ColorSpace(self, ColorSpace):
1810
+ self._ColorSpace = ColorSpace
1811
+
1812
+
1813
+ def _deserialize(self, params):
1814
+ self._ColorSpace = params.get("ColorSpace")
1815
+ memeber_set = set(params.keys())
1816
+ for name, value in vars(self).items():
1817
+ property_name = name[1:]
1818
+ if property_name in memeber_set:
1819
+ memeber_set.remove(property_name)
1820
+ if len(memeber_set) > 0:
1821
+ warnings.warn("%s fileds are useless." % ",".join(memeber_set))
1822
+
1823
+
1824
+
1772
1825
  class CosSettings(AbstractModel):
1773
1826
  """Cos destination setting.
1774
1827
 
@@ -12141,6 +12194,8 @@ Note: This field may return `null`, indicating that no valid value was found.
12141
12194
  :type VideoEnhanceEnabled: int
12142
12195
  :param _VideoEnhanceSettings:
12143
12196
  :type VideoEnhanceSettings: list of VideoEnhanceSetting
12197
+ :param _ColorSpaceSettings: Color space setting.
12198
+ :type ColorSpaceSettings: :class:`tencentcloud.mdl.v20200326.models.ColorSpaceSetting`
12144
12199
  """
12145
12200
  self._Name = None
12146
12201
  self._Vcodec = None
@@ -12162,6 +12217,7 @@ Note: This field may return `null`, indicating that no valid value was found.
12162
12217
  self._VideoCodecDetails = None
12163
12218
  self._VideoEnhanceEnabled = None
12164
12219
  self._VideoEnhanceSettings = None
12220
+ self._ColorSpaceSettings = None
12165
12221
 
12166
12222
  @property
12167
12223
  def Name(self):
@@ -12384,6 +12440,17 @@ Note: This field may return `null`, indicating that no valid value was found.
12384
12440
  def VideoEnhanceSettings(self, VideoEnhanceSettings):
12385
12441
  self._VideoEnhanceSettings = VideoEnhanceSettings
12386
12442
 
12443
+ @property
12444
+ def ColorSpaceSettings(self):
12445
+ """Color space setting.
12446
+ :rtype: :class:`tencentcloud.mdl.v20200326.models.ColorSpaceSetting`
12447
+ """
12448
+ return self._ColorSpaceSettings
12449
+
12450
+ @ColorSpaceSettings.setter
12451
+ def ColorSpaceSettings(self, ColorSpaceSettings):
12452
+ self._ColorSpaceSettings = ColorSpaceSettings
12453
+
12387
12454
 
12388
12455
  def _deserialize(self, params):
12389
12456
  self._Name = params.get("Name")
@@ -12415,6 +12482,9 @@ Note: This field may return `null`, indicating that no valid value was found.
12415
12482
  obj = VideoEnhanceSetting()
12416
12483
  obj._deserialize(item)
12417
12484
  self._VideoEnhanceSettings.append(obj)
12485
+ if params.get("ColorSpaceSettings") is not None:
12486
+ self._ColorSpaceSettings = ColorSpaceSetting()
12487
+ self._ColorSpaceSettings._deserialize(params.get("ColorSpaceSettings"))
12418
12488
  memeber_set = set(params.keys())
12419
12489
  for name, value in vars(self).items():
12420
12490
  property_name = name[1:]
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: tencentcloud-sdk-python-intl-en
3
- Version: 3.0.1093
3
+ Version: 3.0.1094
4
4
  Summary: Tencent Cloud SDK for Python
5
5
  Home-page: https://github.com/TencentCloud/tencentcloud-sdk-python-intl-en
6
6
  Author: Tencent Cloud
@@ -1,4 +1,4 @@
1
- tencentcloud/__init__.py,sha256=bA8eA0Ak9bbqGbUh2vNOmdo7deCl7mmjM3WNoh9Kado,630
1
+ tencentcloud/__init__.py,sha256=gB1CsThRm-owiqxJDUJQZBbTaAbYQaUEXJhZiD9gr2U,630
2
2
  tencentcloud/advisor/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
3
3
  tencentcloud/advisor/v20200721/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
4
4
  tencentcloud/advisor/v20200721/advisor_client.py,sha256=b5pLP_oF5HZHo4xbn-hI4dkpnirhcHB2rNDWvGf4q1Y,2919
@@ -166,7 +166,7 @@ tencentcloud/csip/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU
166
166
  tencentcloud/csip/v20221121/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
167
167
  tencentcloud/csip/v20221121/csip_client.py,sha256=el6FIuaXer9Hogvr2_5QIhpwru-rroceUS0AxeSczTY,30550
168
168
  tencentcloud/csip/v20221121/errorcodes.py,sha256=BtrJ2Ezz21uWHzoEJED1bUeiBgp3zuf7rUC3ZcMRJ8k,2201
169
- tencentcloud/csip/v20221121/models.py,sha256=UqC0WhqlRsG9pTS48dGoESsZXEitnqf-9jXakOC_tMM,480436
169
+ tencentcloud/csip/v20221121/models.py,sha256=hAdedmdDrD4HWsZQb7SdqtymGVFHoXVZYqkjYeZV5Ms,480806
170
170
  tencentcloud/cvm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
171
171
  tencentcloud/cvm/v20170312/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
172
172
  tencentcloud/cvm/v20170312/cvm_client.py,sha256=I6g0W63L_O3AkgADmtruN_O0uyuP-BRV3_oMF-lxTxI,91118
@@ -279,7 +279,7 @@ tencentcloud/faceid/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSu
279
279
  tencentcloud/faceid/v20180301/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
280
280
  tencentcloud/faceid/v20180301/errorcodes.py,sha256=QIZO_mdFiPmYrWS3wGMlLnNKTnV_6vVmB61ec6QSymE,9715
281
281
  tencentcloud/faceid/v20180301/faceid_client.py,sha256=V9BAvjeA-gL2hWU1kVeWrspP6d9xptFDaXJawHAzHvc,23905
282
- tencentcloud/faceid/v20180301/models.py,sha256=eqdOCp3tfyDmeWZI5JLmMQzUTlDdCUrQOj-UnIYL5OI,357883
282
+ tencentcloud/faceid/v20180301/models.py,sha256=QPle59N5vh99uI-o-Qxe7Ta5-wxxXNywSFSdcSZM7e8,357827
283
283
  tencentcloud/gaap/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
284
284
  tencentcloud/gaap/v20180529/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
285
285
  tencentcloud/gaap/v20180529/errorcodes.py,sha256=hco_fu2P-boFi-3-kcpWCYfaay9RrwmhwHLqzvry2xM,11142
@@ -364,7 +364,7 @@ tencentcloud/mdl/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,
364
364
  tencentcloud/mdl/v20200326/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
365
365
  tencentcloud/mdl/v20200326/errorcodes.py,sha256=UrwmJD3pUUir_wADh17-T-gweDNkYkXPTVuEs4LsMGM,3178
366
366
  tencentcloud/mdl/v20200326/mdl_client.py,sha256=3hHmKmAZAWVEgjl5lwG__gMfzUa_ySv85y3YdjjbsRw,32854
367
- tencentcloud/mdl/v20200326/models.py,sha256=TAiwUa6nC2O0qDsBXXe3NhWu_NfOFGHCxkTWp242WWA,417342
367
+ tencentcloud/mdl/v20200326/models.py,sha256=DEvLIC6MDrgWGXYDzl9S_pxbTObpc5s0Jj2jQm0uXxc,419877
368
368
  tencentcloud/mdp/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
369
369
  tencentcloud/mdp/v20200527/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
370
370
  tencentcloud/mdp/v20200527/errorcodes.py,sha256=fFjSnqw_4i_JzKA_LfGPpGST5lIeuQ_DJyQmd2EyLao,2078
@@ -604,7 +604,7 @@ tencentcloud/yunjing/v20180228/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5
604
604
  tencentcloud/yunjing/v20180228/errorcodes.py,sha256=VEqwMbMBe7F2oAW6ZDu3vAivBr60lbo7FWduFqRTEVg,3195
605
605
  tencentcloud/yunjing/v20180228/models.py,sha256=0rnsJ4JkA5aCTV1cVwCuKnzooe6IhQ0NS3ij6tJ22uw,330670
606
606
  tencentcloud/yunjing/v20180228/yunjing_client.py,sha256=GA7Fo5GmpEJ2kufV2upw-ZpMZxznsPZ3NKDKDDAI4Ao,67384
607
- tencentcloud_sdk_python_intl_en-3.0.1093.dist-info/METADATA,sha256=z34xz63ZSqHB48yr6XFVxuABMR03WKsJ_OFL70JPYZE,1628
608
- tencentcloud_sdk_python_intl_en-3.0.1093.dist-info/WHEEL,sha256=z9j0xAa_JmUKMpmz72K0ZGALSM_n-wQVmGbleXx2VHg,110
609
- tencentcloud_sdk_python_intl_en-3.0.1093.dist-info/top_level.txt,sha256=g-8OyzoqI6O6LiS85zkeNzhB-osEnRIPZMdyRd_0eL0,13
610
- tencentcloud_sdk_python_intl_en-3.0.1093.dist-info/RECORD,,
607
+ tencentcloud_sdk_python_intl_en-3.0.1094.dist-info/METADATA,sha256=I23NIiW4D-DRcOReBYSPNciI8-igPGf78dIJ0v8hfaM,1628
608
+ tencentcloud_sdk_python_intl_en-3.0.1094.dist-info/WHEEL,sha256=z9j0xAa_JmUKMpmz72K0ZGALSM_n-wQVmGbleXx2VHg,110
609
+ tencentcloud_sdk_python_intl_en-3.0.1094.dist-info/top_level.txt,sha256=g-8OyzoqI6O6LiS85zkeNzhB-osEnRIPZMdyRd_0eL0,13
610
+ tencentcloud_sdk_python_intl_en-3.0.1094.dist-info/RECORD,,