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

@@ -6837,13 +6837,14 @@ class QuerySubAgentsDetailV2Request(AbstractModel):
6837
6837
  :param _PageSize: Number of items per page. supports up to 100.
6838
6838
  :type PageSize: int
6839
6839
  :param _FilterType: Filter criteria, support the following filter parameters.
6840
- Note: Email, SubAgentUin, and ClientUin only support exact search. other conditions support fuzzy retrieval.
6841
- Name: filter criteria based on customer name.
6840
+ Note: Email, SubAgentUin, and ClientUin only support exact search. other conditions support fuzzy retrieval.The following are the definitions of filtering items:
6841
+
6842
+ Name: specifies second-level reseller name.
6842
6843
  SubAgentUin: specifies the uin of the second-level reseller.
6843
- Remark: remark.
6844
+ Remark: specifies remark.
6844
6845
  Mobile: specifies the mobile number.
6845
- Specifies the mailbox.
6846
- ClientUin: specifies the sub-customer uin.
6846
+ Email: specifies email address.
6847
+ ClientUin: specifies the Indirect customer uin.
6847
6848
  :type FilterType: str
6848
6849
  :param _Filter: Filter value
6849
6850
  :type Filter: str
@@ -6883,13 +6884,14 @@ acs: ascending.
6883
6884
  @property
6884
6885
  def FilterType(self):
6885
6886
  """Filter criteria, support the following filter parameters.
6886
- Note: Email, SubAgentUin, and ClientUin only support exact search. other conditions support fuzzy retrieval.
6887
- Name: filter criteria based on customer name.
6887
+ Note: Email, SubAgentUin, and ClientUin only support exact search. other conditions support fuzzy retrieval.The following are the definitions of filtering items:
6888
+
6889
+ Name: specifies second-level reseller name.
6888
6890
  SubAgentUin: specifies the uin of the second-level reseller.
6889
- Remark: remark.
6891
+ Remark: specifies remark.
6890
6892
  Mobile: specifies the mobile number.
6891
- Specifies the mailbox.
6892
- ClientUin: specifies the sub-customer uin.
6893
+ Email: specifies email address.
6894
+ ClientUin: specifies the Indirect customer uin.
6893
6895
  :rtype: str
6894
6896
  """
6895
6897
  return self._FilterType
File without changes
File without changes
@@ -0,0 +1,54 @@
1
+ # -*- coding: utf8 -*-
2
+ # Copyright (c) 2017-2021 THL A29 Limited, a Tencent company. All Rights Reserved.
3
+ #
4
+ # Licensed under the Apache License, Version 2.0 (the "License");
5
+ # you may not use this file except in compliance with the License.
6
+ # You may obtain a copy of the License at
7
+ #
8
+ # http://www.apache.org/licenses/LICENSE-2.0
9
+ #
10
+ # Unless required by applicable law or agreed to in writing, software
11
+ # distributed under the License is distributed on an "AS IS" BASIS,
12
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ # See the License for the specific language governing permissions and
14
+ # limitations under the License.
15
+
16
+
17
+ # Operation failed.
18
+ FAILEDOPERATION = 'FailedOperation'
19
+
20
+ # File download failure.
21
+ FAILEDOPERATION_DOWNLOADERROR = 'FailedOperation.DownLoadError'
22
+
23
+ # File decoding failure.
24
+ FAILEDOPERATION_FILEDECODEFAILED = 'FailedOperation.FileDecodeFailed'
25
+
26
+ # Image decoding failed.
27
+ FAILEDOPERATION_IMAGEDECODEFAILED = 'FailedOperation.ImageDecodeFailed'
28
+
29
+ # Unknown error.
30
+ FAILEDOPERATION_UNKNOWERROR = 'FailedOperation.UnKnowError'
31
+
32
+ # Unknown file type.
33
+ FAILEDOPERATION_UNKNOWFILETYPEERROR = 'FailedOperation.UnKnowFileTypeError'
34
+
35
+ # The service is not activated.
36
+ FAILEDOPERATION_UNOPENERROR = 'FailedOperation.UnOpenError'
37
+
38
+ #
39
+ INVALIDPARAMETER = 'InvalidParameter'
40
+
41
+ # Parameter value error.
42
+ INVALIDPARAMETERVALUE_INVALIDPARAMETERVALUELIMIT = 'InvalidParameterValue.InvalidParameterValueLimit'
43
+
44
+ # The file size is too large.
45
+ LIMITEXCEEDED_TOOLARGEFILEERROR = 'LimitExceeded.TooLargeFileError'
46
+
47
+ # The account is in arrears.
48
+ RESOURCEUNAVAILABLE_INARREARS = 'ResourceUnavailable.InArrears'
49
+
50
+ # The account resource package is exhausted.
51
+ RESOURCEUNAVAILABLE_RESOURCEPACKAGERUNOUT = 'ResourceUnavailable.ResourcePackageRunOut'
52
+
53
+ # The billing status is abnormal.
54
+ RESOURCESSOLDOUT_CHARGESTATUSEXCEPTION = 'ResourcesSoldOut.ChargeStatusException'