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

@@ -803,7 +803,7 @@ class CreateDBDiagReportTaskResponse(AbstractModel):
803
803
  :param _AsyncRequestId: Async task request ID, which can be used to query the execution result of an async task.
804
804
  Note: This field may return null, indicating that no valid values can be obtained.
805
805
  :type AsyncRequestId: int
806
- :param _RequestId: The unique request ID, which is returned for each request. RequestId is required for locating a problem.
806
+ :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.
807
807
  :type RequestId: str
808
808
  """
809
809
  self._AsyncRequestId = None
@@ -823,7 +823,7 @@ Note: This field may return null, indicating that no valid values can be obtaine
823
823
 
824
824
  @property
825
825
  def RequestId(self):
826
- """The unique request ID, which is returned for each request. RequestId is required for locating a problem.
826
+ """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.
827
827
  :rtype: str
828
828
  """
829
829
  return self._RequestId
@@ -1805,14 +1805,14 @@ class DeleteIntlTemplateResponse(AbstractModel):
1805
1805
 
1806
1806
  def __init__(self):
1807
1807
  r"""
1808
- :param _RequestId: The unique request ID, which is returned for each request. RequestId is required for locating a problem.
1808
+ :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.
1809
1809
  :type RequestId: str
1810
1810
  """
1811
1811
  self._RequestId = None
1812
1812
 
1813
1813
  @property
1814
1814
  def RequestId(self):
1815
- """The unique request ID, which is returned for each request. RequestId is required for locating a problem.
1815
+ """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.
1816
1816
  :rtype: str
1817
1817
  """
1818
1818
  return self._RequestId
@@ -5278,7 +5278,7 @@ class DescribeAccessRegionsByDestRegionResponse(AbstractModel):
5278
5278
  :type TotalCount: int
5279
5279
  :param _AccessRegionSet: List of available acceleration region information
5280
5280
  :type AccessRegionSet: list of AccessRegionDetial
5281
- :param _RequestId: The unique request ID, which is returned for each request. RequestId is required for locating a problem.
5281
+ :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.
5282
5282
  :type RequestId: str
5283
5283
  """
5284
5284
  self._TotalCount = None
@@ -5309,7 +5309,7 @@ class DescribeAccessRegionsByDestRegionResponse(AbstractModel):
5309
5309
 
5310
5310
  @property
5311
5311
  def RequestId(self):
5312
- """The unique request ID, which is returned for each request. RequestId is required for locating a problem.
5312
+ """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.
5313
5313
  :rtype: str
5314
5314
  """
5315
5315
  return self._RequestId
@@ -1791,6 +1791,87 @@ class CreateStreamPackageSourceResponse(AbstractModel):
1791
1791
  self._RequestId = params.get("RequestId")
1792
1792
 
1793
1793
 
1794
+ class DashManifestInfo(AbstractModel):
1795
+ """The manifest info used when Type is DASH.
1796
+
1797
+ """
1798
+
1799
+ def __init__(self):
1800
+ r"""
1801
+ :param _Windows: The total duration of each manifest in seconds. [30, 3600], type: integer, default value 60.
1802
+ :type Windows: int
1803
+ :param _MinBufferTime: The minimum cache time (in seconds) that the player keeps in the buffer. [2, 60], type: integer, default value 30.
1804
+ :type MinBufferTime: int
1805
+ :param _MinUpdatePeriod: The minimum time (in seconds) that the player should wait before requesting an update to the manifest. [2, 60], type: integer, default value 2.
1806
+ :type MinUpdatePeriod: int
1807
+ :param _SuggestedPresentationDelay: The time from the latest live broadcast time point when the player starts broadcasting is a rollback amount (in seconds). [2, 60], type: integer, default value 10.
1808
+ :type SuggestedPresentationDelay: int
1809
+ """
1810
+ self._Windows = None
1811
+ self._MinBufferTime = None
1812
+ self._MinUpdatePeriod = None
1813
+ self._SuggestedPresentationDelay = None
1814
+
1815
+ @property
1816
+ def Windows(self):
1817
+ """The total duration of each manifest in seconds. [30, 3600], type: integer, default value 60.
1818
+ :rtype: int
1819
+ """
1820
+ return self._Windows
1821
+
1822
+ @Windows.setter
1823
+ def Windows(self, Windows):
1824
+ self._Windows = Windows
1825
+
1826
+ @property
1827
+ def MinBufferTime(self):
1828
+ """The minimum cache time (in seconds) that the player keeps in the buffer. [2, 60], type: integer, default value 30.
1829
+ :rtype: int
1830
+ """
1831
+ return self._MinBufferTime
1832
+
1833
+ @MinBufferTime.setter
1834
+ def MinBufferTime(self, MinBufferTime):
1835
+ self._MinBufferTime = MinBufferTime
1836
+
1837
+ @property
1838
+ def MinUpdatePeriod(self):
1839
+ """The minimum time (in seconds) that the player should wait before requesting an update to the manifest. [2, 60], type: integer, default value 2.
1840
+ :rtype: int
1841
+ """
1842
+ return self._MinUpdatePeriod
1843
+
1844
+ @MinUpdatePeriod.setter
1845
+ def MinUpdatePeriod(self, MinUpdatePeriod):
1846
+ self._MinUpdatePeriod = MinUpdatePeriod
1847
+
1848
+ @property
1849
+ def SuggestedPresentationDelay(self):
1850
+ """The time from the latest live broadcast time point when the player starts broadcasting is a rollback amount (in seconds). [2, 60], type: integer, default value 10.
1851
+ :rtype: int
1852
+ """
1853
+ return self._SuggestedPresentationDelay
1854
+
1855
+ @SuggestedPresentationDelay.setter
1856
+ def SuggestedPresentationDelay(self, SuggestedPresentationDelay):
1857
+ self._SuggestedPresentationDelay = SuggestedPresentationDelay
1858
+
1859
+
1860
+ def _deserialize(self, params):
1861
+ self._Windows = params.get("Windows")
1862
+ self._MinBufferTime = params.get("MinBufferTime")
1863
+ self._MinUpdatePeriod = params.get("MinUpdatePeriod")
1864
+ self._SuggestedPresentationDelay = params.get("SuggestedPresentationDelay")
1865
+ memeber_set = set(params.keys())
1866
+ for name, value in vars(self).items():
1867
+ property_name = name[1:]
1868
+ if property_name in memeber_set:
1869
+ memeber_set.remove(property_name)
1870
+ if len(memeber_set) > 0:
1871
+ warnings.warn("%s fileds are useless." % ",".join(memeber_set))
1872
+
1873
+
1874
+
1794
1875
  class DeleteStreamPackageChannelEndpointsRequest(AbstractModel):
1795
1876
  """DeleteStreamPackageChannelEndpoints request structure.
1796
1877
 
@@ -6809,16 +6890,19 @@ class OutputInfo(AbstractModel):
6809
6890
  :type GroupName: str
6810
6891
  :param _ManifestName: The file name output by the channel program after scheduling.
6811
6892
  :type ManifestName: str
6812
- :param _ManifestConf: Advertisement configuration.
6893
+ :param _ManifestConf: The manifest info, used when Type is HLS.
6813
6894
  :type ManifestConf: :class:`tencentcloud.mdp.v20200527.models.ManifestInfo`
6814
6895
  :param _PlaybackURL: Playback address.
6815
6896
  :type PlaybackURL: str
6897
+ :param _DashManifestConf: The manifest info, used when Type is DASH.
6898
+ :type DashManifestConf: :class:`tencentcloud.mdp.v20200527.models.DashManifestInfo`
6816
6899
  """
6817
6900
  self._Type = None
6818
6901
  self._GroupName = None
6819
6902
  self._ManifestName = None
6820
6903
  self._ManifestConf = None
6821
6904
  self._PlaybackURL = None
6905
+ self._DashManifestConf = None
6822
6906
 
6823
6907
  @property
6824
6908
  def Type(self):
@@ -6855,7 +6939,7 @@ class OutputInfo(AbstractModel):
6855
6939
 
6856
6940
  @property
6857
6941
  def ManifestConf(self):
6858
- """Advertisement configuration.
6942
+ """The manifest info, used when Type is HLS.
6859
6943
  :rtype: :class:`tencentcloud.mdp.v20200527.models.ManifestInfo`
6860
6944
  """
6861
6945
  return self._ManifestConf
@@ -6875,6 +6959,17 @@ class OutputInfo(AbstractModel):
6875
6959
  def PlaybackURL(self, PlaybackURL):
6876
6960
  self._PlaybackURL = PlaybackURL
6877
6961
 
6962
+ @property
6963
+ def DashManifestConf(self):
6964
+ """The manifest info, used when Type is DASH.
6965
+ :rtype: :class:`tencentcloud.mdp.v20200527.models.DashManifestInfo`
6966
+ """
6967
+ return self._DashManifestConf
6968
+
6969
+ @DashManifestConf.setter
6970
+ def DashManifestConf(self, DashManifestConf):
6971
+ self._DashManifestConf = DashManifestConf
6972
+
6878
6973
 
6879
6974
  def _deserialize(self, params):
6880
6975
  self._Type = params.get("Type")
@@ -6884,6 +6979,9 @@ class OutputInfo(AbstractModel):
6884
6979
  self._ManifestConf = ManifestInfo()
6885
6980
  self._ManifestConf._deserialize(params.get("ManifestConf"))
6886
6981
  self._PlaybackURL = params.get("PlaybackURL")
6982
+ if params.get("DashManifestConf") is not None:
6983
+ self._DashManifestConf = DashManifestInfo()
6984
+ self._DashManifestConf._deserialize(params.get("DashManifestConf"))
6887
6985
  memeber_set = set(params.keys())
6888
6986
  for name, value in vars(self).items():
6889
6987
  property_name = name[1:]
@@ -6907,13 +7005,16 @@ class OutputReq(AbstractModel):
6907
7005
  :type GroupName: str
6908
7006
  :param _ManifestName: The file name output by the channel program after scheduling.
6909
7007
  :type ManifestName: str
6910
- :param _ManifestConf: Advertisement configuration.
7008
+ :param _ManifestConf: The manifest info, used when Type is HLS.
6911
7009
  :type ManifestConf: :class:`tencentcloud.mdp.v20200527.models.ManifestInfo`
7010
+ :param _DashManifestConf: The manifest info, used when Type is DASH.
7011
+ :type DashManifestConf: :class:`tencentcloud.mdp.v20200527.models.DashManifestInfo`
6912
7012
  """
6913
7013
  self._Type = None
6914
7014
  self._GroupName = None
6915
7015
  self._ManifestName = None
6916
7016
  self._ManifestConf = None
7017
+ self._DashManifestConf = None
6917
7018
 
6918
7019
  @property
6919
7020
  def Type(self):
@@ -6950,7 +7051,7 @@ class OutputReq(AbstractModel):
6950
7051
 
6951
7052
  @property
6952
7053
  def ManifestConf(self):
6953
- """Advertisement configuration.
7054
+ """The manifest info, used when Type is HLS.
6954
7055
  :rtype: :class:`tencentcloud.mdp.v20200527.models.ManifestInfo`
6955
7056
  """
6956
7057
  return self._ManifestConf
@@ -6959,6 +7060,17 @@ class OutputReq(AbstractModel):
6959
7060
  def ManifestConf(self, ManifestConf):
6960
7061
  self._ManifestConf = ManifestConf
6961
7062
 
7063
+ @property
7064
+ def DashManifestConf(self):
7065
+ """The manifest info, used when Type is DASH.
7066
+ :rtype: :class:`tencentcloud.mdp.v20200527.models.DashManifestInfo`
7067
+ """
7068
+ return self._DashManifestConf
7069
+
7070
+ @DashManifestConf.setter
7071
+ def DashManifestConf(self, DashManifestConf):
7072
+ self._DashManifestConf = DashManifestConf
7073
+
6962
7074
 
6963
7075
  def _deserialize(self, params):
6964
7076
  self._Type = params.get("Type")
@@ -6967,6 +7079,9 @@ class OutputReq(AbstractModel):
6967
7079
  if params.get("ManifestConf") is not None:
6968
7080
  self._ManifestConf = ManifestInfo()
6969
7081
  self._ManifestConf._deserialize(params.get("ManifestConf"))
7082
+ if params.get("DashManifestConf") is not None:
7083
+ self._DashManifestConf = DashManifestInfo()
7084
+ self._DashManifestConf._deserialize(params.get("DashManifestConf"))
6970
7085
  memeber_set = set(params.keys())
6971
7086
  for name, value in vars(self).items():
6972
7087
  property_name = name[1:]
@@ -641,7 +641,7 @@ class CreateBackupDBInstanceResponse(AbstractModel):
641
641
  r"""
642
642
  :param _AsyncRequestId: The status of the queried backup process.
643
643
  :type AsyncRequestId: str
644
- :param _RequestId: The unique request ID, which is returned for each request. RequestId is required for locating a problem.
644
+ :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.
645
645
  :type RequestId: str
646
646
  """
647
647
  self._AsyncRequestId = None
@@ -660,7 +660,7 @@ class CreateBackupDBInstanceResponse(AbstractModel):
660
660
 
661
661
  @property
662
662
  def RequestId(self):
663
- """The unique request ID, which is returned for each request. RequestId is required for locating a problem.
663
+ """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.
664
664
  :rtype: str
665
665
  """
666
666
  return self._RequestId
@@ -26,6 +26,9 @@ FAILEDOPERATION = 'FailedOperation'
26
26
  # You do not have permission to perform this operation.
27
27
  FAILEDOPERATION_AUTHERROR = 'FailedOperation.AuthError'
28
28
 
29
+ #
30
+ FAILEDOPERATION_BOUNDRESOURCES = 'FailedOperation.BoundResources'
31
+
29
32
  # A CAM authentication error occurred.
30
33
  FAILEDOPERATION_CAMAUTHORIZEDFAIL = 'FailedOperation.CAMAuthorizedFail'
31
34
 
@@ -41,6 +44,9 @@ FAILEDOPERATION_CANNOTBEDELETEDWITHINHOUR = 'FailedOperation.CannotBeDeletedWith
41
44
  # Failed to get order information. Try again later.
42
45
  FAILEDOPERATION_CANNOTGETORDER = 'FailedOperation.CannotGetOrder'
43
46
 
47
+ #
48
+ FAILEDOPERATION_CERTIFICATECAERROR = 'FailedOperation.CertificateCaError'
49
+
44
50
  # This operation can be performed only when the record status is Complete.
45
51
  FAILEDOPERATION_CERTIFICATEDEPLOYDETAILROLLBACKSTATUSINVALID = 'FailedOperation.CertificateDeployDetailRollbackStatusInvalid'
46
52
 
@@ -80,6 +86,9 @@ FAILEDOPERATION_CERTIFICATEHOSTRESOURCETYPEINVALID = 'FailedOperation.Certificat
80
86
  # The certificate is invalid.
81
87
  FAILEDOPERATION_CERTIFICATEINVALID = 'FailedOperation.CertificateInvalid'
82
88
 
89
+ #
90
+ FAILEDOPERATION_CERTIFICATEMATCHERROR = 'FailedOperation.CertificateMatchError'
91
+
83
92
  # The certificate and the private key do not match.
84
93
  FAILEDOPERATION_CERTIFICATEMISMATCH = 'FailedOperation.CertificateMismatch'
85
94
 
@@ -95,15 +104,24 @@ FAILEDOPERATION_CERTIFICATENOTFOUND = 'FailedOperation.CertificateNotFound'
95
104
  # The certificate does not exist, or the review cannot be canceled.
96
105
  FAILEDOPERATION_CERTIFICATENOTFOUNDORCANTCANCEL = 'FailedOperation.CertificateNotFoundOrCantCancel'
97
106
 
107
+ #
108
+ FAILEDOPERATION_CERTIFICATEPARSEERROR = 'FailedOperation.CertificateParseError'
109
+
98
110
  # You cannot re-submit a review application for a certificate in this status.
99
111
  FAILEDOPERATION_CERTIFICATESTATUSNOTALLOWRESUBMIT = 'FailedOperation.CertificateStatusNotAllowResubmit'
100
112
 
113
+ #
114
+ FAILEDOPERATION_CERTIFICATESYNCTASKIDINVALID = 'FailedOperation.CertificateSyncTaskIdInvalid'
115
+
101
116
  # The confirmation letter file cannot exceed 1.4 MB.
102
117
  FAILEDOPERATION_CONFIRMLETTERTOOLARGE = 'FailedOperation.ConfirmLetterTooLarge'
103
118
 
104
119
  # The confirmation letter file cannot be smaller than 1 KB.
105
120
  FAILEDOPERATION_CONFIRMLETTERTOOSMALL = 'FailedOperation.ConfirmLetterTooSmall'
106
121
 
122
+ #
123
+ FAILEDOPERATION_DELETEFAILEDTIMENOTUP = 'FailedOperation.DeleteFailedTimeNotUp'
124
+
107
125
  # The certificate is associated with a Tencent Cloud resource and cannot be deleted.
108
126
  FAILEDOPERATION_DELETERESOURCEFAILED = 'FailedOperation.DeleteResourceFailed'
109
127
 
@@ -152,6 +170,9 @@ FAILEDOPERATION_PACKAGEEXPIRED = 'FailedOperation.PackageExpired'
152
170
  # The benefit package does not exist.
153
171
  FAILEDOPERATION_PACKAGENOTFOUND = 'FailedOperation.PackageNotFound'
154
172
 
173
+ #
174
+ FAILEDOPERATION_RENEWNOTISSUED = 'FailedOperation.RenewNotIssued'
175
+
155
176
  # The role does not exist. Please authorize the role first.
156
177
  FAILEDOPERATION_ROLENOTFOUNDAUTHORIZATION = 'FailedOperation.RoleNotFoundAuthorization'
157
178