tencentcloud-sdk-python-cdc 3.0.1459__py2.py3-none-any.whl → 3.1.23__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.
- tencentcloud/__init__.py +1 -1
- tencentcloud/cdc/v20201214/cdc_client_async.py +440 -0
- tencentcloud/cdc/v20201214/models.py +107 -124
- {tencentcloud_sdk_python_cdc-3.0.1459.dist-info → tencentcloud_sdk_python_cdc-3.1.23.dist-info}/METADATA +2 -4
- tencentcloud_sdk_python_cdc-3.1.23.dist-info/RECORD +11 -0
- {tencentcloud_sdk_python_cdc-3.0.1459.dist-info → tencentcloud_sdk_python_cdc-3.1.23.dist-info}/WHEEL +1 -1
- tencentcloud_sdk_python_cdc-3.0.1459.dist-info/RECORD +0 -10
- {tencentcloud_sdk_python_cdc-3.0.1459.dist-info → tencentcloud_sdk_python_cdc-3.1.23.dist-info}/top_level.txt +0 -0
tencentcloud/__init__.py
CHANGED
|
@@ -0,0 +1,440 @@
|
|
|
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.cdc.v20201214 import models
|
|
20
|
+
from typing import Dict
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
class CdcClient(AbstractClient):
|
|
24
|
+
_apiVersion = '2020-12-14'
|
|
25
|
+
_endpoint = 'cdc.tencentcloudapi.com'
|
|
26
|
+
_service = 'cdc'
|
|
27
|
+
|
|
28
|
+
async def CreateDedicatedCluster(
|
|
29
|
+
self,
|
|
30
|
+
request: models.CreateDedicatedClusterRequest,
|
|
31
|
+
opts: Dict = None,
|
|
32
|
+
) -> models.CreateDedicatedClusterResponse:
|
|
33
|
+
"""
|
|
34
|
+
创建专用集群
|
|
35
|
+
"""
|
|
36
|
+
|
|
37
|
+
kwargs = {}
|
|
38
|
+
kwargs["action"] = "CreateDedicatedCluster"
|
|
39
|
+
kwargs["params"] = request._serialize()
|
|
40
|
+
kwargs["resp_cls"] = models.CreateDedicatedClusterResponse
|
|
41
|
+
kwargs["headers"] = request.headers
|
|
42
|
+
kwargs["opts"] = opts or {}
|
|
43
|
+
|
|
44
|
+
return await self.call_and_deserialize(**kwargs)
|
|
45
|
+
|
|
46
|
+
async def CreateDedicatedClusterImageCache(
|
|
47
|
+
self,
|
|
48
|
+
request: models.CreateDedicatedClusterImageCacheRequest,
|
|
49
|
+
opts: Dict = None,
|
|
50
|
+
) -> models.CreateDedicatedClusterImageCacheResponse:
|
|
51
|
+
"""
|
|
52
|
+
创建云上镜像缓存到本地专用集群中
|
|
53
|
+
"""
|
|
54
|
+
|
|
55
|
+
kwargs = {}
|
|
56
|
+
kwargs["action"] = "CreateDedicatedClusterImageCache"
|
|
57
|
+
kwargs["params"] = request._serialize()
|
|
58
|
+
kwargs["resp_cls"] = models.CreateDedicatedClusterImageCacheResponse
|
|
59
|
+
kwargs["headers"] = request.headers
|
|
60
|
+
kwargs["opts"] = opts or {}
|
|
61
|
+
|
|
62
|
+
return await self.call_and_deserialize(**kwargs)
|
|
63
|
+
|
|
64
|
+
async def CreateDedicatedClusterOrder(
|
|
65
|
+
self,
|
|
66
|
+
request: models.CreateDedicatedClusterOrderRequest,
|
|
67
|
+
opts: Dict = None,
|
|
68
|
+
) -> models.CreateDedicatedClusterOrderResponse:
|
|
69
|
+
"""
|
|
70
|
+
创建专用集群订单
|
|
71
|
+
"""
|
|
72
|
+
|
|
73
|
+
kwargs = {}
|
|
74
|
+
kwargs["action"] = "CreateDedicatedClusterOrder"
|
|
75
|
+
kwargs["params"] = request._serialize()
|
|
76
|
+
kwargs["resp_cls"] = models.CreateDedicatedClusterOrderResponse
|
|
77
|
+
kwargs["headers"] = request.headers
|
|
78
|
+
kwargs["opts"] = opts or {}
|
|
79
|
+
|
|
80
|
+
return await self.call_and_deserialize(**kwargs)
|
|
81
|
+
|
|
82
|
+
async def CreateSite(
|
|
83
|
+
self,
|
|
84
|
+
request: models.CreateSiteRequest,
|
|
85
|
+
opts: Dict = None,
|
|
86
|
+
) -> models.CreateSiteResponse:
|
|
87
|
+
"""
|
|
88
|
+
创建站点
|
|
89
|
+
"""
|
|
90
|
+
|
|
91
|
+
kwargs = {}
|
|
92
|
+
kwargs["action"] = "CreateSite"
|
|
93
|
+
kwargs["params"] = request._serialize()
|
|
94
|
+
kwargs["resp_cls"] = models.CreateSiteResponse
|
|
95
|
+
kwargs["headers"] = request.headers
|
|
96
|
+
kwargs["opts"] = opts or {}
|
|
97
|
+
|
|
98
|
+
return await self.call_and_deserialize(**kwargs)
|
|
99
|
+
|
|
100
|
+
async def DeleteDedicatedClusterImageCache(
|
|
101
|
+
self,
|
|
102
|
+
request: models.DeleteDedicatedClusterImageCacheRequest,
|
|
103
|
+
opts: Dict = None,
|
|
104
|
+
) -> models.DeleteDedicatedClusterImageCacheResponse:
|
|
105
|
+
"""
|
|
106
|
+
删除本地专用集群的云上镜像缓存
|
|
107
|
+
"""
|
|
108
|
+
|
|
109
|
+
kwargs = {}
|
|
110
|
+
kwargs["action"] = "DeleteDedicatedClusterImageCache"
|
|
111
|
+
kwargs["params"] = request._serialize()
|
|
112
|
+
kwargs["resp_cls"] = models.DeleteDedicatedClusterImageCacheResponse
|
|
113
|
+
kwargs["headers"] = request.headers
|
|
114
|
+
kwargs["opts"] = opts or {}
|
|
115
|
+
|
|
116
|
+
return await self.call_and_deserialize(**kwargs)
|
|
117
|
+
|
|
118
|
+
async def DeleteDedicatedClusters(
|
|
119
|
+
self,
|
|
120
|
+
request: models.DeleteDedicatedClustersRequest,
|
|
121
|
+
opts: Dict = None,
|
|
122
|
+
) -> models.DeleteDedicatedClustersResponse:
|
|
123
|
+
"""
|
|
124
|
+
删除专用集群
|
|
125
|
+
"""
|
|
126
|
+
|
|
127
|
+
kwargs = {}
|
|
128
|
+
kwargs["action"] = "DeleteDedicatedClusters"
|
|
129
|
+
kwargs["params"] = request._serialize()
|
|
130
|
+
kwargs["resp_cls"] = models.DeleteDedicatedClustersResponse
|
|
131
|
+
kwargs["headers"] = request.headers
|
|
132
|
+
kwargs["opts"] = opts or {}
|
|
133
|
+
|
|
134
|
+
return await self.call_and_deserialize(**kwargs)
|
|
135
|
+
|
|
136
|
+
async def DeleteSites(
|
|
137
|
+
self,
|
|
138
|
+
request: models.DeleteSitesRequest,
|
|
139
|
+
opts: Dict = None,
|
|
140
|
+
) -> models.DeleteSitesResponse:
|
|
141
|
+
"""
|
|
142
|
+
删除站点
|
|
143
|
+
"""
|
|
144
|
+
|
|
145
|
+
kwargs = {}
|
|
146
|
+
kwargs["action"] = "DeleteSites"
|
|
147
|
+
kwargs["params"] = request._serialize()
|
|
148
|
+
kwargs["resp_cls"] = models.DeleteSitesResponse
|
|
149
|
+
kwargs["headers"] = request.headers
|
|
150
|
+
kwargs["opts"] = opts or {}
|
|
151
|
+
|
|
152
|
+
return await self.call_and_deserialize(**kwargs)
|
|
153
|
+
|
|
154
|
+
async def DescribeDedicatedClusterCbsStatistics(
|
|
155
|
+
self,
|
|
156
|
+
request: models.DescribeDedicatedClusterCbsStatisticsRequest,
|
|
157
|
+
opts: Dict = None,
|
|
158
|
+
) -> models.DescribeDedicatedClusterCbsStatisticsResponse:
|
|
159
|
+
"""
|
|
160
|
+
查询本地专用集群云硬盘仓库信息
|
|
161
|
+
"""
|
|
162
|
+
|
|
163
|
+
kwargs = {}
|
|
164
|
+
kwargs["action"] = "DescribeDedicatedClusterCbsStatistics"
|
|
165
|
+
kwargs["params"] = request._serialize()
|
|
166
|
+
kwargs["resp_cls"] = models.DescribeDedicatedClusterCbsStatisticsResponse
|
|
167
|
+
kwargs["headers"] = request.headers
|
|
168
|
+
kwargs["opts"] = opts or {}
|
|
169
|
+
|
|
170
|
+
return await self.call_and_deserialize(**kwargs)
|
|
171
|
+
|
|
172
|
+
async def DescribeDedicatedClusterCosCapacity(
|
|
173
|
+
self,
|
|
174
|
+
request: models.DescribeDedicatedClusterCosCapacityRequest,
|
|
175
|
+
opts: Dict = None,
|
|
176
|
+
) -> models.DescribeDedicatedClusterCosCapacityResponse:
|
|
177
|
+
"""
|
|
178
|
+
查询专用集群内cos的容量信息
|
|
179
|
+
"""
|
|
180
|
+
|
|
181
|
+
kwargs = {}
|
|
182
|
+
kwargs["action"] = "DescribeDedicatedClusterCosCapacity"
|
|
183
|
+
kwargs["params"] = request._serialize()
|
|
184
|
+
kwargs["resp_cls"] = models.DescribeDedicatedClusterCosCapacityResponse
|
|
185
|
+
kwargs["headers"] = request.headers
|
|
186
|
+
kwargs["opts"] = opts or {}
|
|
187
|
+
|
|
188
|
+
return await self.call_and_deserialize(**kwargs)
|
|
189
|
+
|
|
190
|
+
async def DescribeDedicatedClusterHostStatistics(
|
|
191
|
+
self,
|
|
192
|
+
request: models.DescribeDedicatedClusterHostStatisticsRequest,
|
|
193
|
+
opts: Dict = None,
|
|
194
|
+
) -> models.DescribeDedicatedClusterHostStatisticsResponse:
|
|
195
|
+
"""
|
|
196
|
+
查询专用集群内宿主机的统计信息
|
|
197
|
+
"""
|
|
198
|
+
|
|
199
|
+
kwargs = {}
|
|
200
|
+
kwargs["action"] = "DescribeDedicatedClusterHostStatistics"
|
|
201
|
+
kwargs["params"] = request._serialize()
|
|
202
|
+
kwargs["resp_cls"] = models.DescribeDedicatedClusterHostStatisticsResponse
|
|
203
|
+
kwargs["headers"] = request.headers
|
|
204
|
+
kwargs["opts"] = opts or {}
|
|
205
|
+
|
|
206
|
+
return await self.call_and_deserialize(**kwargs)
|
|
207
|
+
|
|
208
|
+
async def DescribeDedicatedClusterHosts(
|
|
209
|
+
self,
|
|
210
|
+
request: models.DescribeDedicatedClusterHostsRequest,
|
|
211
|
+
opts: Dict = None,
|
|
212
|
+
) -> models.DescribeDedicatedClusterHostsResponse:
|
|
213
|
+
"""
|
|
214
|
+
查询专用集群宿主机信息
|
|
215
|
+
"""
|
|
216
|
+
|
|
217
|
+
kwargs = {}
|
|
218
|
+
kwargs["action"] = "DescribeDedicatedClusterHosts"
|
|
219
|
+
kwargs["params"] = request._serialize()
|
|
220
|
+
kwargs["resp_cls"] = models.DescribeDedicatedClusterHostsResponse
|
|
221
|
+
kwargs["headers"] = request.headers
|
|
222
|
+
kwargs["opts"] = opts or {}
|
|
223
|
+
|
|
224
|
+
return await self.call_and_deserialize(**kwargs)
|
|
225
|
+
|
|
226
|
+
async def DescribeDedicatedClusterInstanceTypes(
|
|
227
|
+
self,
|
|
228
|
+
request: models.DescribeDedicatedClusterInstanceTypesRequest,
|
|
229
|
+
opts: Dict = None,
|
|
230
|
+
) -> models.DescribeDedicatedClusterInstanceTypesResponse:
|
|
231
|
+
"""
|
|
232
|
+
查询专用集群支持的实例规格列表
|
|
233
|
+
"""
|
|
234
|
+
|
|
235
|
+
kwargs = {}
|
|
236
|
+
kwargs["action"] = "DescribeDedicatedClusterInstanceTypes"
|
|
237
|
+
kwargs["params"] = request._serialize()
|
|
238
|
+
kwargs["resp_cls"] = models.DescribeDedicatedClusterInstanceTypesResponse
|
|
239
|
+
kwargs["headers"] = request.headers
|
|
240
|
+
kwargs["opts"] = opts or {}
|
|
241
|
+
|
|
242
|
+
return await self.call_and_deserialize(**kwargs)
|
|
243
|
+
|
|
244
|
+
async def DescribeDedicatedClusterOrders(
|
|
245
|
+
self,
|
|
246
|
+
request: models.DescribeDedicatedClusterOrdersRequest,
|
|
247
|
+
opts: Dict = None,
|
|
248
|
+
) -> models.DescribeDedicatedClusterOrdersResponse:
|
|
249
|
+
"""
|
|
250
|
+
查询专用集群订单列表
|
|
251
|
+
"""
|
|
252
|
+
|
|
253
|
+
kwargs = {}
|
|
254
|
+
kwargs["action"] = "DescribeDedicatedClusterOrders"
|
|
255
|
+
kwargs["params"] = request._serialize()
|
|
256
|
+
kwargs["resp_cls"] = models.DescribeDedicatedClusterOrdersResponse
|
|
257
|
+
kwargs["headers"] = request.headers
|
|
258
|
+
kwargs["opts"] = opts or {}
|
|
259
|
+
|
|
260
|
+
return await self.call_and_deserialize(**kwargs)
|
|
261
|
+
|
|
262
|
+
async def DescribeDedicatedClusterOverview(
|
|
263
|
+
self,
|
|
264
|
+
request: models.DescribeDedicatedClusterOverviewRequest,
|
|
265
|
+
opts: Dict = None,
|
|
266
|
+
) -> models.DescribeDedicatedClusterOverviewResponse:
|
|
267
|
+
"""
|
|
268
|
+
查询专用集群概览信息
|
|
269
|
+
"""
|
|
270
|
+
|
|
271
|
+
kwargs = {}
|
|
272
|
+
kwargs["action"] = "DescribeDedicatedClusterOverview"
|
|
273
|
+
kwargs["params"] = request._serialize()
|
|
274
|
+
kwargs["resp_cls"] = models.DescribeDedicatedClusterOverviewResponse
|
|
275
|
+
kwargs["headers"] = request.headers
|
|
276
|
+
kwargs["opts"] = opts or {}
|
|
277
|
+
|
|
278
|
+
return await self.call_and_deserialize(**kwargs)
|
|
279
|
+
|
|
280
|
+
async def DescribeDedicatedClusterTypes(
|
|
281
|
+
self,
|
|
282
|
+
request: models.DescribeDedicatedClusterTypesRequest,
|
|
283
|
+
opts: Dict = None,
|
|
284
|
+
) -> models.DescribeDedicatedClusterTypesResponse:
|
|
285
|
+
"""
|
|
286
|
+
查询专有集群配置列表
|
|
287
|
+
"""
|
|
288
|
+
|
|
289
|
+
kwargs = {}
|
|
290
|
+
kwargs["action"] = "DescribeDedicatedClusterTypes"
|
|
291
|
+
kwargs["params"] = request._serialize()
|
|
292
|
+
kwargs["resp_cls"] = models.DescribeDedicatedClusterTypesResponse
|
|
293
|
+
kwargs["headers"] = request.headers
|
|
294
|
+
kwargs["opts"] = opts or {}
|
|
295
|
+
|
|
296
|
+
return await self.call_and_deserialize(**kwargs)
|
|
297
|
+
|
|
298
|
+
async def DescribeDedicatedClusters(
|
|
299
|
+
self,
|
|
300
|
+
request: models.DescribeDedicatedClustersRequest,
|
|
301
|
+
opts: Dict = None,
|
|
302
|
+
) -> models.DescribeDedicatedClustersResponse:
|
|
303
|
+
"""
|
|
304
|
+
查询专用集群列表
|
|
305
|
+
"""
|
|
306
|
+
|
|
307
|
+
kwargs = {}
|
|
308
|
+
kwargs["action"] = "DescribeDedicatedClusters"
|
|
309
|
+
kwargs["params"] = request._serialize()
|
|
310
|
+
kwargs["resp_cls"] = models.DescribeDedicatedClustersResponse
|
|
311
|
+
kwargs["headers"] = request.headers
|
|
312
|
+
kwargs["opts"] = opts or {}
|
|
313
|
+
|
|
314
|
+
return await self.call_and_deserialize(**kwargs)
|
|
315
|
+
|
|
316
|
+
async def DescribeDedicatedSupportedZones(
|
|
317
|
+
self,
|
|
318
|
+
request: models.DescribeDedicatedSupportedZonesRequest,
|
|
319
|
+
opts: Dict = None,
|
|
320
|
+
) -> models.DescribeDedicatedSupportedZonesResponse:
|
|
321
|
+
"""
|
|
322
|
+
查询专用集群支持的可用区列表
|
|
323
|
+
"""
|
|
324
|
+
|
|
325
|
+
kwargs = {}
|
|
326
|
+
kwargs["action"] = "DescribeDedicatedSupportedZones"
|
|
327
|
+
kwargs["params"] = request._serialize()
|
|
328
|
+
kwargs["resp_cls"] = models.DescribeDedicatedSupportedZonesResponse
|
|
329
|
+
kwargs["headers"] = request.headers
|
|
330
|
+
kwargs["opts"] = opts or {}
|
|
331
|
+
|
|
332
|
+
return await self.call_and_deserialize(**kwargs)
|
|
333
|
+
|
|
334
|
+
async def DescribeSites(
|
|
335
|
+
self,
|
|
336
|
+
request: models.DescribeSitesRequest,
|
|
337
|
+
opts: Dict = None,
|
|
338
|
+
) -> models.DescribeSitesResponse:
|
|
339
|
+
"""
|
|
340
|
+
查询站点列表
|
|
341
|
+
"""
|
|
342
|
+
|
|
343
|
+
kwargs = {}
|
|
344
|
+
kwargs["action"] = "DescribeSites"
|
|
345
|
+
kwargs["params"] = request._serialize()
|
|
346
|
+
kwargs["resp_cls"] = models.DescribeSitesResponse
|
|
347
|
+
kwargs["headers"] = request.headers
|
|
348
|
+
kwargs["opts"] = opts or {}
|
|
349
|
+
|
|
350
|
+
return await self.call_and_deserialize(**kwargs)
|
|
351
|
+
|
|
352
|
+
async def DescribeSitesDetail(
|
|
353
|
+
self,
|
|
354
|
+
request: models.DescribeSitesDetailRequest,
|
|
355
|
+
opts: Dict = None,
|
|
356
|
+
) -> models.DescribeSitesDetailResponse:
|
|
357
|
+
"""
|
|
358
|
+
查询站点详情
|
|
359
|
+
"""
|
|
360
|
+
|
|
361
|
+
kwargs = {}
|
|
362
|
+
kwargs["action"] = "DescribeSitesDetail"
|
|
363
|
+
kwargs["params"] = request._serialize()
|
|
364
|
+
kwargs["resp_cls"] = models.DescribeSitesDetailResponse
|
|
365
|
+
kwargs["headers"] = request.headers
|
|
366
|
+
kwargs["opts"] = opts or {}
|
|
367
|
+
|
|
368
|
+
return await self.call_and_deserialize(**kwargs)
|
|
369
|
+
|
|
370
|
+
async def ModifyDedicatedClusterInfo(
|
|
371
|
+
self,
|
|
372
|
+
request: models.ModifyDedicatedClusterInfoRequest,
|
|
373
|
+
opts: Dict = None,
|
|
374
|
+
) -> models.ModifyDedicatedClusterInfoResponse:
|
|
375
|
+
"""
|
|
376
|
+
修改本地专用集群信息
|
|
377
|
+
"""
|
|
378
|
+
|
|
379
|
+
kwargs = {}
|
|
380
|
+
kwargs["action"] = "ModifyDedicatedClusterInfo"
|
|
381
|
+
kwargs["params"] = request._serialize()
|
|
382
|
+
kwargs["resp_cls"] = models.ModifyDedicatedClusterInfoResponse
|
|
383
|
+
kwargs["headers"] = request.headers
|
|
384
|
+
kwargs["opts"] = opts or {}
|
|
385
|
+
|
|
386
|
+
return await self.call_and_deserialize(**kwargs)
|
|
387
|
+
|
|
388
|
+
async def ModifyOrderStatus(
|
|
389
|
+
self,
|
|
390
|
+
request: models.ModifyOrderStatusRequest,
|
|
391
|
+
opts: Dict = None,
|
|
392
|
+
) -> models.ModifyOrderStatusResponse:
|
|
393
|
+
"""
|
|
394
|
+
修改大订单、小订单的状态
|
|
395
|
+
"""
|
|
396
|
+
|
|
397
|
+
kwargs = {}
|
|
398
|
+
kwargs["action"] = "ModifyOrderStatus"
|
|
399
|
+
kwargs["params"] = request._serialize()
|
|
400
|
+
kwargs["resp_cls"] = models.ModifyOrderStatusResponse
|
|
401
|
+
kwargs["headers"] = request.headers
|
|
402
|
+
kwargs["opts"] = opts or {}
|
|
403
|
+
|
|
404
|
+
return await self.call_and_deserialize(**kwargs)
|
|
405
|
+
|
|
406
|
+
async def ModifySiteDeviceInfo(
|
|
407
|
+
self,
|
|
408
|
+
request: models.ModifySiteDeviceInfoRequest,
|
|
409
|
+
opts: Dict = None,
|
|
410
|
+
) -> models.ModifySiteDeviceInfoResponse:
|
|
411
|
+
"""
|
|
412
|
+
修改机房设备信息
|
|
413
|
+
"""
|
|
414
|
+
|
|
415
|
+
kwargs = {}
|
|
416
|
+
kwargs["action"] = "ModifySiteDeviceInfo"
|
|
417
|
+
kwargs["params"] = request._serialize()
|
|
418
|
+
kwargs["resp_cls"] = models.ModifySiteDeviceInfoResponse
|
|
419
|
+
kwargs["headers"] = request.headers
|
|
420
|
+
kwargs["opts"] = opts or {}
|
|
421
|
+
|
|
422
|
+
return await self.call_and_deserialize(**kwargs)
|
|
423
|
+
|
|
424
|
+
async def ModifySiteInfo(
|
|
425
|
+
self,
|
|
426
|
+
request: models.ModifySiteInfoRequest,
|
|
427
|
+
opts: Dict = None,
|
|
428
|
+
) -> models.ModifySiteInfoResponse:
|
|
429
|
+
"""
|
|
430
|
+
修改机房信息
|
|
431
|
+
"""
|
|
432
|
+
|
|
433
|
+
kwargs = {}
|
|
434
|
+
kwargs["action"] = "ModifySiteInfo"
|
|
435
|
+
kwargs["params"] = request._serialize()
|
|
436
|
+
kwargs["resp_cls"] = models.ModifySiteInfoResponse
|
|
437
|
+
kwargs["headers"] = request.headers
|
|
438
|
+
kwargs["opts"] = opts or {}
|
|
439
|
+
|
|
440
|
+
return await self.call_and_deserialize(**kwargs)
|
|
@@ -574,59 +574,51 @@ class CreateSiteRequest(AbstractModel):
|
|
|
574
574
|
|
|
575
575
|
def __init__(self):
|
|
576
576
|
r"""
|
|
577
|
-
:param _Name:
|
|
577
|
+
:param _Name: <p>站点名称</p>
|
|
578
578
|
:type Name: str
|
|
579
|
-
:param _Country:
|
|
579
|
+
:param _Country: <p>站点所在国家</p>
|
|
580
580
|
:type Country: str
|
|
581
|
-
:param _Province:
|
|
581
|
+
:param _Province: <p>站点所在省份</p>
|
|
582
582
|
:type Province: str
|
|
583
|
-
:param _City:
|
|
583
|
+
:param _City: <p>站点所在城市</p>
|
|
584
584
|
:type City: str
|
|
585
|
-
:param _AddressLine:
|
|
585
|
+
:param _AddressLine: <p>站点所在地区的详细地址信息</p>
|
|
586
586
|
:type AddressLine: str
|
|
587
|
-
:param _Description:
|
|
587
|
+
:param _Description: <p>站点描述</p>
|
|
588
588
|
:type Description: str
|
|
589
|
-
:param _Note:
|
|
589
|
+
:param _Note: <p>注意事项</p>
|
|
590
590
|
:type Note: str
|
|
591
|
-
:param _FiberType:
|
|
591
|
+
:param _FiberType: <p>您将使用光纤类型将CDC设备连接到网络。有单模和多模两种选项。取值范围:"MM","SM"</p>
|
|
592
592
|
:type FiberType: str
|
|
593
|
-
:param _OpticalStandard:
|
|
593
|
+
:param _OpticalStandard: <p>您将CDC连接到网络时采用的光学标准。此字段取决于上行链路速度、光纤类型和到上游设备的距离。</p>
|
|
594
594
|
:type OpticalStandard: str
|
|
595
|
-
:param _PowerConnectors:
|
|
595
|
+
:param _PowerConnectors: <p>电源连接器类型</p>
|
|
596
596
|
:type PowerConnectors: str
|
|
597
|
-
:param _PowerFeedDrop:
|
|
597
|
+
:param _PowerFeedDrop: <p>从机架上方还是下方供电。取值范围:["UP","DOWN"]</p>
|
|
598
598
|
:type PowerFeedDrop: str
|
|
599
|
-
:param _MaxWeight:
|
|
599
|
+
:param _MaxWeight: <p>最大承重(KG)</p>
|
|
600
600
|
:type MaxWeight: int
|
|
601
|
-
:param _PowerDrawKva:
|
|
601
|
+
:param _PowerDrawKva: <p>功耗(KW)</p>
|
|
602
602
|
:type PowerDrawKva: int
|
|
603
|
-
:param _UplinkSpeedGbps:
|
|
603
|
+
:param _UplinkSpeedGbps: <p>网络到腾讯云Region区域的上行链路速度(Gbps)</p>
|
|
604
604
|
:type UplinkSpeedGbps: int
|
|
605
|
-
:param _UplinkCount:
|
|
605
|
+
:param _UplinkCount: <p>将CDC连接到网络时,每台CDC网络设备(每个机架 2 台设备)使用的上行链路数量。</p>
|
|
606
606
|
:type UplinkCount: int
|
|
607
|
-
:param _ConditionRequirement:
|
|
608
|
-
1、场地没有材料要求或验收标准会影响 CDC 设备配送和安装。
|
|
609
|
-
2、确定的机架位置包含:
|
|
610
|
-
温度范围为 41 到 104°F (5 到 40°C)。
|
|
611
|
-
湿度范围为 10°F (-12°C)和 8% RH (相对湿度)到 70°F(21°C)和 80% RH。
|
|
612
|
-
机架位置的气流方向为从前向后,且应具有足够的 CFM (每分钟立方英尺)。CFM 必须是 CDC 配置的 kVA 功耗值的 145.8 倍。
|
|
607
|
+
:param _ConditionRequirement: <p>是否满足下面环境条件:1、场地没有材料要求或验收标准会影响 CDC 设备配送和安装。2、确定的机架位置包含:温度范围为 41 到 104°F (5 到 40°C)。湿度范围为 10°F (-12°C)和 8% RH (相对湿度)到 70°F(21°C)和 80% RH。机架位置的气流方向为从前向后,且应具有足够的 CFM (每分钟立方英尺)。CFM 必须是 CDC 配置的 kVA 功耗值的 145.8 倍。</p>
|
|
613
608
|
:type ConditionRequirement: bool
|
|
614
|
-
:param _DimensionRequirement:
|
|
615
|
-
您的装货站台可以容纳一个机架箱(高 x 宽 x 深 = 94" x 54" x 48")。
|
|
616
|
-
您可以提供从机架(高 x 宽 x 深 = 80" x 24" x 48")交货地点到机架最终安置位置的明确通道。测量深度时,应包括站台、走廊通道、门、转弯、坡道、货梯,并将其他通道限制考虑在内。
|
|
617
|
-
在最终的 CDC安置位置,前部间隙可以为 48" 或更大,后部间隙可以为 24" 或更大。
|
|
609
|
+
:param _DimensionRequirement: <p>是否满足下面的尺寸条件:您的装货站台可以容纳一个机架箱(高 x 宽 x 深 = 94" x 54" x 48")。您可以提供从机架(高 x 宽 x 深 = 80" x 24" x 48")交货地点到机架最终安置位置的明确通道。测量深度时,应包括站台、走廊通道、门、转弯、坡道、货梯,并将其他通道限制考虑在内。在最终的 CDC安置位置,前部间隙可以为 48" 或更大,后部间隙可以为 24" 或更大。</p>
|
|
618
610
|
:type DimensionRequirement: bool
|
|
619
|
-
:param _RedundantNetworking:
|
|
611
|
+
:param _RedundantNetworking: <p>是否提供冗余的上游设备(交换机或路由器),以便两台 网络设备都能连接到网络设备。</p>
|
|
620
612
|
:type RedundantNetworking: bool
|
|
621
|
-
:param _PostalCode:
|
|
613
|
+
:param _PostalCode: <p>站点所在地区的邮编</p>
|
|
622
614
|
:type PostalCode: int
|
|
623
|
-
:param _OptionalAddressLine:
|
|
615
|
+
:param _OptionalAddressLine: <p>站点所在地区的详细地址信息(补充)</p>
|
|
624
616
|
:type OptionalAddressLine: str
|
|
625
|
-
:param _NeedHelp:
|
|
617
|
+
:param _NeedHelp: <p>是否需要腾讯云团队协助完成机架支撑工作</p>
|
|
626
618
|
:type NeedHelp: bool
|
|
627
|
-
:param _RedundantPower:
|
|
619
|
+
:param _RedundantPower: <p>是否电源冗余</p>
|
|
628
620
|
:type RedundantPower: bool
|
|
629
|
-
:param _BreakerRequirement:
|
|
621
|
+
:param _BreakerRequirement: <p>上游断路器是否具备</p>
|
|
630
622
|
:type BreakerRequirement: bool
|
|
631
623
|
"""
|
|
632
624
|
self._Name = None
|
|
@@ -655,7 +647,7 @@ class CreateSiteRequest(AbstractModel):
|
|
|
655
647
|
|
|
656
648
|
@property
|
|
657
649
|
def Name(self):
|
|
658
|
-
r"""
|
|
650
|
+
r"""<p>站点名称</p>
|
|
659
651
|
:rtype: str
|
|
660
652
|
"""
|
|
661
653
|
return self._Name
|
|
@@ -666,7 +658,7 @@ class CreateSiteRequest(AbstractModel):
|
|
|
666
658
|
|
|
667
659
|
@property
|
|
668
660
|
def Country(self):
|
|
669
|
-
r"""
|
|
661
|
+
r"""<p>站点所在国家</p>
|
|
670
662
|
:rtype: str
|
|
671
663
|
"""
|
|
672
664
|
return self._Country
|
|
@@ -677,7 +669,7 @@ class CreateSiteRequest(AbstractModel):
|
|
|
677
669
|
|
|
678
670
|
@property
|
|
679
671
|
def Province(self):
|
|
680
|
-
r"""
|
|
672
|
+
r"""<p>站点所在省份</p>
|
|
681
673
|
:rtype: str
|
|
682
674
|
"""
|
|
683
675
|
return self._Province
|
|
@@ -688,7 +680,7 @@ class CreateSiteRequest(AbstractModel):
|
|
|
688
680
|
|
|
689
681
|
@property
|
|
690
682
|
def City(self):
|
|
691
|
-
r"""
|
|
683
|
+
r"""<p>站点所在城市</p>
|
|
692
684
|
:rtype: str
|
|
693
685
|
"""
|
|
694
686
|
return self._City
|
|
@@ -699,7 +691,7 @@ class CreateSiteRequest(AbstractModel):
|
|
|
699
691
|
|
|
700
692
|
@property
|
|
701
693
|
def AddressLine(self):
|
|
702
|
-
r"""
|
|
694
|
+
r"""<p>站点所在地区的详细地址信息</p>
|
|
703
695
|
:rtype: str
|
|
704
696
|
"""
|
|
705
697
|
return self._AddressLine
|
|
@@ -710,7 +702,7 @@ class CreateSiteRequest(AbstractModel):
|
|
|
710
702
|
|
|
711
703
|
@property
|
|
712
704
|
def Description(self):
|
|
713
|
-
r"""
|
|
705
|
+
r"""<p>站点描述</p>
|
|
714
706
|
:rtype: str
|
|
715
707
|
"""
|
|
716
708
|
return self._Description
|
|
@@ -721,7 +713,7 @@ class CreateSiteRequest(AbstractModel):
|
|
|
721
713
|
|
|
722
714
|
@property
|
|
723
715
|
def Note(self):
|
|
724
|
-
r"""
|
|
716
|
+
r"""<p>注意事项</p>
|
|
725
717
|
:rtype: str
|
|
726
718
|
"""
|
|
727
719
|
return self._Note
|
|
@@ -732,7 +724,7 @@ class CreateSiteRequest(AbstractModel):
|
|
|
732
724
|
|
|
733
725
|
@property
|
|
734
726
|
def FiberType(self):
|
|
735
|
-
r"""
|
|
727
|
+
r"""<p>您将使用光纤类型将CDC设备连接到网络。有单模和多模两种选项。取值范围:"MM","SM"</p>
|
|
736
728
|
:rtype: str
|
|
737
729
|
"""
|
|
738
730
|
return self._FiberType
|
|
@@ -743,7 +735,7 @@ class CreateSiteRequest(AbstractModel):
|
|
|
743
735
|
|
|
744
736
|
@property
|
|
745
737
|
def OpticalStandard(self):
|
|
746
|
-
r"""
|
|
738
|
+
r"""<p>您将CDC连接到网络时采用的光学标准。此字段取决于上行链路速度、光纤类型和到上游设备的距离。</p>
|
|
747
739
|
:rtype: str
|
|
748
740
|
"""
|
|
749
741
|
return self._OpticalStandard
|
|
@@ -754,7 +746,7 @@ class CreateSiteRequest(AbstractModel):
|
|
|
754
746
|
|
|
755
747
|
@property
|
|
756
748
|
def PowerConnectors(self):
|
|
757
|
-
r"""
|
|
749
|
+
r"""<p>电源连接器类型</p>
|
|
758
750
|
:rtype: str
|
|
759
751
|
"""
|
|
760
752
|
return self._PowerConnectors
|
|
@@ -765,7 +757,7 @@ class CreateSiteRequest(AbstractModel):
|
|
|
765
757
|
|
|
766
758
|
@property
|
|
767
759
|
def PowerFeedDrop(self):
|
|
768
|
-
r"""
|
|
760
|
+
r"""<p>从机架上方还是下方供电。取值范围:["UP","DOWN"]</p>
|
|
769
761
|
:rtype: str
|
|
770
762
|
"""
|
|
771
763
|
return self._PowerFeedDrop
|
|
@@ -776,7 +768,7 @@ class CreateSiteRequest(AbstractModel):
|
|
|
776
768
|
|
|
777
769
|
@property
|
|
778
770
|
def MaxWeight(self):
|
|
779
|
-
r"""
|
|
771
|
+
r"""<p>最大承重(KG)</p>
|
|
780
772
|
:rtype: int
|
|
781
773
|
"""
|
|
782
774
|
return self._MaxWeight
|
|
@@ -787,7 +779,7 @@ class CreateSiteRequest(AbstractModel):
|
|
|
787
779
|
|
|
788
780
|
@property
|
|
789
781
|
def PowerDrawKva(self):
|
|
790
|
-
r"""
|
|
782
|
+
r"""<p>功耗(KW)</p>
|
|
791
783
|
:rtype: int
|
|
792
784
|
"""
|
|
793
785
|
return self._PowerDrawKva
|
|
@@ -798,7 +790,7 @@ class CreateSiteRequest(AbstractModel):
|
|
|
798
790
|
|
|
799
791
|
@property
|
|
800
792
|
def UplinkSpeedGbps(self):
|
|
801
|
-
r"""
|
|
793
|
+
r"""<p>网络到腾讯云Region区域的上行链路速度(Gbps)</p>
|
|
802
794
|
:rtype: int
|
|
803
795
|
"""
|
|
804
796
|
return self._UplinkSpeedGbps
|
|
@@ -809,7 +801,7 @@ class CreateSiteRequest(AbstractModel):
|
|
|
809
801
|
|
|
810
802
|
@property
|
|
811
803
|
def UplinkCount(self):
|
|
812
|
-
r"""
|
|
804
|
+
r"""<p>将CDC连接到网络时,每台CDC网络设备(每个机架 2 台设备)使用的上行链路数量。</p>
|
|
813
805
|
:rtype: int
|
|
814
806
|
"""
|
|
815
807
|
return self._UplinkCount
|
|
@@ -820,12 +812,7 @@ class CreateSiteRequest(AbstractModel):
|
|
|
820
812
|
|
|
821
813
|
@property
|
|
822
814
|
def ConditionRequirement(self):
|
|
823
|
-
r"""
|
|
824
|
-
1、场地没有材料要求或验收标准会影响 CDC 设备配送和安装。
|
|
825
|
-
2、确定的机架位置包含:
|
|
826
|
-
温度范围为 41 到 104°F (5 到 40°C)。
|
|
827
|
-
湿度范围为 10°F (-12°C)和 8% RH (相对湿度)到 70°F(21°C)和 80% RH。
|
|
828
|
-
机架位置的气流方向为从前向后,且应具有足够的 CFM (每分钟立方英尺)。CFM 必须是 CDC 配置的 kVA 功耗值的 145.8 倍。
|
|
815
|
+
r"""<p>是否满足下面环境条件:1、场地没有材料要求或验收标准会影响 CDC 设备配送和安装。2、确定的机架位置包含:温度范围为 41 到 104°F (5 到 40°C)。湿度范围为 10°F (-12°C)和 8% RH (相对湿度)到 70°F(21°C)和 80% RH。机架位置的气流方向为从前向后,且应具有足够的 CFM (每分钟立方英尺)。CFM 必须是 CDC 配置的 kVA 功耗值的 145.8 倍。</p>
|
|
829
816
|
:rtype: bool
|
|
830
817
|
"""
|
|
831
818
|
return self._ConditionRequirement
|
|
@@ -836,10 +823,7 @@ class CreateSiteRequest(AbstractModel):
|
|
|
836
823
|
|
|
837
824
|
@property
|
|
838
825
|
def DimensionRequirement(self):
|
|
839
|
-
r"""
|
|
840
|
-
您的装货站台可以容纳一个机架箱(高 x 宽 x 深 = 94" x 54" x 48")。
|
|
841
|
-
您可以提供从机架(高 x 宽 x 深 = 80" x 24" x 48")交货地点到机架最终安置位置的明确通道。测量深度时,应包括站台、走廊通道、门、转弯、坡道、货梯,并将其他通道限制考虑在内。
|
|
842
|
-
在最终的 CDC安置位置,前部间隙可以为 48" 或更大,后部间隙可以为 24" 或更大。
|
|
826
|
+
r"""<p>是否满足下面的尺寸条件:您的装货站台可以容纳一个机架箱(高 x 宽 x 深 = 94" x 54" x 48")。您可以提供从机架(高 x 宽 x 深 = 80" x 24" x 48")交货地点到机架最终安置位置的明确通道。测量深度时,应包括站台、走廊通道、门、转弯、坡道、货梯,并将其他通道限制考虑在内。在最终的 CDC安置位置,前部间隙可以为 48" 或更大,后部间隙可以为 24" 或更大。</p>
|
|
843
827
|
:rtype: bool
|
|
844
828
|
"""
|
|
845
829
|
return self._DimensionRequirement
|
|
@@ -850,7 +834,7 @@ class CreateSiteRequest(AbstractModel):
|
|
|
850
834
|
|
|
851
835
|
@property
|
|
852
836
|
def RedundantNetworking(self):
|
|
853
|
-
r"""
|
|
837
|
+
r"""<p>是否提供冗余的上游设备(交换机或路由器),以便两台 网络设备都能连接到网络设备。</p>
|
|
854
838
|
:rtype: bool
|
|
855
839
|
"""
|
|
856
840
|
return self._RedundantNetworking
|
|
@@ -861,7 +845,7 @@ class CreateSiteRequest(AbstractModel):
|
|
|
861
845
|
|
|
862
846
|
@property
|
|
863
847
|
def PostalCode(self):
|
|
864
|
-
r"""
|
|
848
|
+
r"""<p>站点所在地区的邮编</p>
|
|
865
849
|
:rtype: int
|
|
866
850
|
"""
|
|
867
851
|
return self._PostalCode
|
|
@@ -872,7 +856,7 @@ class CreateSiteRequest(AbstractModel):
|
|
|
872
856
|
|
|
873
857
|
@property
|
|
874
858
|
def OptionalAddressLine(self):
|
|
875
|
-
r"""
|
|
859
|
+
r"""<p>站点所在地区的详细地址信息(补充)</p>
|
|
876
860
|
:rtype: str
|
|
877
861
|
"""
|
|
878
862
|
return self._OptionalAddressLine
|
|
@@ -883,7 +867,7 @@ class CreateSiteRequest(AbstractModel):
|
|
|
883
867
|
|
|
884
868
|
@property
|
|
885
869
|
def NeedHelp(self):
|
|
886
|
-
r"""
|
|
870
|
+
r"""<p>是否需要腾讯云团队协助完成机架支撑工作</p>
|
|
887
871
|
:rtype: bool
|
|
888
872
|
"""
|
|
889
873
|
return self._NeedHelp
|
|
@@ -894,7 +878,7 @@ class CreateSiteRequest(AbstractModel):
|
|
|
894
878
|
|
|
895
879
|
@property
|
|
896
880
|
def RedundantPower(self):
|
|
897
|
-
r"""
|
|
881
|
+
r"""<p>是否电源冗余</p>
|
|
898
882
|
:rtype: bool
|
|
899
883
|
"""
|
|
900
884
|
return self._RedundantPower
|
|
@@ -905,7 +889,7 @@ class CreateSiteRequest(AbstractModel):
|
|
|
905
889
|
|
|
906
890
|
@property
|
|
907
891
|
def BreakerRequirement(self):
|
|
908
|
-
r"""
|
|
892
|
+
r"""<p>上游断路器是否具备</p>
|
|
909
893
|
:rtype: bool
|
|
910
894
|
"""
|
|
911
895
|
return self._BreakerRequirement
|
|
@@ -956,7 +940,7 @@ class CreateSiteResponse(AbstractModel):
|
|
|
956
940
|
|
|
957
941
|
def __init__(self):
|
|
958
942
|
r"""
|
|
959
|
-
:param _SiteId:
|
|
943
|
+
:param _SiteId: <p>创建Site生成的id</p>
|
|
960
944
|
:type SiteId: str
|
|
961
945
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
962
946
|
:type RequestId: str
|
|
@@ -966,7 +950,7 @@ class CreateSiteResponse(AbstractModel):
|
|
|
966
950
|
|
|
967
951
|
@property
|
|
968
952
|
def SiteId(self):
|
|
969
|
-
r"""
|
|
953
|
+
r"""<p>创建Site生成的id</p>
|
|
970
954
|
:rtype: str
|
|
971
955
|
"""
|
|
972
956
|
return self._SiteId
|
|
@@ -3452,6 +3436,8 @@ class DescribeDedicatedClusterOverviewResponse(AbstractModel):
|
|
|
3452
3436
|
:type HostStandbyCount: int
|
|
3453
3437
|
:param _HostNormalCount: 普通宿主机数量
|
|
3454
3438
|
:type HostNormalCount: int
|
|
3439
|
+
:param _HostAbnormalCount: 异常宿主机数量
|
|
3440
|
+
:type HostAbnormalCount: int
|
|
3455
3441
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
3456
3442
|
:type RequestId: str
|
|
3457
3443
|
"""
|
|
@@ -3464,6 +3450,7 @@ class DescribeDedicatedClusterOverviewResponse(AbstractModel):
|
|
|
3464
3450
|
self._HostDetailInfo = None
|
|
3465
3451
|
self._HostStandbyCount = None
|
|
3466
3452
|
self._HostNormalCount = None
|
|
3453
|
+
self._HostAbnormalCount = None
|
|
3467
3454
|
self._RequestId = None
|
|
3468
3455
|
|
|
3469
3456
|
@property
|
|
@@ -3565,6 +3552,17 @@ class DescribeDedicatedClusterOverviewResponse(AbstractModel):
|
|
|
3565
3552
|
def HostNormalCount(self, HostNormalCount):
|
|
3566
3553
|
self._HostNormalCount = HostNormalCount
|
|
3567
3554
|
|
|
3555
|
+
@property
|
|
3556
|
+
def HostAbnormalCount(self):
|
|
3557
|
+
r"""异常宿主机数量
|
|
3558
|
+
:rtype: int
|
|
3559
|
+
"""
|
|
3560
|
+
return self._HostAbnormalCount
|
|
3561
|
+
|
|
3562
|
+
@HostAbnormalCount.setter
|
|
3563
|
+
def HostAbnormalCount(self, HostAbnormalCount):
|
|
3564
|
+
self._HostAbnormalCount = HostAbnormalCount
|
|
3565
|
+
|
|
3568
3566
|
@property
|
|
3569
3567
|
def RequestId(self):
|
|
3570
3568
|
r"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
@@ -3601,6 +3599,7 @@ class DescribeDedicatedClusterOverviewResponse(AbstractModel):
|
|
|
3601
3599
|
self._HostDetailInfo.append(obj)
|
|
3602
3600
|
self._HostStandbyCount = params.get("HostStandbyCount")
|
|
3603
3601
|
self._HostNormalCount = params.get("HostNormalCount")
|
|
3602
|
+
self._HostAbnormalCount = params.get("HostAbnormalCount")
|
|
3604
3603
|
self._RequestId = params.get("RequestId")
|
|
3605
3604
|
|
|
3606
3605
|
|
|
@@ -3611,15 +3610,15 @@ class DescribeDedicatedClusterTypesRequest(AbstractModel):
|
|
|
3611
3610
|
|
|
3612
3611
|
def __init__(self):
|
|
3613
3612
|
r"""
|
|
3614
|
-
:param _Name:
|
|
3613
|
+
:param _Name: <p>模糊匹配专用集群配置名称</p>
|
|
3615
3614
|
:type Name: str
|
|
3616
|
-
:param _DedicatedClusterTypeIds:
|
|
3615
|
+
:param _DedicatedClusterTypeIds: <p>待查询的专用集群配置id列表</p>
|
|
3617
3616
|
:type DedicatedClusterTypeIds: list of str
|
|
3618
|
-
:param _Offset:
|
|
3617
|
+
:param _Offset: <p>偏移量,默认为0。关于<code>Offset</code>的更进一步介绍请参考 API <a href="https://cloud.tencent.com/document/api/213/15688">简介</a>中的相关小节。</p>
|
|
3619
3618
|
:type Offset: int
|
|
3620
|
-
:param _Limit:
|
|
3619
|
+
:param _Limit: <p>返回数量,默认为20,最大值为100。关于<code>Limit</code>的更进一步介绍请参考 API <a href="https://cloud.tencent.com/document/api/213/15688">简介</a>中的相关小节。</p>
|
|
3621
3620
|
:type Limit: int
|
|
3622
|
-
:param _IsCompute:
|
|
3621
|
+
:param _IsCompute: <p>是否只查询计算规格类型</p>
|
|
3623
3622
|
:type IsCompute: bool
|
|
3624
3623
|
"""
|
|
3625
3624
|
self._Name = None
|
|
@@ -3630,7 +3629,7 @@ class DescribeDedicatedClusterTypesRequest(AbstractModel):
|
|
|
3630
3629
|
|
|
3631
3630
|
@property
|
|
3632
3631
|
def Name(self):
|
|
3633
|
-
r"""
|
|
3632
|
+
r"""<p>模糊匹配专用集群配置名称</p>
|
|
3634
3633
|
:rtype: str
|
|
3635
3634
|
"""
|
|
3636
3635
|
return self._Name
|
|
@@ -3641,7 +3640,7 @@ class DescribeDedicatedClusterTypesRequest(AbstractModel):
|
|
|
3641
3640
|
|
|
3642
3641
|
@property
|
|
3643
3642
|
def DedicatedClusterTypeIds(self):
|
|
3644
|
-
r"""
|
|
3643
|
+
r"""<p>待查询的专用集群配置id列表</p>
|
|
3645
3644
|
:rtype: list of str
|
|
3646
3645
|
"""
|
|
3647
3646
|
return self._DedicatedClusterTypeIds
|
|
@@ -3652,7 +3651,7 @@ class DescribeDedicatedClusterTypesRequest(AbstractModel):
|
|
|
3652
3651
|
|
|
3653
3652
|
@property
|
|
3654
3653
|
def Offset(self):
|
|
3655
|
-
r"""
|
|
3654
|
+
r"""<p>偏移量,默认为0。关于<code>Offset</code>的更进一步介绍请参考 API <a href="https://cloud.tencent.com/document/api/213/15688">简介</a>中的相关小节。</p>
|
|
3656
3655
|
:rtype: int
|
|
3657
3656
|
"""
|
|
3658
3657
|
return self._Offset
|
|
@@ -3663,7 +3662,7 @@ class DescribeDedicatedClusterTypesRequest(AbstractModel):
|
|
|
3663
3662
|
|
|
3664
3663
|
@property
|
|
3665
3664
|
def Limit(self):
|
|
3666
|
-
r"""
|
|
3665
|
+
r"""<p>返回数量,默认为20,最大值为100。关于<code>Limit</code>的更进一步介绍请参考 API <a href="https://cloud.tencent.com/document/api/213/15688">简介</a>中的相关小节。</p>
|
|
3667
3666
|
:rtype: int
|
|
3668
3667
|
"""
|
|
3669
3668
|
return self._Limit
|
|
@@ -3674,7 +3673,7 @@ class DescribeDedicatedClusterTypesRequest(AbstractModel):
|
|
|
3674
3673
|
|
|
3675
3674
|
@property
|
|
3676
3675
|
def IsCompute(self):
|
|
3677
|
-
r"""
|
|
3676
|
+
r"""<p>是否只查询计算规格类型</p>
|
|
3678
3677
|
:rtype: bool
|
|
3679
3678
|
"""
|
|
3680
3679
|
return self._IsCompute
|
|
@@ -3707,9 +3706,9 @@ class DescribeDedicatedClusterTypesResponse(AbstractModel):
|
|
|
3707
3706
|
|
|
3708
3707
|
def __init__(self):
|
|
3709
3708
|
r"""
|
|
3710
|
-
:param _DedicatedClusterTypeSet:
|
|
3709
|
+
:param _DedicatedClusterTypeSet: <p>专用集群配置列表</p>
|
|
3711
3710
|
:type DedicatedClusterTypeSet: list of DedicatedClusterType
|
|
3712
|
-
:param _TotalCount:
|
|
3711
|
+
:param _TotalCount: <p>符合条件的个数</p>
|
|
3713
3712
|
:type TotalCount: int
|
|
3714
3713
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
3715
3714
|
:type RequestId: str
|
|
@@ -3720,7 +3719,7 @@ class DescribeDedicatedClusterTypesResponse(AbstractModel):
|
|
|
3720
3719
|
|
|
3721
3720
|
@property
|
|
3722
3721
|
def DedicatedClusterTypeSet(self):
|
|
3723
|
-
r"""
|
|
3722
|
+
r"""<p>专用集群配置列表</p>
|
|
3724
3723
|
:rtype: list of DedicatedClusterType
|
|
3725
3724
|
"""
|
|
3726
3725
|
return self._DedicatedClusterTypeSet
|
|
@@ -3731,7 +3730,7 @@ class DescribeDedicatedClusterTypesResponse(AbstractModel):
|
|
|
3731
3730
|
|
|
3732
3731
|
@property
|
|
3733
3732
|
def TotalCount(self):
|
|
3734
|
-
r"""
|
|
3733
|
+
r"""<p>符合条件的个数</p>
|
|
3735
3734
|
:rtype: int
|
|
3736
3735
|
"""
|
|
3737
3736
|
return self._TotalCount
|
|
@@ -5227,43 +5226,35 @@ class ModifySiteDeviceInfoRequest(AbstractModel):
|
|
|
5227
5226
|
|
|
5228
5227
|
def __init__(self):
|
|
5229
5228
|
r"""
|
|
5230
|
-
:param _SiteId:
|
|
5229
|
+
:param _SiteId: <p>机房ID</p>
|
|
5231
5230
|
:type SiteId: str
|
|
5232
|
-
:param _FiberType:
|
|
5231
|
+
:param _FiberType: <p>您将使用光纤类型将CDC设备连接到网络。有单模和多模两种选项。</p>
|
|
5233
5232
|
:type FiberType: str
|
|
5234
|
-
:param _OpticalStandard:
|
|
5233
|
+
:param _OpticalStandard: <p>您将CDC连接到网络时采用的光学标准。此字段取决于上行链路速度、光纤类型和到上游设备的距离。</p>
|
|
5235
5234
|
:type OpticalStandard: str
|
|
5236
|
-
:param _PowerConnectors:
|
|
5235
|
+
:param _PowerConnectors: <p>电源连接器类型</p>
|
|
5237
5236
|
:type PowerConnectors: str
|
|
5238
|
-
:param _PowerFeedDrop:
|
|
5237
|
+
:param _PowerFeedDrop: <p>从机架上方还是下方供电。取值范围:["UP","DOWN"]</p>
|
|
5239
5238
|
:type PowerFeedDrop: str
|
|
5240
|
-
:param _MaxWeight:
|
|
5239
|
+
:param _MaxWeight: <p>最大承重(KG)</p>
|
|
5241
5240
|
:type MaxWeight: int
|
|
5242
|
-
:param _PowerDrawKva:
|
|
5241
|
+
:param _PowerDrawKva: <p>功耗(KW)</p>
|
|
5243
5242
|
:type PowerDrawKva: int
|
|
5244
|
-
:param _UplinkSpeedGbps:
|
|
5243
|
+
:param _UplinkSpeedGbps: <p>网络到腾讯云Region区域的上行链路速度(Gbps)</p>
|
|
5245
5244
|
:type UplinkSpeedGbps: int
|
|
5246
|
-
:param _UplinkCount:
|
|
5245
|
+
:param _UplinkCount: <p>将CDC连接到网络时,每台CDC网络设备(每个机架 2 台设备)使用的上行链路数量。</p>
|
|
5247
5246
|
:type UplinkCount: int
|
|
5248
|
-
:param _ConditionRequirement:
|
|
5249
|
-
1、场地没有材料要求或验收标准会影响 CDC 设备配送和安装。
|
|
5250
|
-
2、确定的机架位置包含:
|
|
5251
|
-
温度范围为 41 到 104°F (5 到 40°C)。
|
|
5252
|
-
湿度范围为 10°F (-12°C)和 8% RH (相对湿度)到 70°F(21°C)和 80% RH。
|
|
5253
|
-
机架位置的气流方向为从前向后,且应具有足够的 CFM (每分钟立方英尺),散热功率须达到CDC运行功率值的 145.8 倍以上。
|
|
5247
|
+
:param _ConditionRequirement: <p>是否满足下面环境条件:1、场地没有材料要求或验收标准会影响 CDC 设备配送和安装。2、确定的机架位置包含:温度范围为 41 到 104°F (5 到 40°C)。湿度范围为 10°F (-12°C)和 8% RH (相对湿度)到 70°F(21°C)和 80% RH。机架位置的气流方向为从前向后,且应具有足够的 CFM (每分钟立方英尺),散热功率须达到CDC运行功率值的 145.8 倍以上。</p>
|
|
5254
5248
|
:type ConditionRequirement: bool
|
|
5255
|
-
:param _DimensionRequirement:
|
|
5256
|
-
您的装货站台可以容纳一个机架箱(高 x 宽 x 深 = 94" x 54" x 48")。
|
|
5257
|
-
您可以提供从机架(高 x 宽 x 深 = 80" x 24" x 48")交货地点到机架最终安置位置的明确通道。测量深度时,应包括站台、走廊通道、门、转弯、坡道、货梯,并将其他通道限制考虑在内。
|
|
5258
|
-
在最终的 CDC安置位置,前部间隙可以为 48" 或更大,后部间隙可以为 24" 或更大。
|
|
5249
|
+
:param _DimensionRequirement: <p>是否满足下面的尺寸条件:您的装货站台可以容纳一个机架箱(高 x 宽 x 深 = 94" x 54" x 48")。您可以提供从机架(高 x 宽 x 深 = 80" x 24" x 48")交货地点到机架最终安置位置的明确通道。测量深度时,应包括站台、走廊通道、门、转弯、坡道、货梯,并将其他通道限制考虑在内。在最终的 CDC安置位置,前部间隙可以为 48" 或更大,后部间隙可以为 24" 或更大。</p>
|
|
5259
5250
|
:type DimensionRequirement: bool
|
|
5260
|
-
:param _RedundantNetworking:
|
|
5251
|
+
:param _RedundantNetworking: <p>是否提供冗余的上游设备(交换机或路由器),以便实现网络出口的高可用。</p>
|
|
5261
5252
|
:type RedundantNetworking: bool
|
|
5262
|
-
:param _NeedHelp:
|
|
5253
|
+
:param _NeedHelp: <p>是否需要腾讯云团队协助完成机架支撑工作</p>
|
|
5263
5254
|
:type NeedHelp: bool
|
|
5264
|
-
:param _RedundantPower:
|
|
5255
|
+
:param _RedundantPower: <p>是否电源冗余</p>
|
|
5265
5256
|
:type RedundantPower: bool
|
|
5266
|
-
:param _BreakerRequirement:
|
|
5257
|
+
:param _BreakerRequirement: <p>上游断路器是否具备</p>
|
|
5267
5258
|
:type BreakerRequirement: bool
|
|
5268
5259
|
"""
|
|
5269
5260
|
self._SiteId = None
|
|
@@ -5284,7 +5275,7 @@ class ModifySiteDeviceInfoRequest(AbstractModel):
|
|
|
5284
5275
|
|
|
5285
5276
|
@property
|
|
5286
5277
|
def SiteId(self):
|
|
5287
|
-
r"""
|
|
5278
|
+
r"""<p>机房ID</p>
|
|
5288
5279
|
:rtype: str
|
|
5289
5280
|
"""
|
|
5290
5281
|
return self._SiteId
|
|
@@ -5295,7 +5286,7 @@ class ModifySiteDeviceInfoRequest(AbstractModel):
|
|
|
5295
5286
|
|
|
5296
5287
|
@property
|
|
5297
5288
|
def FiberType(self):
|
|
5298
|
-
r"""
|
|
5289
|
+
r"""<p>您将使用光纤类型将CDC设备连接到网络。有单模和多模两种选项。</p>
|
|
5299
5290
|
:rtype: str
|
|
5300
5291
|
"""
|
|
5301
5292
|
return self._FiberType
|
|
@@ -5306,7 +5297,7 @@ class ModifySiteDeviceInfoRequest(AbstractModel):
|
|
|
5306
5297
|
|
|
5307
5298
|
@property
|
|
5308
5299
|
def OpticalStandard(self):
|
|
5309
|
-
r"""
|
|
5300
|
+
r"""<p>您将CDC连接到网络时采用的光学标准。此字段取决于上行链路速度、光纤类型和到上游设备的距离。</p>
|
|
5310
5301
|
:rtype: str
|
|
5311
5302
|
"""
|
|
5312
5303
|
return self._OpticalStandard
|
|
@@ -5317,7 +5308,7 @@ class ModifySiteDeviceInfoRequest(AbstractModel):
|
|
|
5317
5308
|
|
|
5318
5309
|
@property
|
|
5319
5310
|
def PowerConnectors(self):
|
|
5320
|
-
r"""
|
|
5311
|
+
r"""<p>电源连接器类型</p>
|
|
5321
5312
|
:rtype: str
|
|
5322
5313
|
"""
|
|
5323
5314
|
return self._PowerConnectors
|
|
@@ -5328,7 +5319,7 @@ class ModifySiteDeviceInfoRequest(AbstractModel):
|
|
|
5328
5319
|
|
|
5329
5320
|
@property
|
|
5330
5321
|
def PowerFeedDrop(self):
|
|
5331
|
-
r"""
|
|
5322
|
+
r"""<p>从机架上方还是下方供电。取值范围:["UP","DOWN"]</p>
|
|
5332
5323
|
:rtype: str
|
|
5333
5324
|
"""
|
|
5334
5325
|
return self._PowerFeedDrop
|
|
@@ -5339,7 +5330,7 @@ class ModifySiteDeviceInfoRequest(AbstractModel):
|
|
|
5339
5330
|
|
|
5340
5331
|
@property
|
|
5341
5332
|
def MaxWeight(self):
|
|
5342
|
-
r"""
|
|
5333
|
+
r"""<p>最大承重(KG)</p>
|
|
5343
5334
|
:rtype: int
|
|
5344
5335
|
"""
|
|
5345
5336
|
return self._MaxWeight
|
|
@@ -5350,7 +5341,7 @@ class ModifySiteDeviceInfoRequest(AbstractModel):
|
|
|
5350
5341
|
|
|
5351
5342
|
@property
|
|
5352
5343
|
def PowerDrawKva(self):
|
|
5353
|
-
r"""
|
|
5344
|
+
r"""<p>功耗(KW)</p>
|
|
5354
5345
|
:rtype: int
|
|
5355
5346
|
"""
|
|
5356
5347
|
return self._PowerDrawKva
|
|
@@ -5361,7 +5352,7 @@ class ModifySiteDeviceInfoRequest(AbstractModel):
|
|
|
5361
5352
|
|
|
5362
5353
|
@property
|
|
5363
5354
|
def UplinkSpeedGbps(self):
|
|
5364
|
-
r"""
|
|
5355
|
+
r"""<p>网络到腾讯云Region区域的上行链路速度(Gbps)</p>
|
|
5365
5356
|
:rtype: int
|
|
5366
5357
|
"""
|
|
5367
5358
|
return self._UplinkSpeedGbps
|
|
@@ -5372,7 +5363,7 @@ class ModifySiteDeviceInfoRequest(AbstractModel):
|
|
|
5372
5363
|
|
|
5373
5364
|
@property
|
|
5374
5365
|
def UplinkCount(self):
|
|
5375
|
-
r"""
|
|
5366
|
+
r"""<p>将CDC连接到网络时,每台CDC网络设备(每个机架 2 台设备)使用的上行链路数量。</p>
|
|
5376
5367
|
:rtype: int
|
|
5377
5368
|
"""
|
|
5378
5369
|
return self._UplinkCount
|
|
@@ -5383,12 +5374,7 @@ class ModifySiteDeviceInfoRequest(AbstractModel):
|
|
|
5383
5374
|
|
|
5384
5375
|
@property
|
|
5385
5376
|
def ConditionRequirement(self):
|
|
5386
|
-
r"""
|
|
5387
|
-
1、场地没有材料要求或验收标准会影响 CDC 设备配送和安装。
|
|
5388
|
-
2、确定的机架位置包含:
|
|
5389
|
-
温度范围为 41 到 104°F (5 到 40°C)。
|
|
5390
|
-
湿度范围为 10°F (-12°C)和 8% RH (相对湿度)到 70°F(21°C)和 80% RH。
|
|
5391
|
-
机架位置的气流方向为从前向后,且应具有足够的 CFM (每分钟立方英尺),散热功率须达到CDC运行功率值的 145.8 倍以上。
|
|
5377
|
+
r"""<p>是否满足下面环境条件:1、场地没有材料要求或验收标准会影响 CDC 设备配送和安装。2、确定的机架位置包含:温度范围为 41 到 104°F (5 到 40°C)。湿度范围为 10°F (-12°C)和 8% RH (相对湿度)到 70°F(21°C)和 80% RH。机架位置的气流方向为从前向后,且应具有足够的 CFM (每分钟立方英尺),散热功率须达到CDC运行功率值的 145.8 倍以上。</p>
|
|
5392
5378
|
:rtype: bool
|
|
5393
5379
|
"""
|
|
5394
5380
|
return self._ConditionRequirement
|
|
@@ -5399,10 +5385,7 @@ class ModifySiteDeviceInfoRequest(AbstractModel):
|
|
|
5399
5385
|
|
|
5400
5386
|
@property
|
|
5401
5387
|
def DimensionRequirement(self):
|
|
5402
|
-
r"""
|
|
5403
|
-
您的装货站台可以容纳一个机架箱(高 x 宽 x 深 = 94" x 54" x 48")。
|
|
5404
|
-
您可以提供从机架(高 x 宽 x 深 = 80" x 24" x 48")交货地点到机架最终安置位置的明确通道。测量深度时,应包括站台、走廊通道、门、转弯、坡道、货梯,并将其他通道限制考虑在内。
|
|
5405
|
-
在最终的 CDC安置位置,前部间隙可以为 48" 或更大,后部间隙可以为 24" 或更大。
|
|
5388
|
+
r"""<p>是否满足下面的尺寸条件:您的装货站台可以容纳一个机架箱(高 x 宽 x 深 = 94" x 54" x 48")。您可以提供从机架(高 x 宽 x 深 = 80" x 24" x 48")交货地点到机架最终安置位置的明确通道。测量深度时,应包括站台、走廊通道、门、转弯、坡道、货梯,并将其他通道限制考虑在内。在最终的 CDC安置位置,前部间隙可以为 48" 或更大,后部间隙可以为 24" 或更大。</p>
|
|
5406
5389
|
:rtype: bool
|
|
5407
5390
|
"""
|
|
5408
5391
|
return self._DimensionRequirement
|
|
@@ -5413,7 +5396,7 @@ class ModifySiteDeviceInfoRequest(AbstractModel):
|
|
|
5413
5396
|
|
|
5414
5397
|
@property
|
|
5415
5398
|
def RedundantNetworking(self):
|
|
5416
|
-
r"""
|
|
5399
|
+
r"""<p>是否提供冗余的上游设备(交换机或路由器),以便实现网络出口的高可用。</p>
|
|
5417
5400
|
:rtype: bool
|
|
5418
5401
|
"""
|
|
5419
5402
|
return self._RedundantNetworking
|
|
@@ -5424,7 +5407,7 @@ class ModifySiteDeviceInfoRequest(AbstractModel):
|
|
|
5424
5407
|
|
|
5425
5408
|
@property
|
|
5426
5409
|
def NeedHelp(self):
|
|
5427
|
-
r"""
|
|
5410
|
+
r"""<p>是否需要腾讯云团队协助完成机架支撑工作</p>
|
|
5428
5411
|
:rtype: bool
|
|
5429
5412
|
"""
|
|
5430
5413
|
return self._NeedHelp
|
|
@@ -5435,7 +5418,7 @@ class ModifySiteDeviceInfoRequest(AbstractModel):
|
|
|
5435
5418
|
|
|
5436
5419
|
@property
|
|
5437
5420
|
def RedundantPower(self):
|
|
5438
|
-
r"""
|
|
5421
|
+
r"""<p>是否电源冗余</p>
|
|
5439
5422
|
:rtype: bool
|
|
5440
5423
|
"""
|
|
5441
5424
|
return self._RedundantPower
|
|
@@ -5446,7 +5429,7 @@ class ModifySiteDeviceInfoRequest(AbstractModel):
|
|
|
5446
5429
|
|
|
5447
5430
|
@property
|
|
5448
5431
|
def BreakerRequirement(self):
|
|
5449
|
-
r"""
|
|
5432
|
+
r"""<p>上游断路器是否具备</p>
|
|
5450
5433
|
:rtype: bool
|
|
5451
5434
|
"""
|
|
5452
5435
|
return self._BreakerRequirement
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: tencentcloud-sdk-python-cdc
|
|
3
|
-
Version: 3.
|
|
3
|
+
Version: 3.1.23
|
|
4
4
|
Summary: Tencent Cloud Cdc SDK for Python
|
|
5
5
|
Home-page: https://github.com/TencentCloud/tencentcloud-sdk-python
|
|
6
6
|
Author: Tencent Cloud
|
|
@@ -15,7 +15,7 @@ Classifier: Programming Language :: Python :: 2.7
|
|
|
15
15
|
Classifier: Programming Language :: Python :: 3
|
|
16
16
|
Classifier: Programming Language :: Python :: 3.6
|
|
17
17
|
Classifier: Programming Language :: Python :: 3.7
|
|
18
|
-
Requires-Dist: tencentcloud-sdk-python-common
|
|
18
|
+
Requires-Dist: tencentcloud-sdk-python-common <4.0.0,>=3.1.23
|
|
19
19
|
|
|
20
20
|
============================
|
|
21
21
|
Tencent Cloud SDK for Python
|
|
@@ -44,5 +44,3 @@ or download source code from github and install:
|
|
|
44
44
|
$ cd tencentcloud-sdk-python
|
|
45
45
|
$ python package.py --components common cdc
|
|
46
46
|
|
|
47
|
-
|
|
48
|
-
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
tencentcloud/__init__.py,sha256=4uh7TLp5uJXpi11UZjLE3kX8GR8HpLbUhRpWFRBThBs,629
|
|
2
|
+
tencentcloud/cdc/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
3
|
+
tencentcloud/cdc/v20201214/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
4
|
+
tencentcloud/cdc/v20201214/cdc_client.py,sha256=b2LCxuYdEg06m8XKRMqkQ14ZsE4AtwfdeyN5NV0sdnE,22438
|
|
5
|
+
tencentcloud/cdc/v20201214/cdc_client_async.py,sha256=2gJlijaw69xBTP-bAek9qHXjunr5pSr95Zl3AMu8_mY,15279
|
|
6
|
+
tencentcloud/cdc/v20201214/errorcodes.py,sha256=t_YTKvFDjIm_j7I11SPJfQ8o9akZE4hpKbLC5Gj1cr8,3613
|
|
7
|
+
tencentcloud/cdc/v20201214/models.py,sha256=8QiYBdZVS-bx6M240HpKafZMVcwa3IbUsjwqMz-NT88,203417
|
|
8
|
+
tencentcloud_sdk_python_cdc-3.1.23.dist-info/METADATA,sha256=CKJEColKZ8gMuVsDqkIryOB4x6XMGKnd8CivLawZwCw,1495
|
|
9
|
+
tencentcloud_sdk_python_cdc-3.1.23.dist-info/WHEEL,sha256=Ll72iyqtt6Rbxp-Q7FSafYA1LeRv98X15xcZWRsFEmY,109
|
|
10
|
+
tencentcloud_sdk_python_cdc-3.1.23.dist-info/top_level.txt,sha256=g-8OyzoqI6O6LiS85zkeNzhB-osEnRIPZMdyRd_0eL0,13
|
|
11
|
+
tencentcloud_sdk_python_cdc-3.1.23.dist-info/RECORD,,
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
tencentcloud/__init__.py,sha256=r84PYsG-hFbeEH3ch-Sw2bJmqWlws-vogRx7ePuiG9c,631
|
|
2
|
-
tencentcloud/cdc/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
3
|
-
tencentcloud/cdc/v20201214/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
4
|
-
tencentcloud/cdc/v20201214/cdc_client.py,sha256=b2LCxuYdEg06m8XKRMqkQ14ZsE4AtwfdeyN5NV0sdnE,22438
|
|
5
|
-
tencentcloud/cdc/v20201214/errorcodes.py,sha256=t_YTKvFDjIm_j7I11SPJfQ8o9akZE4hpKbLC5Gj1cr8,3613
|
|
6
|
-
tencentcloud/cdc/v20201214/models.py,sha256=R9bIpdfw3I4LuRajFkm56VyC-StHSJ8Bc15lLo6G2hI,202230
|
|
7
|
-
tencentcloud_sdk_python_cdc-3.0.1459.dist-info/METADATA,sha256=Uhn9Bzu5-K_4x8zhexxIshuTZ1rFUiAiaiCPXT9n-Bs,1503
|
|
8
|
-
tencentcloud_sdk_python_cdc-3.0.1459.dist-info/WHEEL,sha256=z9j0xAa_JmUKMpmz72K0ZGALSM_n-wQVmGbleXx2VHg,110
|
|
9
|
-
tencentcloud_sdk_python_cdc-3.0.1459.dist-info/top_level.txt,sha256=g-8OyzoqI6O6LiS85zkeNzhB-osEnRIPZMdyRd_0eL0,13
|
|
10
|
-
tencentcloud_sdk_python_cdc-3.0.1459.dist-info/RECORD,,
|
|
File without changes
|