tencentcloud-sdk-python-intl-en 3.0.1190__py2.py3-none-any.whl → 3.0.1192__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 +1 -1
- tencentcloud/intlpartnersmgt/v20220928/intlpartnersmgt_client.py +2 -2
- tencentcloud/intlpartnersmgt/v20220928/models.py +2 -2
- tencentcloud/trabbit/__init__.py +0 -0
- tencentcloud/trabbit/v20230418/__init__.py +0 -0
- tencentcloud/trabbit/v20230418/errorcodes.py +75 -0
- tencentcloud/trabbit/v20230418/models.py +8101 -0
- tencentcloud/trabbit/v20230418/trabbit_client.py +693 -0
- {tencentcloud_sdk_python_intl_en-3.0.1190.dist-info → tencentcloud_sdk_python_intl_en-3.0.1192.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python_intl_en-3.0.1190.dist-info → tencentcloud_sdk_python_intl_en-3.0.1192.dist-info}/RECORD +12 -7
- {tencentcloud_sdk_python_intl_en-3.0.1190.dist-info → tencentcloud_sdk_python_intl_en-3.0.1192.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python_intl_en-3.0.1190.dist-info → tencentcloud_sdk_python_intl_en-3.0.1192.dist-info}/top_level.txt +0 -0
tencentcloud/__init__.py
CHANGED
|
@@ -817,8 +817,8 @@ class IntlpartnersmgtClient(AbstractClient):
|
|
|
817
817
|
|
|
818
818
|
|
|
819
819
|
def QueryT1IndirectCustomersDetail(self, request):
|
|
820
|
-
"""This API is used to query the indirect sub-customers of a
|
|
821
|
-
Invokable role type:
|
|
820
|
+
"""This API is used to query the indirect sub-customers of a distributor.
|
|
821
|
+
Invokable role type: Distributor
|
|
822
822
|
|
|
823
823
|
:param request: Request instance for QueryT1IndirectCustomersDetail.
|
|
824
824
|
:type request: :class:`tencentcloud.intlpartnersmgt.v20220928.models.QueryT1IndirectCustomersDetailRequest`
|
|
@@ -6870,7 +6870,7 @@ class QueryT1IndirectCustomersDetailResponse(AbstractModel):
|
|
|
6870
6870
|
|
|
6871
6871
|
def __init__(self):
|
|
6872
6872
|
r"""
|
|
6873
|
-
:param _Total: The number of indirect sub-customers of a
|
|
6873
|
+
:param _Total: The number of indirect sub-customers of a distributor.
|
|
6874
6874
|
:type Total: int
|
|
6875
6875
|
:param _SubAgentUin: Second-level reseller UIN.
|
|
6876
6876
|
:type SubAgentUin: int
|
|
@@ -6889,7 +6889,7 @@ class QueryT1IndirectCustomersDetailResponse(AbstractModel):
|
|
|
6889
6889
|
|
|
6890
6890
|
@property
|
|
6891
6891
|
def Total(self):
|
|
6892
|
-
"""The number of indirect sub-customers of a
|
|
6892
|
+
"""The number of indirect sub-customers of a distributor.
|
|
6893
6893
|
:rtype: int
|
|
6894
6894
|
"""
|
|
6895
6895
|
return self._Total
|
|
File without changes
|
|
File without changes
|
|
@@ -0,0 +1,75 @@
|
|
|
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
|
+
# CAM signature/authentication error.
|
|
18
|
+
AUTHFAILURE = 'AuthFailure'
|
|
19
|
+
|
|
20
|
+
# DryRun operation means the request will be successful, but the DryRun parameter is passed.
|
|
21
|
+
DRYRUNOPERATION = 'DryRunOperation'
|
|
22
|
+
|
|
23
|
+
# Operation failed.
|
|
24
|
+
FAILEDOPERATION = 'FailedOperation'
|
|
25
|
+
|
|
26
|
+
# Internal error.
|
|
27
|
+
INTERNALERROR = 'InternalError'
|
|
28
|
+
|
|
29
|
+
# Invalid Filter
|
|
30
|
+
INVALIDFILTER = 'InvalidFilter'
|
|
31
|
+
|
|
32
|
+
# Parameter error.
|
|
33
|
+
INVALIDPARAMETER = 'InvalidParameter'
|
|
34
|
+
|
|
35
|
+
# Parameter value error.
|
|
36
|
+
INVALIDPARAMETERVALUE = 'InvalidParameterValue'
|
|
37
|
+
|
|
38
|
+
# The quota limit is exceeded.
|
|
39
|
+
LIMITEXCEEDED = 'LimitExceeded'
|
|
40
|
+
|
|
41
|
+
# Parameters are missing
|
|
42
|
+
MISSINGPARAMETER = 'MissingParameter'
|
|
43
|
+
|
|
44
|
+
# Operation denied.
|
|
45
|
+
OPERATIONDENIED = 'OperationDenied'
|
|
46
|
+
|
|
47
|
+
# Region error.
|
|
48
|
+
REGIONERROR = 'RegionError'
|
|
49
|
+
|
|
50
|
+
# Request limit exceeded.
|
|
51
|
+
REQUESTLIMITEXCEEDED = 'RequestLimitExceeded'
|
|
52
|
+
|
|
53
|
+
# The resource is occupied.
|
|
54
|
+
RESOURCEINUSE = 'ResourceInUse'
|
|
55
|
+
|
|
56
|
+
# Insufficient resources.
|
|
57
|
+
RESOURCEINSUFFICIENT = 'ResourceInsufficient'
|
|
58
|
+
|
|
59
|
+
# The resource does not exist.
|
|
60
|
+
RESOURCENOTFOUND = 'ResourceNotFound'
|
|
61
|
+
|
|
62
|
+
# Resources are unavailable.
|
|
63
|
+
RESOURCEUNAVAILABLE = 'ResourceUnavailable'
|
|
64
|
+
|
|
65
|
+
# Resources are sold out.
|
|
66
|
+
RESOURCESSOLDOUT = 'ResourcesSoldOut'
|
|
67
|
+
|
|
68
|
+
# Unauthorized operation.
|
|
69
|
+
UNAUTHORIZEDOPERATION = 'UnauthorizedOperation'
|
|
70
|
+
|
|
71
|
+
# Unknown parameter error.
|
|
72
|
+
UNKNOWNPARAMETER = 'UnknownParameter'
|
|
73
|
+
|
|
74
|
+
# The operation is not supported.
|
|
75
|
+
UNSUPPORTEDOPERATION = 'UnsupportedOperation'
|