tencentcloud-sdk-python-intl-en 3.0.1152__py2.py3-none-any.whl → 3.0.1153__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/apigateway/v20180808/apigateway_client.py +23 -0
- tencentcloud/apigateway/v20180808/models.py +83 -0
- {tencentcloud_sdk_python_intl_en-3.0.1152.dist-info → tencentcloud_sdk_python_intl_en-3.0.1153.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python_intl_en-3.0.1152.dist-info → tencentcloud_sdk_python_intl_en-3.0.1153.dist-info}/RECORD +7 -7
- {tencentcloud_sdk_python_intl_en-3.0.1152.dist-info → tencentcloud_sdk_python_intl_en-3.0.1153.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python_intl_en-3.0.1152.dist-info → tencentcloud_sdk_python_intl_en-3.0.1153.dist-info}/top_level.txt +0 -0
tencentcloud/__init__.py
CHANGED
|
@@ -1072,6 +1072,29 @@ class ApigatewayClient(AbstractClient):
|
|
|
1072
1072
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
1073
1073
|
|
|
1074
1074
|
|
|
1075
|
+
def DescribeInstancesNetworkConfig(self, request):
|
|
1076
|
+
"""This API is used to obtain the network configuration list of a dedicated instance.
|
|
1077
|
+
|
|
1078
|
+
:param request: Request instance for DescribeInstancesNetworkConfig.
|
|
1079
|
+
:type request: :class:`tencentcloud.apigateway.v20180808.models.DescribeInstancesNetworkConfigRequest`
|
|
1080
|
+
:rtype: :class:`tencentcloud.apigateway.v20180808.models.DescribeInstancesNetworkConfigResponse`
|
|
1081
|
+
|
|
1082
|
+
"""
|
|
1083
|
+
try:
|
|
1084
|
+
params = request._serialize()
|
|
1085
|
+
headers = request.headers
|
|
1086
|
+
body = self.call("DescribeInstancesNetworkConfig", params, headers=headers)
|
|
1087
|
+
response = json.loads(body)
|
|
1088
|
+
model = models.DescribeInstancesNetworkConfigResponse()
|
|
1089
|
+
model._deserialize(response["Response"])
|
|
1090
|
+
return model
|
|
1091
|
+
except Exception as e:
|
|
1092
|
+
if isinstance(e, TencentCloudSDKException):
|
|
1093
|
+
raise
|
|
1094
|
+
else:
|
|
1095
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
1096
|
+
|
|
1097
|
+
|
|
1075
1098
|
def DescribeLogSearch(self, request):
|
|
1076
1099
|
"""This API is used to search for logs.
|
|
1077
1100
|
|
|
@@ -11075,6 +11075,89 @@ Note: this field may return null, indicating that no valid values can be obtaine
|
|
|
11075
11075
|
self._RequestId = params.get("RequestId")
|
|
11076
11076
|
|
|
11077
11077
|
|
|
11078
|
+
class DescribeInstancesNetworkConfigRequest(AbstractModel):
|
|
11079
|
+
"""DescribeInstancesNetworkConfig request structure.
|
|
11080
|
+
|
|
11081
|
+
"""
|
|
11082
|
+
|
|
11083
|
+
def __init__(self):
|
|
11084
|
+
r"""
|
|
11085
|
+
:param _Limit: Number of returns, with a default value of 20 and a maximum value of 100.
|
|
11086
|
+
|
|
11087
|
+
:type Limit: int
|
|
11088
|
+
:param _Offset: Offset, which is 0 by default.
|
|
11089
|
+
|
|
11090
|
+
:type Offset: int
|
|
11091
|
+
"""
|
|
11092
|
+
self._Limit = None
|
|
11093
|
+
self._Offset = None
|
|
11094
|
+
|
|
11095
|
+
@property
|
|
11096
|
+
def Limit(self):
|
|
11097
|
+
"""Number of returns, with a default value of 20 and a maximum value of 100.
|
|
11098
|
+
|
|
11099
|
+
:rtype: int
|
|
11100
|
+
"""
|
|
11101
|
+
return self._Limit
|
|
11102
|
+
|
|
11103
|
+
@Limit.setter
|
|
11104
|
+
def Limit(self, Limit):
|
|
11105
|
+
self._Limit = Limit
|
|
11106
|
+
|
|
11107
|
+
@property
|
|
11108
|
+
def Offset(self):
|
|
11109
|
+
"""Offset, which is 0 by default.
|
|
11110
|
+
|
|
11111
|
+
:rtype: int
|
|
11112
|
+
"""
|
|
11113
|
+
return self._Offset
|
|
11114
|
+
|
|
11115
|
+
@Offset.setter
|
|
11116
|
+
def Offset(self, Offset):
|
|
11117
|
+
self._Offset = Offset
|
|
11118
|
+
|
|
11119
|
+
|
|
11120
|
+
def _deserialize(self, params):
|
|
11121
|
+
self._Limit = params.get("Limit")
|
|
11122
|
+
self._Offset = params.get("Offset")
|
|
11123
|
+
memeber_set = set(params.keys())
|
|
11124
|
+
for name, value in vars(self).items():
|
|
11125
|
+
property_name = name[1:]
|
|
11126
|
+
if property_name in memeber_set:
|
|
11127
|
+
memeber_set.remove(property_name)
|
|
11128
|
+
if len(memeber_set) > 0:
|
|
11129
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
11130
|
+
|
|
11131
|
+
|
|
11132
|
+
|
|
11133
|
+
class DescribeInstancesNetworkConfigResponse(AbstractModel):
|
|
11134
|
+
"""DescribeInstancesNetworkConfig response structure.
|
|
11135
|
+
|
|
11136
|
+
"""
|
|
11137
|
+
|
|
11138
|
+
def __init__(self):
|
|
11139
|
+
r"""
|
|
11140
|
+
: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.
|
|
11141
|
+
:type RequestId: str
|
|
11142
|
+
"""
|
|
11143
|
+
self._RequestId = None
|
|
11144
|
+
|
|
11145
|
+
@property
|
|
11146
|
+
def RequestId(self):
|
|
11147
|
+
"""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.
|
|
11148
|
+
:rtype: str
|
|
11149
|
+
"""
|
|
11150
|
+
return self._RequestId
|
|
11151
|
+
|
|
11152
|
+
@RequestId.setter
|
|
11153
|
+
def RequestId(self, RequestId):
|
|
11154
|
+
self._RequestId = RequestId
|
|
11155
|
+
|
|
11156
|
+
|
|
11157
|
+
def _deserialize(self, params):
|
|
11158
|
+
self._RequestId = params.get("RequestId")
|
|
11159
|
+
|
|
11160
|
+
|
|
11078
11161
|
class DescribeLogSearchRequest(AbstractModel):
|
|
11079
11162
|
"""DescribeLogSearch request structure.
|
|
11080
11163
|
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
tencentcloud/__init__.py,sha256=
|
|
1
|
+
tencentcloud/__init__.py,sha256=hulFjufsnXEzQPdknVzBkjdfLWj48h-MsaFSvSou0uI,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
|
|
@@ -21,9 +21,9 @@ tencentcloud/antiddos/v20200309/errorcodes.py,sha256=-NgKirEk0ME2_qvHM8JpT4xH_fA
|
|
|
21
21
|
tencentcloud/antiddos/v20200309/models.py,sha256=uKNPnhhR6sRyyjdcHz7G_e_az5a_-K7S9BM1QM7A7As,544486
|
|
22
22
|
tencentcloud/apigateway/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
23
23
|
tencentcloud/apigateway/v20180808/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
24
|
-
tencentcloud/apigateway/v20180808/apigateway_client.py,sha256
|
|
24
|
+
tencentcloud/apigateway/v20180808/apigateway_client.py,sha256=-tKw-SzbU-72Q1Ixbm1ygobLPuuheEcy4nnX0lCvcUI,92302
|
|
25
25
|
tencentcloud/apigateway/v20180808/errorcodes.py,sha256=0T0u1gze7_0UL5PGy0yOYWJOuI17GixRzh6_wngXJ74,23820
|
|
26
|
-
tencentcloud/apigateway/v20180808/models.py,sha256=
|
|
26
|
+
tencentcloud/apigateway/v20180808/models.py,sha256=Jv-ghAJouFW4LeWqhxKQjfSN0MCB4XA7Jij-0vLzwp0,795749
|
|
27
27
|
tencentcloud/apm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
28
28
|
tencentcloud/apm/v20210622/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
29
29
|
tencentcloud/apm/v20210622/apm_client.py,sha256=t3LlEPCKxGFoiPbbs_ixkoVqIg3vPNYKMSoURR2LRaQ,13561
|
|
@@ -634,7 +634,7 @@ tencentcloud/yunjing/v20180228/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5
|
|
|
634
634
|
tencentcloud/yunjing/v20180228/errorcodes.py,sha256=VEqwMbMBe7F2oAW6ZDu3vAivBr60lbo7FWduFqRTEVg,3195
|
|
635
635
|
tencentcloud/yunjing/v20180228/models.py,sha256=0rnsJ4JkA5aCTV1cVwCuKnzooe6IhQ0NS3ij6tJ22uw,330670
|
|
636
636
|
tencentcloud/yunjing/v20180228/yunjing_client.py,sha256=GA7Fo5GmpEJ2kufV2upw-ZpMZxznsPZ3NKDKDDAI4Ao,67384
|
|
637
|
-
tencentcloud_sdk_python_intl_en-3.0.
|
|
638
|
-
tencentcloud_sdk_python_intl_en-3.0.
|
|
639
|
-
tencentcloud_sdk_python_intl_en-3.0.
|
|
640
|
-
tencentcloud_sdk_python_intl_en-3.0.
|
|
637
|
+
tencentcloud_sdk_python_intl_en-3.0.1153.dist-info/METADATA,sha256=0-1KJNXSiVTYMsTgAIZxW5kS50miJrqX_uRDwuMOL3Y,1628
|
|
638
|
+
tencentcloud_sdk_python_intl_en-3.0.1153.dist-info/WHEEL,sha256=z9j0xAa_JmUKMpmz72K0ZGALSM_n-wQVmGbleXx2VHg,110
|
|
639
|
+
tencentcloud_sdk_python_intl_en-3.0.1153.dist-info/top_level.txt,sha256=g-8OyzoqI6O6LiS85zkeNzhB-osEnRIPZMdyRd_0eL0,13
|
|
640
|
+
tencentcloud_sdk_python_intl_en-3.0.1153.dist-info/RECORD,,
|
|
File without changes
|