tencentcloud-sdk-python-igtm 3.0.1460__tar.gz → 3.1.3__tar.gz

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.
Files changed (19) hide show
  1. tencentcloud_sdk_python_igtm-3.1.3/PKG-INFO +46 -0
  2. {tencentcloud-sdk-python-igtm-3.0.1460 → tencentcloud_sdk_python_igtm-3.1.3}/setup.py +2 -1
  3. {tencentcloud-sdk-python-igtm-3.0.1460 → tencentcloud_sdk_python_igtm-3.1.3}/tencentcloud/__init__.py +1 -1
  4. tencentcloud_sdk_python_igtm-3.1.3/tencentcloud/igtm/v20231024/igtm_client_async.py +494 -0
  5. {tencentcloud-sdk-python-igtm-3.0.1460 → tencentcloud_sdk_python_igtm-3.1.3}/tencentcloud/igtm/v20231024/models.py +110 -0
  6. tencentcloud_sdk_python_igtm-3.1.3/tencentcloud_sdk_python_igtm.egg-info/PKG-INFO +46 -0
  7. {tencentcloud-sdk-python-igtm-3.0.1460 → tencentcloud_sdk_python_igtm-3.1.3}/tencentcloud_sdk_python_igtm.egg-info/SOURCES.txt +1 -0
  8. tencentcloud_sdk_python_igtm-3.1.3/tencentcloud_sdk_python_igtm.egg-info/requires.txt +1 -0
  9. tencentcloud-sdk-python-igtm-3.0.1460/PKG-INFO +0 -45
  10. tencentcloud-sdk-python-igtm-3.0.1460/tencentcloud_sdk_python_igtm.egg-info/PKG-INFO +0 -45
  11. tencentcloud-sdk-python-igtm-3.0.1460/tencentcloud_sdk_python_igtm.egg-info/requires.txt +0 -1
  12. {tencentcloud-sdk-python-igtm-3.0.1460 → tencentcloud_sdk_python_igtm-3.1.3}/README.rst +0 -0
  13. {tencentcloud-sdk-python-igtm-3.0.1460 → tencentcloud_sdk_python_igtm-3.1.3}/setup.cfg +0 -0
  14. {tencentcloud-sdk-python-igtm-3.0.1460 → tencentcloud_sdk_python_igtm-3.1.3}/tencentcloud/igtm/__init__.py +0 -0
  15. {tencentcloud-sdk-python-igtm-3.0.1460 → tencentcloud_sdk_python_igtm-3.1.3}/tencentcloud/igtm/v20231024/__init__.py +0 -0
  16. {tencentcloud-sdk-python-igtm-3.0.1460 → tencentcloud_sdk_python_igtm-3.1.3}/tencentcloud/igtm/v20231024/errorcodes.py +0 -0
  17. {tencentcloud-sdk-python-igtm-3.0.1460 → tencentcloud_sdk_python_igtm-3.1.3}/tencentcloud/igtm/v20231024/igtm_client.py +0 -0
  18. {tencentcloud-sdk-python-igtm-3.0.1460 → tencentcloud_sdk_python_igtm-3.1.3}/tencentcloud_sdk_python_igtm.egg-info/dependency_links.txt +0 -0
  19. {tencentcloud-sdk-python-igtm-3.0.1460 → tencentcloud_sdk_python_igtm-3.1.3}/tencentcloud_sdk_python_igtm.egg-info/top_level.txt +0 -0
@@ -0,0 +1,46 @@
1
+ Metadata-Version: 2.1
2
+ Name: tencentcloud-sdk-python-igtm
3
+ Version: 3.1.3
4
+ Summary: Tencent Cloud Igtm SDK for Python
5
+ Home-page: https://github.com/TencentCloud/tencentcloud-sdk-python
6
+ Author: Tencent Cloud
7
+ Maintainer-email: tencentcloudapi@tencent.com
8
+ License: Apache License 2.0
9
+ Platform: any
10
+ Classifier: Development Status :: 5 - Production/Stable
11
+ Classifier: Intended Audience :: Developers
12
+ Classifier: License :: OSI Approved :: Apache Software License
13
+ Classifier: Programming Language :: Python
14
+ Classifier: Programming Language :: Python :: 2.7
15
+ Classifier: Programming Language :: Python :: 3
16
+ Classifier: Programming Language :: Python :: 3.6
17
+ Classifier: Programming Language :: Python :: 3.7
18
+ Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.3
19
+
20
+ ============================
21
+ Tencent Cloud SDK for Python
22
+ ============================
23
+
24
+ Tencent Cloud Python Igtm SDK is the official software development kit, which allows Python developers to write software that makes use of Tencent Cloud services like CVM and CBS.
25
+ The SDK works on Python versions:
26
+
27
+ * 2.7 and greater, including 3.x
28
+
29
+ Quick Start
30
+ -----------
31
+
32
+ First, install the library:
33
+
34
+ .. code-block:: sh
35
+
36
+ $ pip install tencentcloud-sdk-python-common
37
+ $ pip install tencentcloud-sdk-python-igtm
38
+
39
+ or download source code from github and install:
40
+
41
+ .. code-block:: sh
42
+
43
+ $ git clone https://github.com/tencentcloud/tencentcloud-sdk-python.git
44
+ $ cd tencentcloud-sdk-python
45
+ $ python package.py --components common igtm
46
+
@@ -8,7 +8,8 @@ ROOT = os.path.dirname(__file__)
8
8
 
9
9
  setup(
10
10
  name='tencentcloud-sdk-python-igtm',
11
- install_requires=["tencentcloud-sdk-python-common>=3.0.1460,<4.0.0"],
11
+ install_requires=["tencentcloud-sdk-python-common>=3.1.3,<4.0.0"],
12
+
12
13
  version=tencentcloud.__version__,
13
14
  description='Tencent Cloud Igtm SDK for Python',
14
15
  long_description=open('README.rst').read(),
@@ -14,4 +14,4 @@
14
14
  # limitations under the License.
15
15
 
16
16
 
17
- __version__ = '3.0.1460'
17
+ __version__ = '3.1.3'
@@ -0,0 +1,494 @@
1
+ # -*- coding: utf8 -*-
2
+ # Copyright (c) 2017-2025 Tencent. 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
+
18
+ from tencentcloud.common.abstract_client_async import AbstractClient
19
+ from tencentcloud.igtm.v20231024 import models
20
+ from typing import Dict
21
+
22
+
23
+ class IgtmClient(AbstractClient):
24
+ _apiVersion = '2023-10-24'
25
+ _endpoint = 'igtm.tencentcloudapi.com'
26
+ _service = 'igtm'
27
+
28
+ async def CreateAddressPool(
29
+ self,
30
+ request: models.CreateAddressPoolRequest,
31
+ opts: Dict = None,
32
+ ) -> models.CreateAddressPoolResponse:
33
+ """
34
+ 创建地址池
35
+ """
36
+
37
+ kwargs = {}
38
+ kwargs["action"] = "CreateAddressPool"
39
+ kwargs["params"] = request._serialize()
40
+ kwargs["resp_cls"] = models.CreateAddressPoolResponse
41
+ kwargs["headers"] = request.headers
42
+ kwargs["opts"] = opts or {}
43
+
44
+ return await self.call_and_deserialize(**kwargs)
45
+
46
+ async def CreateInstance(
47
+ self,
48
+ request: models.CreateInstanceRequest,
49
+ opts: Dict = None,
50
+ ) -> models.CreateInstanceResponse:
51
+ """
52
+ 创建实例接口,仅供免费实例使用
53
+ """
54
+
55
+ kwargs = {}
56
+ kwargs["action"] = "CreateInstance"
57
+ kwargs["params"] = request._serialize()
58
+ kwargs["resp_cls"] = models.CreateInstanceResponse
59
+ kwargs["headers"] = request.headers
60
+ kwargs["opts"] = opts or {}
61
+
62
+ return await self.call_and_deserialize(**kwargs)
63
+
64
+ async def CreateMonitor(
65
+ self,
66
+ request: models.CreateMonitorRequest,
67
+ opts: Dict = None,
68
+ ) -> models.CreateMonitorResponse:
69
+ """
70
+ 新增监控器
71
+ """
72
+
73
+ kwargs = {}
74
+ kwargs["action"] = "CreateMonitor"
75
+ kwargs["params"] = request._serialize()
76
+ kwargs["resp_cls"] = models.CreateMonitorResponse
77
+ kwargs["headers"] = request.headers
78
+ kwargs["opts"] = opts or {}
79
+
80
+ return await self.call_and_deserialize(**kwargs)
81
+
82
+ async def CreateStrategy(
83
+ self,
84
+ request: models.CreateStrategyRequest,
85
+ opts: Dict = None,
86
+ ) -> models.CreateStrategyResponse:
87
+ """
88
+ 新建策略接口
89
+ """
90
+
91
+ kwargs = {}
92
+ kwargs["action"] = "CreateStrategy"
93
+ kwargs["params"] = request._serialize()
94
+ kwargs["resp_cls"] = models.CreateStrategyResponse
95
+ kwargs["headers"] = request.headers
96
+ kwargs["opts"] = opts or {}
97
+
98
+ return await self.call_and_deserialize(**kwargs)
99
+
100
+ async def DeleteAddressPool(
101
+ self,
102
+ request: models.DeleteAddressPoolRequest,
103
+ opts: Dict = None,
104
+ ) -> models.DeleteAddressPoolResponse:
105
+ """
106
+ 删除地址池
107
+ """
108
+
109
+ kwargs = {}
110
+ kwargs["action"] = "DeleteAddressPool"
111
+ kwargs["params"] = request._serialize()
112
+ kwargs["resp_cls"] = models.DeleteAddressPoolResponse
113
+ kwargs["headers"] = request.headers
114
+ kwargs["opts"] = opts or {}
115
+
116
+ return await self.call_and_deserialize(**kwargs)
117
+
118
+ async def DeleteMonitor(
119
+ self,
120
+ request: models.DeleteMonitorRequest,
121
+ opts: Dict = None,
122
+ ) -> models.DeleteMonitorResponse:
123
+ """
124
+ 删除监控器
125
+ """
126
+
127
+ kwargs = {}
128
+ kwargs["action"] = "DeleteMonitor"
129
+ kwargs["params"] = request._serialize()
130
+ kwargs["resp_cls"] = models.DeleteMonitorResponse
131
+ kwargs["headers"] = request.headers
132
+ kwargs["opts"] = opts or {}
133
+
134
+ return await self.call_and_deserialize(**kwargs)
135
+
136
+ async def DeleteStrategy(
137
+ self,
138
+ request: models.DeleteStrategyRequest,
139
+ opts: Dict = None,
140
+ ) -> models.DeleteStrategyResponse:
141
+ """
142
+ 删除策略接口
143
+ """
144
+
145
+ kwargs = {}
146
+ kwargs["action"] = "DeleteStrategy"
147
+ kwargs["params"] = request._serialize()
148
+ kwargs["resp_cls"] = models.DeleteStrategyResponse
149
+ kwargs["headers"] = request.headers
150
+ kwargs["opts"] = opts or {}
151
+
152
+ return await self.call_and_deserialize(**kwargs)
153
+
154
+ async def DescribeAddressLocation(
155
+ self,
156
+ request: models.DescribeAddressLocationRequest,
157
+ opts: Dict = None,
158
+ ) -> models.DescribeAddressLocationResponse:
159
+ """
160
+ 获取地址所属地域
161
+ """
162
+
163
+ kwargs = {}
164
+ kwargs["action"] = "DescribeAddressLocation"
165
+ kwargs["params"] = request._serialize()
166
+ kwargs["resp_cls"] = models.DescribeAddressLocationResponse
167
+ kwargs["headers"] = request.headers
168
+ kwargs["opts"] = opts or {}
169
+
170
+ return await self.call_and_deserialize(**kwargs)
171
+
172
+ async def DescribeAddressPoolDetail(
173
+ self,
174
+ request: models.DescribeAddressPoolDetailRequest,
175
+ opts: Dict = None,
176
+ ) -> models.DescribeAddressPoolDetailResponse:
177
+ """
178
+ 地址池详情
179
+ """
180
+
181
+ kwargs = {}
182
+ kwargs["action"] = "DescribeAddressPoolDetail"
183
+ kwargs["params"] = request._serialize()
184
+ kwargs["resp_cls"] = models.DescribeAddressPoolDetailResponse
185
+ kwargs["headers"] = request.headers
186
+ kwargs["opts"] = opts or {}
187
+
188
+ return await self.call_and_deserialize(**kwargs)
189
+
190
+ async def DescribeAddressPoolList(
191
+ self,
192
+ request: models.DescribeAddressPoolListRequest,
193
+ opts: Dict = None,
194
+ ) -> models.DescribeAddressPoolListResponse:
195
+ """
196
+ 地址池列表
197
+ """
198
+
199
+ kwargs = {}
200
+ kwargs["action"] = "DescribeAddressPoolList"
201
+ kwargs["params"] = request._serialize()
202
+ kwargs["resp_cls"] = models.DescribeAddressPoolListResponse
203
+ kwargs["headers"] = request.headers
204
+ kwargs["opts"] = opts or {}
205
+
206
+ return await self.call_and_deserialize(**kwargs)
207
+
208
+ async def DescribeDetectPackageDetail(
209
+ self,
210
+ request: models.DescribeDetectPackageDetailRequest,
211
+ opts: Dict = None,
212
+ ) -> models.DescribeDetectPackageDetailResponse:
213
+ """
214
+ 探测任务包详情
215
+ """
216
+
217
+ kwargs = {}
218
+ kwargs["action"] = "DescribeDetectPackageDetail"
219
+ kwargs["params"] = request._serialize()
220
+ kwargs["resp_cls"] = models.DescribeDetectPackageDetailResponse
221
+ kwargs["headers"] = request.headers
222
+ kwargs["opts"] = opts or {}
223
+
224
+ return await self.call_and_deserialize(**kwargs)
225
+
226
+ async def DescribeDetectTaskPackageList(
227
+ self,
228
+ request: models.DescribeDetectTaskPackageListRequest,
229
+ opts: Dict = None,
230
+ ) -> models.DescribeDetectTaskPackageListResponse:
231
+ """
232
+ 探测任务套餐列表
233
+ """
234
+
235
+ kwargs = {}
236
+ kwargs["action"] = "DescribeDetectTaskPackageList"
237
+ kwargs["params"] = request._serialize()
238
+ kwargs["resp_cls"] = models.DescribeDetectTaskPackageListResponse
239
+ kwargs["headers"] = request.headers
240
+ kwargs["opts"] = opts or {}
241
+
242
+ return await self.call_and_deserialize(**kwargs)
243
+
244
+ async def DescribeDetectors(
245
+ self,
246
+ request: models.DescribeDetectorsRequest,
247
+ opts: Dict = None,
248
+ ) -> models.DescribeDetectorsResponse:
249
+ """
250
+ 获取探测节点列表接口
251
+ """
252
+
253
+ kwargs = {}
254
+ kwargs["action"] = "DescribeDetectors"
255
+ kwargs["params"] = request._serialize()
256
+ kwargs["resp_cls"] = models.DescribeDetectorsResponse
257
+ kwargs["headers"] = request.headers
258
+ kwargs["opts"] = opts or {}
259
+
260
+ return await self.call_and_deserialize(**kwargs)
261
+
262
+ async def DescribeDnsLineList(
263
+ self,
264
+ request: models.DescribeDnsLineListRequest,
265
+ opts: Dict = None,
266
+ ) -> models.DescribeDnsLineListResponse:
267
+ """
268
+ 查询分组线路列表接口
269
+ """
270
+
271
+ kwargs = {}
272
+ kwargs["action"] = "DescribeDnsLineList"
273
+ kwargs["params"] = request._serialize()
274
+ kwargs["resp_cls"] = models.DescribeDnsLineListResponse
275
+ kwargs["headers"] = request.headers
276
+ kwargs["opts"] = opts or {}
277
+
278
+ return await self.call_and_deserialize(**kwargs)
279
+
280
+ async def DescribeInstanceDetail(
281
+ self,
282
+ request: models.DescribeInstanceDetailRequest,
283
+ opts: Dict = None,
284
+ ) -> models.DescribeInstanceDetailResponse:
285
+ """
286
+ 实例详情
287
+ """
288
+
289
+ kwargs = {}
290
+ kwargs["action"] = "DescribeInstanceDetail"
291
+ kwargs["params"] = request._serialize()
292
+ kwargs["resp_cls"] = models.DescribeInstanceDetailResponse
293
+ kwargs["headers"] = request.headers
294
+ kwargs["opts"] = opts or {}
295
+
296
+ return await self.call_and_deserialize(**kwargs)
297
+
298
+ async def DescribeInstanceList(
299
+ self,
300
+ request: models.DescribeInstanceListRequest,
301
+ opts: Dict = None,
302
+ ) -> models.DescribeInstanceListResponse:
303
+ """
304
+ 实例列表
305
+ """
306
+
307
+ kwargs = {}
308
+ kwargs["action"] = "DescribeInstanceList"
309
+ kwargs["params"] = request._serialize()
310
+ kwargs["resp_cls"] = models.DescribeInstanceListResponse
311
+ kwargs["headers"] = request.headers
312
+ kwargs["opts"] = opts or {}
313
+
314
+ return await self.call_and_deserialize(**kwargs)
315
+
316
+ async def DescribeInstancePackageList(
317
+ self,
318
+ request: models.DescribeInstancePackageListRequest,
319
+ opts: Dict = None,
320
+ ) -> models.DescribeInstancePackageListResponse:
321
+ """
322
+ 实例套餐列表
323
+ """
324
+
325
+ kwargs = {}
326
+ kwargs["action"] = "DescribeInstancePackageList"
327
+ kwargs["params"] = request._serialize()
328
+ kwargs["resp_cls"] = models.DescribeInstancePackageListResponse
329
+ kwargs["headers"] = request.headers
330
+ kwargs["opts"] = opts or {}
331
+
332
+ return await self.call_and_deserialize(**kwargs)
333
+
334
+ async def DescribeMonitorDetail(
335
+ self,
336
+ request: models.DescribeMonitorDetailRequest,
337
+ opts: Dict = None,
338
+ ) -> models.DescribeMonitorDetailResponse:
339
+ """
340
+ 查询监控器详情接口
341
+ """
342
+
343
+ kwargs = {}
344
+ kwargs["action"] = "DescribeMonitorDetail"
345
+ kwargs["params"] = request._serialize()
346
+ kwargs["resp_cls"] = models.DescribeMonitorDetailResponse
347
+ kwargs["headers"] = request.headers
348
+ kwargs["opts"] = opts or {}
349
+
350
+ return await self.call_and_deserialize(**kwargs)
351
+
352
+ async def DescribeMonitors(
353
+ self,
354
+ request: models.DescribeMonitorsRequest,
355
+ opts: Dict = None,
356
+ ) -> models.DescribeMonitorsResponse:
357
+ """
358
+ 获取所有监控器
359
+ """
360
+
361
+ kwargs = {}
362
+ kwargs["action"] = "DescribeMonitors"
363
+ kwargs["params"] = request._serialize()
364
+ kwargs["resp_cls"] = models.DescribeMonitorsResponse
365
+ kwargs["headers"] = request.headers
366
+ kwargs["opts"] = opts or {}
367
+
368
+ return await self.call_and_deserialize(**kwargs)
369
+
370
+ async def DescribeQuotas(
371
+ self,
372
+ request: models.DescribeQuotasRequest,
373
+ opts: Dict = None,
374
+ ) -> models.DescribeQuotasResponse:
375
+ """
376
+ 配额查询
377
+ """
378
+
379
+ kwargs = {}
380
+ kwargs["action"] = "DescribeQuotas"
381
+ kwargs["params"] = request._serialize()
382
+ kwargs["resp_cls"] = models.DescribeQuotasResponse
383
+ kwargs["headers"] = request.headers
384
+ kwargs["opts"] = opts or {}
385
+
386
+ return await self.call_and_deserialize(**kwargs)
387
+
388
+ async def DescribeStrategyDetail(
389
+ self,
390
+ request: models.DescribeStrategyDetailRequest,
391
+ opts: Dict = None,
392
+ ) -> models.DescribeStrategyDetailResponse:
393
+ """
394
+ 策略详情
395
+ """
396
+
397
+ kwargs = {}
398
+ kwargs["action"] = "DescribeStrategyDetail"
399
+ kwargs["params"] = request._serialize()
400
+ kwargs["resp_cls"] = models.DescribeStrategyDetailResponse
401
+ kwargs["headers"] = request.headers
402
+ kwargs["opts"] = opts or {}
403
+
404
+ return await self.call_and_deserialize(**kwargs)
405
+
406
+ async def DescribeStrategyList(
407
+ self,
408
+ request: models.DescribeStrategyListRequest,
409
+ opts: Dict = None,
410
+ ) -> models.DescribeStrategyListResponse:
411
+ """
412
+ 策略列表接口
413
+ """
414
+
415
+ kwargs = {}
416
+ kwargs["action"] = "DescribeStrategyList"
417
+ kwargs["params"] = request._serialize()
418
+ kwargs["resp_cls"] = models.DescribeStrategyListResponse
419
+ kwargs["headers"] = request.headers
420
+ kwargs["opts"] = opts or {}
421
+
422
+ return await self.call_and_deserialize(**kwargs)
423
+
424
+ async def ModifyAddressPool(
425
+ self,
426
+ request: models.ModifyAddressPoolRequest,
427
+ opts: Dict = None,
428
+ ) -> models.ModifyAddressPoolResponse:
429
+ """
430
+ 修改地址池
431
+ """
432
+
433
+ kwargs = {}
434
+ kwargs["action"] = "ModifyAddressPool"
435
+ kwargs["params"] = request._serialize()
436
+ kwargs["resp_cls"] = models.ModifyAddressPoolResponse
437
+ kwargs["headers"] = request.headers
438
+ kwargs["opts"] = opts or {}
439
+
440
+ return await self.call_and_deserialize(**kwargs)
441
+
442
+ async def ModifyInstanceConfig(
443
+ self,
444
+ request: models.ModifyInstanceConfigRequest,
445
+ opts: Dict = None,
446
+ ) -> models.ModifyInstanceConfigResponse:
447
+ """
448
+ 修改实例配置
449
+ """
450
+
451
+ kwargs = {}
452
+ kwargs["action"] = "ModifyInstanceConfig"
453
+ kwargs["params"] = request._serialize()
454
+ kwargs["resp_cls"] = models.ModifyInstanceConfigResponse
455
+ kwargs["headers"] = request.headers
456
+ kwargs["opts"] = opts or {}
457
+
458
+ return await self.call_and_deserialize(**kwargs)
459
+
460
+ async def ModifyMonitor(
461
+ self,
462
+ request: models.ModifyMonitorRequest,
463
+ opts: Dict = None,
464
+ ) -> models.ModifyMonitorResponse:
465
+ """
466
+ 修改监控器
467
+ """
468
+
469
+ kwargs = {}
470
+ kwargs["action"] = "ModifyMonitor"
471
+ kwargs["params"] = request._serialize()
472
+ kwargs["resp_cls"] = models.ModifyMonitorResponse
473
+ kwargs["headers"] = request.headers
474
+ kwargs["opts"] = opts or {}
475
+
476
+ return await self.call_and_deserialize(**kwargs)
477
+
478
+ async def ModifyStrategy(
479
+ self,
480
+ request: models.ModifyStrategyRequest,
481
+ opts: Dict = None,
482
+ ) -> models.ModifyStrategyResponse:
483
+ """
484
+ 修改策略接口
485
+ """
486
+
487
+ kwargs = {}
488
+ kwargs["action"] = "ModifyStrategy"
489
+ kwargs["params"] = request._serialize()
490
+ kwargs["resp_cls"] = models.ModifyStrategyResponse
491
+ kwargs["headers"] = request.headers
492
+ kwargs["opts"] = opts or {}
493
+
494
+ return await self.call_and_deserialize(**kwargs)
@@ -925,11 +925,25 @@ class CreateInstanceResponse(AbstractModel):
925
925
 
926
926
  def __init__(self):
927
927
  r"""
928
+ :param _InstanceId: 实例id
929
+ :type InstanceId: str
928
930
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
929
931
  :type RequestId: str
930
932
  """
933
+ self._InstanceId = None
931
934
  self._RequestId = None
932
935
 
936
+ @property
937
+ def InstanceId(self):
938
+ r"""实例id
939
+ :rtype: str
940
+ """
941
+ return self._InstanceId
942
+
943
+ @InstanceId.setter
944
+ def InstanceId(self, InstanceId):
945
+ self._InstanceId = InstanceId
946
+
933
947
  @property
934
948
  def RequestId(self):
935
949
  r"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
@@ -943,6 +957,7 @@ class CreateInstanceResponse(AbstractModel):
943
957
 
944
958
 
945
959
  def _deserialize(self, params):
960
+ self._InstanceId = params.get("InstanceId")
946
961
  self._RequestId = params.get("RequestId")
947
962
 
948
963
 
@@ -2261,14 +2276,28 @@ class DescribeDetectTaskPackageListRequest(AbstractModel):
2261
2276
 
2262
2277
  def __init__(self):
2263
2278
  r"""
2279
+ :param _Offset: 偏移量
2280
+ :type Offset: int
2264
2281
  :param _Limit: 每页条数
2265
2282
  :type Limit: int
2266
2283
  :param _Filters: 探测任务过滤条件:ResourceId 探测任务的资源id,PeriodStart 最小过期时间,PeriodEnd 最大过期时间
2267
2284
  :type Filters: list of ResourceFilter
2268
2285
  """
2286
+ self._Offset = None
2269
2287
  self._Limit = None
2270
2288
  self._Filters = None
2271
2289
 
2290
+ @property
2291
+ def Offset(self):
2292
+ r"""偏移量
2293
+ :rtype: int
2294
+ """
2295
+ return self._Offset
2296
+
2297
+ @Offset.setter
2298
+ def Offset(self, Offset):
2299
+ self._Offset = Offset
2300
+
2272
2301
  @property
2273
2302
  def Limit(self):
2274
2303
  r"""每页条数
@@ -2293,6 +2322,7 @@ class DescribeDetectTaskPackageListRequest(AbstractModel):
2293
2322
 
2294
2323
 
2295
2324
  def _deserialize(self, params):
2325
+ self._Offset = params.get("Offset")
2296
2326
  self._Limit = params.get("Limit")
2297
2327
  if params.get("Filters") is not None:
2298
2328
  self._Filters = []
@@ -2516,6 +2546,36 @@ class DescribeInstanceDetailRequest(AbstractModel):
2516
2546
 
2517
2547
  """
2518
2548
 
2549
+ def __init__(self):
2550
+ r"""
2551
+ :param _InstanceId: 实例id
2552
+ :type InstanceId: str
2553
+ """
2554
+ self._InstanceId = None
2555
+
2556
+ @property
2557
+ def InstanceId(self):
2558
+ r"""实例id
2559
+ :rtype: str
2560
+ """
2561
+ return self._InstanceId
2562
+
2563
+ @InstanceId.setter
2564
+ def InstanceId(self, InstanceId):
2565
+ self._InstanceId = InstanceId
2566
+
2567
+
2568
+ def _deserialize(self, params):
2569
+ self._InstanceId = params.get("InstanceId")
2570
+ memeber_set = set(params.keys())
2571
+ for name, value in vars(self).items():
2572
+ property_name = name[1:]
2573
+ if property_name in memeber_set:
2574
+ memeber_set.remove(property_name)
2575
+ if len(memeber_set) > 0:
2576
+ warnings.warn("%s fileds are useless." % ",".join(memeber_set))
2577
+
2578
+
2519
2579
 
2520
2580
  class DescribeInstanceDetailResponse(AbstractModel):
2521
2581
  r"""DescribeInstanceDetail返回参数结构体
@@ -2718,6 +2778,8 @@ class DescribeInstancePackageListRequest(AbstractModel):
2718
2778
 
2719
2779
  def __init__(self):
2720
2780
  r"""
2781
+ :param _Offset: 偏移量
2782
+ :type Offset: int
2721
2783
  :param _Limit: 每页条数
2722
2784
  :type Limit: int
2723
2785
  :param _Filters: InstanceId实例Id,InstanceName实例名称,ResourceId套餐Id,PackageType套餐类型
@@ -2725,10 +2787,22 @@ class DescribeInstancePackageListRequest(AbstractModel):
2725
2787
  :param _IsUsed: 是否使用:0未使用1已使用
2726
2788
  :type IsUsed: int
2727
2789
  """
2790
+ self._Offset = None
2728
2791
  self._Limit = None
2729
2792
  self._Filters = None
2730
2793
  self._IsUsed = None
2731
2794
 
2795
+ @property
2796
+ def Offset(self):
2797
+ r"""偏移量
2798
+ :rtype: int
2799
+ """
2800
+ return self._Offset
2801
+
2802
+ @Offset.setter
2803
+ def Offset(self, Offset):
2804
+ self._Offset = Offset
2805
+
2732
2806
  @property
2733
2807
  def Limit(self):
2734
2808
  r"""每页条数
@@ -2764,6 +2838,7 @@ class DescribeInstancePackageListRequest(AbstractModel):
2764
2838
 
2765
2839
 
2766
2840
  def _deserialize(self, params):
2841
+ self._Offset = params.get("Offset")
2767
2842
  self._Limit = params.get("Limit")
2768
2843
  if params.get("Filters") is not None:
2769
2844
  self._Filters = []
@@ -2937,11 +3012,14 @@ class DescribeMonitorsRequest(AbstractModel):
2937
3012
  :type Offset: int
2938
3013
  :param _Limit: 分页,当前分页记录数
2939
3014
  :type Limit: int
3015
+ :param _Filters: 查询过滤条件:MonitorName:监控器名称;MonitorId:监控器id
3016
+ :type Filters: list of ResourceFilter
2940
3017
  :param _IsDetectNum: 是否查探测次数0否1是
2941
3018
  :type IsDetectNum: int
2942
3019
  """
2943
3020
  self._Offset = None
2944
3021
  self._Limit = None
3022
+ self._Filters = None
2945
3023
  self._IsDetectNum = None
2946
3024
 
2947
3025
  @property
@@ -2966,6 +3044,17 @@ class DescribeMonitorsRequest(AbstractModel):
2966
3044
  def Limit(self, Limit):
2967
3045
  self._Limit = Limit
2968
3046
 
3047
+ @property
3048
+ def Filters(self):
3049
+ r"""查询过滤条件:MonitorName:监控器名称;MonitorId:监控器id
3050
+ :rtype: list of ResourceFilter
3051
+ """
3052
+ return self._Filters
3053
+
3054
+ @Filters.setter
3055
+ def Filters(self, Filters):
3056
+ self._Filters = Filters
3057
+
2969
3058
  @property
2970
3059
  def IsDetectNum(self):
2971
3060
  r"""是否查探测次数0否1是
@@ -2981,6 +3070,12 @@ class DescribeMonitorsRequest(AbstractModel):
2981
3070
  def _deserialize(self, params):
2982
3071
  self._Offset = params.get("Offset")
2983
3072
  self._Limit = params.get("Limit")
3073
+ if params.get("Filters") is not None:
3074
+ self._Filters = []
3075
+ for item in params.get("Filters"):
3076
+ obj = ResourceFilter()
3077
+ obj._deserialize(item)
3078
+ self._Filters.append(obj)
2984
3079
  self._IsDetectNum = params.get("IsDetectNum")
2985
3080
  memeber_set = set(params.keys())
2986
3081
  for name, value in vars(self).items():
@@ -5218,11 +5313,25 @@ class ModifyInstanceConfigRequest(AbstractModel):
5218
5313
 
5219
5314
  def __init__(self):
5220
5315
  r"""
5316
+ :param _InstanceId: 实例id
5317
+ :type InstanceId: str
5221
5318
  :param _InstanceConfig: 实例配置详情
5222
5319
  :type InstanceConfig: :class:`tencentcloud.igtm.v20231024.models.InstanceConfig`
5223
5320
  """
5321
+ self._InstanceId = None
5224
5322
  self._InstanceConfig = None
5225
5323
 
5324
+ @property
5325
+ def InstanceId(self):
5326
+ r"""实例id
5327
+ :rtype: str
5328
+ """
5329
+ return self._InstanceId
5330
+
5331
+ @InstanceId.setter
5332
+ def InstanceId(self, InstanceId):
5333
+ self._InstanceId = InstanceId
5334
+
5226
5335
  @property
5227
5336
  def InstanceConfig(self):
5228
5337
  r"""实例配置详情
@@ -5236,6 +5345,7 @@ class ModifyInstanceConfigRequest(AbstractModel):
5236
5345
 
5237
5346
 
5238
5347
  def _deserialize(self, params):
5348
+ self._InstanceId = params.get("InstanceId")
5239
5349
  if params.get("InstanceConfig") is not None:
5240
5350
  self._InstanceConfig = InstanceConfig()
5241
5351
  self._InstanceConfig._deserialize(params.get("InstanceConfig"))
@@ -0,0 +1,46 @@
1
+ Metadata-Version: 2.1
2
+ Name: tencentcloud-sdk-python-igtm
3
+ Version: 3.1.3
4
+ Summary: Tencent Cloud Igtm SDK for Python
5
+ Home-page: https://github.com/TencentCloud/tencentcloud-sdk-python
6
+ Author: Tencent Cloud
7
+ Maintainer-email: tencentcloudapi@tencent.com
8
+ License: Apache License 2.0
9
+ Platform: any
10
+ Classifier: Development Status :: 5 - Production/Stable
11
+ Classifier: Intended Audience :: Developers
12
+ Classifier: License :: OSI Approved :: Apache Software License
13
+ Classifier: Programming Language :: Python
14
+ Classifier: Programming Language :: Python :: 2.7
15
+ Classifier: Programming Language :: Python :: 3
16
+ Classifier: Programming Language :: Python :: 3.6
17
+ Classifier: Programming Language :: Python :: 3.7
18
+ Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.3
19
+
20
+ ============================
21
+ Tencent Cloud SDK for Python
22
+ ============================
23
+
24
+ Tencent Cloud Python Igtm SDK is the official software development kit, which allows Python developers to write software that makes use of Tencent Cloud services like CVM and CBS.
25
+ The SDK works on Python versions:
26
+
27
+ * 2.7 and greater, including 3.x
28
+
29
+ Quick Start
30
+ -----------
31
+
32
+ First, install the library:
33
+
34
+ .. code-block:: sh
35
+
36
+ $ pip install tencentcloud-sdk-python-common
37
+ $ pip install tencentcloud-sdk-python-igtm
38
+
39
+ or download source code from github and install:
40
+
41
+ .. code-block:: sh
42
+
43
+ $ git clone https://github.com/tencentcloud/tencentcloud-sdk-python.git
44
+ $ cd tencentcloud-sdk-python
45
+ $ python package.py --components common igtm
46
+
@@ -6,6 +6,7 @@ tencentcloud/igtm/__init__.py
6
6
  tencentcloud/igtm/v20231024/__init__.py
7
7
  tencentcloud/igtm/v20231024/errorcodes.py
8
8
  tencentcloud/igtm/v20231024/igtm_client.py
9
+ tencentcloud/igtm/v20231024/igtm_client_async.py
9
10
  tencentcloud/igtm/v20231024/models.py
10
11
  tencentcloud_sdk_python_igtm.egg-info/PKG-INFO
11
12
  tencentcloud_sdk_python_igtm.egg-info/SOURCES.txt
@@ -0,0 +1 @@
1
+ tencentcloud-sdk-python-common<4.0.0,>=3.1.3
@@ -1,45 +0,0 @@
1
- Metadata-Version: 1.2
2
- Name: tencentcloud-sdk-python-igtm
3
- Version: 3.0.1460
4
- Summary: Tencent Cloud Igtm SDK for Python
5
- Home-page: https://github.com/TencentCloud/tencentcloud-sdk-python
6
- Author: Tencent Cloud
7
- Maintainer-email: tencentcloudapi@tencent.com
8
- License: Apache License 2.0
9
- Description: ============================
10
- Tencent Cloud SDK for Python
11
- ============================
12
-
13
- Tencent Cloud Python Igtm SDK is the official software development kit, which allows Python developers to write software that makes use of Tencent Cloud services like CVM and CBS.
14
- The SDK works on Python versions:
15
-
16
- * 2.7 and greater, including 3.x
17
-
18
- Quick Start
19
- -----------
20
-
21
- First, install the library:
22
-
23
- .. code-block:: sh
24
-
25
- $ pip install tencentcloud-sdk-python-common
26
- $ pip install tencentcloud-sdk-python-igtm
27
-
28
- or download source code from github and install:
29
-
30
- .. code-block:: sh
31
-
32
- $ git clone https://github.com/tencentcloud/tencentcloud-sdk-python.git
33
- $ cd tencentcloud-sdk-python
34
- $ python package.py --components common igtm
35
-
36
-
37
- Platform: any
38
- Classifier: Development Status :: 5 - Production/Stable
39
- Classifier: Intended Audience :: Developers
40
- Classifier: License :: OSI Approved :: Apache Software License
41
- Classifier: Programming Language :: Python
42
- Classifier: Programming Language :: Python :: 2.7
43
- Classifier: Programming Language :: Python :: 3
44
- Classifier: Programming Language :: Python :: 3.6
45
- Classifier: Programming Language :: Python :: 3.7
@@ -1,45 +0,0 @@
1
- Metadata-Version: 1.2
2
- Name: tencentcloud-sdk-python-igtm
3
- Version: 3.0.1460
4
- Summary: Tencent Cloud Igtm SDK for Python
5
- Home-page: https://github.com/TencentCloud/tencentcloud-sdk-python
6
- Author: Tencent Cloud
7
- Maintainer-email: tencentcloudapi@tencent.com
8
- License: Apache License 2.0
9
- Description: ============================
10
- Tencent Cloud SDK for Python
11
- ============================
12
-
13
- Tencent Cloud Python Igtm SDK is the official software development kit, which allows Python developers to write software that makes use of Tencent Cloud services like CVM and CBS.
14
- The SDK works on Python versions:
15
-
16
- * 2.7 and greater, including 3.x
17
-
18
- Quick Start
19
- -----------
20
-
21
- First, install the library:
22
-
23
- .. code-block:: sh
24
-
25
- $ pip install tencentcloud-sdk-python-common
26
- $ pip install tencentcloud-sdk-python-igtm
27
-
28
- or download source code from github and install:
29
-
30
- .. code-block:: sh
31
-
32
- $ git clone https://github.com/tencentcloud/tencentcloud-sdk-python.git
33
- $ cd tencentcloud-sdk-python
34
- $ python package.py --components common igtm
35
-
36
-
37
- Platform: any
38
- Classifier: Development Status :: 5 - Production/Stable
39
- Classifier: Intended Audience :: Developers
40
- Classifier: License :: OSI Approved :: Apache Software License
41
- Classifier: Programming Language :: Python
42
- Classifier: Programming Language :: Python :: 2.7
43
- Classifier: Programming Language :: Python :: 3
44
- Classifier: Programming Language :: Python :: 3.6
45
- Classifier: Programming Language :: Python :: 3.7
@@ -1 +0,0 @@
1
- tencentcloud-sdk-python-common<4.0.0,>=3.0.1460