tencentcloud-sdk-python-ga2 3.1.130__tar.gz → 3.1.132__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 (17) hide show
  1. {tencentcloud_sdk_python_ga2-3.1.130 → tencentcloud_sdk_python_ga2-3.1.132}/PKG-INFO +2 -2
  2. {tencentcloud_sdk_python_ga2-3.1.130 → tencentcloud_sdk_python_ga2-3.1.132}/setup.py +1 -1
  3. {tencentcloud_sdk_python_ga2-3.1.130 → tencentcloud_sdk_python_ga2-3.1.132}/tencentcloud/__init__.py +1 -1
  4. {tencentcloud_sdk_python_ga2-3.1.130 → tencentcloud_sdk_python_ga2-3.1.132}/tencentcloud/ga2/v20250115/models.py +12 -12
  5. {tencentcloud_sdk_python_ga2-3.1.130 → tencentcloud_sdk_python_ga2-3.1.132}/tencentcloud_sdk_python_ga2.egg-info/PKG-INFO +2 -2
  6. tencentcloud_sdk_python_ga2-3.1.132/tencentcloud_sdk_python_ga2.egg-info/requires.txt +1 -0
  7. tencentcloud_sdk_python_ga2-3.1.130/tencentcloud_sdk_python_ga2.egg-info/requires.txt +0 -1
  8. {tencentcloud_sdk_python_ga2-3.1.130 → tencentcloud_sdk_python_ga2-3.1.132}/README.rst +0 -0
  9. {tencentcloud_sdk_python_ga2-3.1.130 → tencentcloud_sdk_python_ga2-3.1.132}/setup.cfg +0 -0
  10. {tencentcloud_sdk_python_ga2-3.1.130 → tencentcloud_sdk_python_ga2-3.1.132}/tencentcloud/ga2/__init__.py +0 -0
  11. {tencentcloud_sdk_python_ga2-3.1.130 → tencentcloud_sdk_python_ga2-3.1.132}/tencentcloud/ga2/v20250115/__init__.py +0 -0
  12. {tencentcloud_sdk_python_ga2-3.1.130 → tencentcloud_sdk_python_ga2-3.1.132}/tencentcloud/ga2/v20250115/errorcodes.py +0 -0
  13. {tencentcloud_sdk_python_ga2-3.1.130 → tencentcloud_sdk_python_ga2-3.1.132}/tencentcloud/ga2/v20250115/ga2_client.py +0 -0
  14. {tencentcloud_sdk_python_ga2-3.1.130 → tencentcloud_sdk_python_ga2-3.1.132}/tencentcloud/ga2/v20250115/ga2_client_async.py +0 -0
  15. {tencentcloud_sdk_python_ga2-3.1.130 → tencentcloud_sdk_python_ga2-3.1.132}/tencentcloud_sdk_python_ga2.egg-info/SOURCES.txt +0 -0
  16. {tencentcloud_sdk_python_ga2-3.1.130 → tencentcloud_sdk_python_ga2-3.1.132}/tencentcloud_sdk_python_ga2.egg-info/dependency_links.txt +0 -0
  17. {tencentcloud_sdk_python_ga2-3.1.130 → tencentcloud_sdk_python_ga2-3.1.132}/tencentcloud_sdk_python_ga2.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: tencentcloud-sdk-python-ga2
3
- Version: 3.1.130
3
+ Version: 3.1.132
4
4
  Summary: Tencent Cloud Ga2 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<4.0.0,>=3.1.130
18
+ Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.132
19
19
 
20
20
  ============================
21
21
  Tencent Cloud SDK for Python
@@ -8,7 +8,7 @@ ROOT = os.path.dirname(__file__)
8
8
 
9
9
  setup(
10
10
  name='tencentcloud-sdk-python-ga2',
11
- install_requires=["tencentcloud-sdk-python-common>=3.1.130,<4.0.0"],
11
+ install_requires=["tencentcloud-sdk-python-common>=3.1.132,<4.0.0"],
12
12
 
13
13
  version=tencentcloud.__version__,
14
14
  description='Tencent Cloud Ga2 SDK for Python',
@@ -14,4 +14,4 @@
14
14
  # limitations under the License.
15
15
 
16
16
 
17
- __version__ = '3.1.130'
17
+ __version__ = '3.1.132'
@@ -284,9 +284,9 @@ class CreateAccelerateAreasRequest(AbstractModel):
284
284
 
285
285
  def __init__(self):
286
286
  r"""
287
- :param _GlobalAcceleratorId: 全球加速实例ID。
287
+ :param _GlobalAcceleratorId: <p>全球加速实例ID。</p>
288
288
  :type GlobalAcceleratorId: str
289
- :param _AcceleratorAreas: 加速地域信息。
289
+ :param _AcceleratorAreas: <p>加速地域信息。一次最多创建10组加速地域。</p>
290
290
  :type AcceleratorAreas: list of AcceleratorAreas
291
291
  """
292
292
  self._GlobalAcceleratorId = None
@@ -294,7 +294,7 @@ class CreateAccelerateAreasRequest(AbstractModel):
294
294
 
295
295
  @property
296
296
  def GlobalAcceleratorId(self):
297
- r"""全球加速实例ID。
297
+ r"""<p>全球加速实例ID。</p>
298
298
  :rtype: str
299
299
  """
300
300
  return self._GlobalAcceleratorId
@@ -305,7 +305,7 @@ class CreateAccelerateAreasRequest(AbstractModel):
305
305
 
306
306
  @property
307
307
  def AcceleratorAreas(self):
308
- r"""加速地域信息。
308
+ r"""<p>加速地域信息。一次最多创建10组加速地域。</p>
309
309
  :rtype: list of AcceleratorAreas
310
310
  """
311
311
  return self._AcceleratorAreas
@@ -340,7 +340,7 @@ class CreateAccelerateAreasResponse(AbstractModel):
340
340
 
341
341
  def __init__(self):
342
342
  r"""
343
- :param _TaskId: 异步任务ID。
343
+ :param _TaskId: <p>异步任务ID。</p>
344
344
  :type TaskId: str
345
345
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
346
346
  :type RequestId: str
@@ -350,7 +350,7 @@ class CreateAccelerateAreasResponse(AbstractModel):
350
350
 
351
351
  @property
352
352
  def TaskId(self):
353
- r"""异步任务ID。
353
+ r"""<p>异步任务ID。</p>
354
354
  :rtype: str
355
355
  """
356
356
  return self._TaskId
@@ -5096,9 +5096,9 @@ class ModifyAccelerateAreasRequest(AbstractModel):
5096
5096
 
5097
5097
  def __init__(self):
5098
5098
  r"""
5099
- :param _GlobalAcceleratorId: 全球加速实例ID。
5099
+ :param _GlobalAcceleratorId: <p>全球加速实例ID。</p>
5100
5100
  :type GlobalAcceleratorId: str
5101
- :param _AcceleratorAreas: 加速地域信息。
5101
+ :param _AcceleratorAreas: <p>加速地域信息。</p><p>入参限制:数组长度不能超过10。</p>
5102
5102
  :type AcceleratorAreas: list of AcceleratorAreas
5103
5103
  """
5104
5104
  self._GlobalAcceleratorId = None
@@ -5106,7 +5106,7 @@ class ModifyAccelerateAreasRequest(AbstractModel):
5106
5106
 
5107
5107
  @property
5108
5108
  def GlobalAcceleratorId(self):
5109
- r"""全球加速实例ID。
5109
+ r"""<p>全球加速实例ID。</p>
5110
5110
  :rtype: str
5111
5111
  """
5112
5112
  return self._GlobalAcceleratorId
@@ -5117,7 +5117,7 @@ class ModifyAccelerateAreasRequest(AbstractModel):
5117
5117
 
5118
5118
  @property
5119
5119
  def AcceleratorAreas(self):
5120
- r"""加速地域信息。
5120
+ r"""<p>加速地域信息。</p><p>入参限制:数组长度不能超过10。</p>
5121
5121
  :rtype: list of AcceleratorAreas
5122
5122
  """
5123
5123
  return self._AcceleratorAreas
@@ -5152,7 +5152,7 @@ class ModifyAccelerateAreasResponse(AbstractModel):
5152
5152
 
5153
5153
  def __init__(self):
5154
5154
  r"""
5155
- :param _TaskId: 异步任务ID。
5155
+ :param _TaskId: <p>异步任务ID。</p>
5156
5156
  :type TaskId: str
5157
5157
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
5158
5158
  :type RequestId: str
@@ -5162,7 +5162,7 @@ class ModifyAccelerateAreasResponse(AbstractModel):
5162
5162
 
5163
5163
  @property
5164
5164
  def TaskId(self):
5165
- r"""异步任务ID。
5165
+ r"""<p>异步任务ID。</p>
5166
5166
  :rtype: str
5167
5167
  """
5168
5168
  return self._TaskId
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: tencentcloud-sdk-python-ga2
3
- Version: 3.1.130
3
+ Version: 3.1.132
4
4
  Summary: Tencent Cloud Ga2 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<4.0.0,>=3.1.130
18
+ Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.132
19
19
 
20
20
  ============================
21
21
  Tencent Cloud SDK for Python
@@ -0,0 +1 @@
1
+ tencentcloud-sdk-python-common<4.0.0,>=3.1.132
@@ -1 +0,0 @@
1
- tencentcloud-sdk-python-common<4.0.0,>=3.1.130