tencentcloud-sdk-python-intl-en 3.0.1111__py2.py3-none-any.whl → 3.0.1113__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.1111'
16
+ __version__ = '3.0.1113'
@@ -1257,6 +1257,8 @@ Currently, the supported languages are as follows. The English name of the langu
1257
1257
  :type NotifyDuration: int
1258
1258
  :param _NotifyMessage: The AI prompt when NotifyDuration has passed without the user speaking, default is "Sorry, I didn't hear you clearly. Can you repeat that?"
1259
1259
  :type NotifyMessage: str
1260
+ :param _NotifyMaxCount:
1261
+ :type NotifyMaxCount: int
1260
1262
  :param _CustomTTSConfig: <p>And VoiceType field needs to select one, here is to use your own custom TTS, VoiceType is some built-in sound qualities</p>
1261
1263
  <ul>
1262
1264
  <li>Tencent TTS<br>
@@ -1357,6 +1359,7 @@ Please refer to the specific protocol standards in the <a href="https://doc.weix
1357
1359
  self._EndFunctionDesc = None
1358
1360
  self._NotifyDuration = None
1359
1361
  self._NotifyMessage = None
1362
+ self._NotifyMaxCount = None
1360
1363
  self._CustomTTSConfig = None
1361
1364
 
1362
1365
  @property
@@ -1686,6 +1689,17 @@ Currently, the supported languages are as follows. The English name of the langu
1686
1689
  def NotifyMessage(self, NotifyMessage):
1687
1690
  self._NotifyMessage = NotifyMessage
1688
1691
 
1692
+ @property
1693
+ def NotifyMaxCount(self):
1694
+ """
1695
+ :rtype: int
1696
+ """
1697
+ return self._NotifyMaxCount
1698
+
1699
+ @NotifyMaxCount.setter
1700
+ def NotifyMaxCount(self, NotifyMaxCount):
1701
+ self._NotifyMaxCount = NotifyMaxCount
1702
+
1689
1703
  @property
1690
1704
  def CustomTTSConfig(self):
1691
1705
  """<p>And VoiceType field needs to select one, here is to use your own custom TTS, VoiceType is some built-in sound qualities</p>
@@ -1796,6 +1810,7 @@ Please refer to the specific protocol standards in the <a href="https://doc.weix
1796
1810
  self._EndFunctionDesc = params.get("EndFunctionDesc")
1797
1811
  self._NotifyDuration = params.get("NotifyDuration")
1798
1812
  self._NotifyMessage = params.get("NotifyMessage")
1813
+ self._NotifyMaxCount = params.get("NotifyMaxCount")
1799
1814
  self._CustomTTSConfig = params.get("CustomTTSConfig")
1800
1815
  memeber_set = set(params.keys())
1801
1816
  for name, value in vars(self).items():
@@ -50,6 +50,9 @@ FAILEDOPERATION_DELETELASTBINDVPCRECORDFAILED = 'FailedOperation.DeleteLastBindV
50
50
  #
51
51
  FAILEDOPERATION_DELETERECORDFAILED = 'FailedOperation.DeleteRecordFailed'
52
52
 
53
+ # Failed to delete the endpoint.
54
+ FAILEDOPERATION_DELETEVPCENDPOINTFAILED = 'FailedOperation.DeleteVpcEndPointFailed'
55
+
53
56
  # Failed to create an endpoint service.
54
57
  FAILEDOPERATION_ENDPOINTSERVICECREATEFAILED = 'FailedOperation.EndPointServiceCreateFailed'
55
58
 
@@ -83,12 +86,18 @@ INVALIDPARAMETER = 'InvalidParameter'
83
86
  # A bound account already exists.
84
87
  INVALIDPARAMETER_ACCOUNTEXIST = 'InvalidParameter.AccountExist'
85
88
 
89
+ # The endpoint has been bound to a forwarding rule.
90
+ INVALIDPARAMETER_ENDPOINTBINDFORWARDRULE = 'InvalidParameter.EndPointBindForwardRule'
91
+
86
92
  # The endpoint does not exist.
87
93
  INVALIDPARAMETER_ENDPOINTNOTEXISTS = 'InvalidParameter.EndPointNotExists'
88
94
 
89
95
  # The endpoint service does not exist.
90
96
  INVALIDPARAMETER_ENDPOINTSERVICENOTEXIST = 'InvalidParameter.EndPointServiceNotExist'
91
97
 
98
+ # The forwarding rule does not exist.
99
+ INVALIDPARAMETER_FORWARDRULENOTEXIST = 'InvalidParameter.ForwardRuleNotExist'
100
+
92
101
  # The private domain has already been bound with the forwarding rule.
93
102
  INVALIDPARAMETER_FORWARDRULEZONEREPEATBIND = 'InvalidParameter.ForwardRuleZoneRepeatBind'
94
103